   @font-face {
        font-family: 'Melindya';
        src: url('../fonts/Melindya-Regular.otf') format('opentype');
    }

    .font-Melindya {
      font-family: 'Melindya', sans-serif !important;
    }

    /* ========== GLOBAL RESET / EXTRAS ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
      overflow-x: hidden;
      background-color: #fff;
    }

    /* NAV */
    nav.navbar {
      background-color: #ffcc00 !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .nav-link {
      color: black !important;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.4px;
      transition: 0.3s;
    }

    .nav-link:hover {
      color: #d80f0b !important;
      text-decoration: underline;
    }

    .nav-link.active {
      color: #d80f0b !important;
    }

    .navbar-toggler {
      border: 1px solid black;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* NAV END */

    /* Hero Section (top banner) */
    .hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-banner {
      width: 100%;
      height: auto;
      min-height: 300px;
      object-fit: cover;
      display: block;
      margin-bottom:50px;
    }

    .hero-bag {
      position: absolute;
      top: -100px;
      right: -100px;
      height: auto;
      animation: floatBag 3s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes floatBag {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-25px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    @media (max-width: 992px) {
      .hero-bag {
        width: 35%;
        top: -30px;
        right: -30px;
      }
    }

    @media (max-width: 768px) {
    .nav-i-icons{
          flex-direction: row-reverse;
      }
      .hero-banner {
        min-height: 140px;
      }

      .hero-bag {
        width: 45%;
        top: -20px;
        right: -20px;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      .hero-banner {
        min-height: 140px;
      }

      .hero-bag {
        width: 50%;
        top: -15px;
        right: -15px;
        max-width: 200px;
      }
    }

    /* ========== CAT SECTION – FULLY FIXED FOR MOBILE & DESKTOP ========== */
    /* 
       FIXES:
       1. Cat image no longer uses absolute positioning that breaks on mobile.
       2. Proper flex/ grid alignment: cat on top-right area, text on left.
       3. Background rectangle shape fully visible (background-size: contain) with no cropping.
       4. Text size adjusted for all devices, mobile text is readable and centered when needed.
       5. Section properly centered with container-like margins.
       6. No overflow issues, cat stays within the shape.
    */
    .cat-section {
      /* Background shape: full rectangle image without cropping */
      background: url('/assets/images/frontend/rectangle_95.png') no-repeat center;
      background-size: contain;
      min-height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      margin: 80px auto;
      max-width: 1400px;
      width: calc(100% - 40px);
      border-radius: 0px;
      position: relative;
    }

    /* inner container */
    .cat-section .container-custom {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* LEFT TEXT AREA - bigger, bolder */
    .hero-title {
      font-size: 82px;
      color: #000;
      font-family: 'Segoe UI', 'Poppins', sans-serif;
      margin-bottom: 8px;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    .hero-subtitle {
      font-size: 48px;
      color: #d80f0b;
      margin-bottom: 25px;
      line-height: 1.2;
      letter-spacing: -0.3px;
    }

    .hero-desc {
      max-width: 520px;
      font-size: 17px;
      line-height: 1.55;
      color: #1f1f1f;
      font-weight: 450;
    }

    /* Right Image Wrapper - using flex to naturally place cat on top-right */
    .hero-img-box {
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      position: relative;
      min-height: 380px;
    }

    /* CAT IMAGE – no absolute positioning! Uses relative + margin for proper top-right placement */
    .cat-img {
      height: auto;
      display: block;
      filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.12));
      bottom: -25%;
      left: -25%;
      position: absolute;
      z-index: 3;
    }




    /* ========== RESPONSIVE STYLES – MOBILE FIRST APPROACH ========== */
    @media (max-width: 1200px) {

      /* HERO MAIN SECTION RESP */
      .hero-bag{
        width: 55% !important;
      }
      /* HERO MAIN SECTION RESP END */

      .hero-title {
        font-size: 40px;
      }

      .hero-subtitle {
        font-size: 22px;
      }

      .hero-desc {
        font-size: 16px;
        max-width: 480px;
        /* text-align: center; */
      }

      /* .cat-img {
        max-width: 460px;
        margin-top: -30px;
      } */
    }

    @media (max-width: 992px) {
      .cat-section {
        padding: 2.5rem 1.8rem;
        margin: 60px auto;
        width: calc(100% - 30px);
      }

      .hero-title {
        font-size: 54px;
      }

      .hero-subtitle {
        font-size: 36px;
        margin-bottom: 20px;
      }

      .hero-desc {
        font-size: 15px;
        max-width: 100%;
      }

      .hero-img-box {
        justify-content: flex-end;
        min-height: 320px;
      }

      .cat-img {
        max-width: 420px;
        margin-top: -20px;
        margin-right: -10px;
      }
    }

    /* TABLET / SMALL LAPTOP */
    @media (max-width: 768px) {
      .cat-section {
        margin: 50px auto;
        padding: 2rem 1.5rem;
        width: calc(100% - 24px);
      }

      .hero-title {
        font-size: 46px;
        text-align: left;
      }

      .hero-subtitle {
        font-size: 32px;
        text-align: left;
      }

      .hero-desc {
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
      }

      .hero-text {
        padding-right: 10px;
      }

      .hero-img-box {
        justify-content: flex-end;
        min-height: 280px;
      }

      .cat-img {
        max-width: 380px;
        margin-top: -10px;
        margin-right: -5px;
      }
    }

    /* MOBILE (max-width: 576px) — critical fixes for cat position & text centering */
    @media (max-width: 576px) {
      .cat-section {
        padding: 1.8rem 1.2rem;
        margin: 35px auto;
        width: calc(100% - 20px);
        background-size: contain;
        background-position: top center;
      }

      .cat-section .container-custom {
          max-width: 1300px;
          width: 100%;
          margin: 10px;
          position: relative;
          z-index: 2;
      }

      /* On mobile, we want content stacked: text first then image */
      .hero-inner {
        flex-direction: column;
      }

      .hero-text {
        padding-left: 0;
        margin-bottom: 20px;
      }

      .hero-title {
          font-size: 30px;
          padding-top: 25px;
      }

      .hero-subtitle {
          font-size: 20px;
          margin-bottom: 5px;
      }

      .hero-desc {
        font-size: 12px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 5px;
      }

      /* Image wrapper: center cat on mobile, but maintain top positioning nicely */
      .hero-img-box {
        justify-content: center;
        align-items: center;
        min-height: auto;
        margin-top: 5px;
      }

      .cat-img {
          position: absolute;
          /* right: -35px; */
          bottom: 120px;
          left: 45%;
          /* bottom: 61% !important; */
      }
    }

    /* Extra small devices (below 400px) */
    @media (max-width: 450px) {
      .cat-section {
          background: url('/assets/images/frontend/rectangle_95_mob.png') no-repeat center;
          background-size: contain;
          padding: 1rem;
          margin: 10px auto;
      }

      .hero-text{
        width: auto !important;
      }

      .hero-text {
        padding-left: 0;
        margin-bottom: 20px;
      }

      .hero-title {
          font-size: 30px;
          padding-top: 25px;
      }

      .hero-subtitle {
          font-size: 20px;
          margin-bottom: 5px;
      }
      
      .cat-img {
          position: absolute;
          max-width: 125%;
          bottom: 110px;
          left: 15%;
      }
      .search-panel{
        left: 0;
        width: 100% !important;
      }
    }
    
    @media (max-width: 450px) {
         .search-panel{
            left: 0;
            width: 100%;
       }
    }

    

    /* Ensure background image never gets cut on weird resolutions */
    @media (min-width: 1400px) {
      .cat-section {
        max-width: 1450px;
        margin: 90px auto;
      }

      .hero-title {
        font-size: 80px;
      }

      .hero-subtitle {
        font-size: 45px;
      }

    }

    /* Additional polish: no text overflow, clean spacing */
    .hero-text {
      padding-left: 60px;
    }

    @media (max-width: 768px) {
      .hero-text {
        padding-left: 0;
      }
      .search-panel{
        left: 0;
        width: 100% !important;
      }
    }

    .row.align-items-center {
      align-items: center;
    }

    .hero-inner {
      width: 100%;
    }


    /* Products Section Container */
    /* products wrapper - clean, centered */
    .products-wrap {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
    }

    /* section heading */
    .products-heading {
      text-align: center;
      font-weight: 700;
      font-size: 48px;
      color: #d80f0b;
      letter-spacing: -1.6px;
      font-family: 'Inter', sans-serif;
      margin-bottom: 0px;
    }

    /* GRID: 3 columns, responsive */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px 28px;
      justify-items: center;
      align-items: start;
    }

    /* product card — no movement on hover, only inner image animates */
    .product-card {
      width: 100%;
      max-width: 357px;
      position: relative;
      transition: none;
      /* card itself does NOT move or scale */
    }

    /* ----- IMAGE CONTAINER (holds bg rect + product png) ----- */
    .product-media {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: 14px;
      cursor: pointer;
    }

    /* background rectangle (rounded shape) */
    .product-bg {
      width: 100%;
      max-width: 357px;
      display: block;
      border-radius: 24px;
      transition: all 0.25s ease;
      z-index: -1;
      /* bg stays static, only shadow on hover (but we will manage shadow via parent) */
    }

    /* PRODUCT 1.png image – this one will zoom & shadow on hover */
    .product-png {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      object-fit: contain;
      pointer-events: none;
      /* allows hover on parent to trigger effect */
      transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
      will-change: transform;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
    }

    /* Different natural sizes for each product (exactly like 2nd image style) */
    .product-card:nth-child(1) .product-png {
      width: 160px;
      max-width: 160px;
      z-index: 6;
    }

    .product-card:nth-child(2) .product-png {
      width: 182px;
      max-width: 182px;
      z-index: 6;
    }

    .product-card:nth-child(3) .product-png {
      width: 216px;
      max-width: 216px;
      z-index: 6;
    }

    /* HOVER EFFECT: only the product png scales up + gets deeper shadow, bg gets slight dark overlay illusion */
    .product-media:hover .product-png {
      transform: translateX(-50%) scale(1.07);
      filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25)) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
    }

    /* optional: add a subtle dark gradient on background image when hover (to simulate shadow on bg) */
    .product-media:hover .product-bg {
      filter: brightness(0.97);
      transition: filter 0.25s;
    }

    /* Vector underline / decorative line */
    .product-vector {
        max-width: 371px;
        position: absolute;
        bottom: 22%;
        left: -2%;
        z-index: 5;
    }

    /* product text area */
    .product-info {
      width: 100%;
    }

    .product-title-main {
      font-family: 'Inter', 'Segoe UI', sans-serif;
      font-weight: 500;
      font-size: 20px;
      color: #000000;
      line-height: 1.3;
      margin-bottom: 6px;
      letter-spacing: 0px;
    }

    .product-price {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: #d80f0b;
      letter-spacing: 0.4px;
      line-height: 22px;
      margin-bottom: 16px;
    }

    /* order button — yellow rounded (only bottom corners) */
    .order-btn {
      width: 100%;
      max-width: 357px;
      height: 42px;
      background-color: #ffcc00;
      border-radius: 0px 12px 0px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 16px;
      color: #d80f0b;
      letter-spacing: 0.3px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .order-btn:hover {
      background-color: #e6b800;
      transform: scale(0.98);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* optional badge to match “JASON CAT LITTER” aesthetic if needed (but not overkill) */
    .product-badge {
      font-size: 12px;
      font-weight: 600;
      color: #d80f0b;
      letter-spacing: 1px;
      margin-bottom: 4px;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
    }

    /* make sure everything aligns left on desktop, center on mobile */
    .product-info {
      text-align: left;
    }

    /* Responsive ========= */
    @media (max-width: 992px) {
      .products-grid {
        gap: 28px 20px;
      }

      .products-heading {
        font-size: 40px;
        margin-bottom: 44px;
      }

      .product-title-main {
        font-size: 18px;
      }

      .product-png {
        transition: transform 0.25s ease, filter 0.25s;
      }

      .product-media:hover .product-png {
        transform: translateX(-50%) scale(1.05);
      }
    }

    @media (max-width: 768px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
      }

      .product-card {
        max-width: 100%;
      }

      .products-heading {
        font-size: 36px;
        margin-bottom: 38px;
      }

      .product-bg {
        max-width: 100%;
      }

      /* .product-vector {
        max-width: 104%;
      } */

      .order-btn {
        max-width: 100%;
      }

      .product-info {
        text-align: left;
      }

      /* adjust png sizes a bit for tablet */
      .product-card:nth-child(1) .product-png {
        width: 140px;
        z-index: 6;
      }

      .product-card:nth-child(2) .product-png {
        width: 158px;
        z-index: 6;

      }

      .product-card:nth-child(3) .product-png {
        width: 185px;
        z-index: 6;

      }
      ol, ul{
        padding-left: 0px !important;
        }
    }

    @media (max-width: 580px) {
      .products-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .product-card {
        max-width: 320px;
        margin: 0 auto;
      }

      .products-heading {
        font-size: 32px;
        margin-bottom: 0px;
      }

      .product-info {
        text-align: center;
      }

      .product-title-main {
        text-align: center;
      }

      .product-price {
        text-align: center;
      }

      .order-btn {
        margin-left: auto;
        margin-right: auto;
      }

      .product-vector {
          max-width: 332px;
      }

      .product-media {
        justify-content: center;
      }

      /* keep png sizes comfortable */
      .product-card:nth-child(1) .product-png {
        width: 130px;
      }

      .product-card:nth-child(2) .product-png {
        width: 148px;
      }

      .product-card:nth-child(3) .product-png {
        width: 170px;
      }
      ol, ul{
        padding-left: 0px !important;
      }
    }

    @media (max-width: 400px) {
      .product-card:nth-child(1) .product-png {
        width: 115px;
      }

      .product-card:nth-child(2) .product-png {
        width: 130px;
      }

      .product-card:nth-child(3) .product-png {
        width: 150px;
      }
    }

    

    /* disable any card movement: ensure no transform on card hover */
    .product-card:hover {
      transform: none;
    }

    /* smoothness */
    .product-media {
      transition: none;
    }

    /* Banner Container */
    .banner-container {
      position: relative;
      width: 100%;
      max-width: 1440px;
      margin: 50px auto;
      aspect-ratio: 2.83;
    }

    /* Banner Image */
    .banner-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    /* Dark Overlay for text readability */
    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.35);
      z-index: 2;
    }

    /* Learn about our love for text */
    .banner-subtitle {
      position: absolute;
      top: 30%;
      left: 20%;
      transform: translate(-50%, -50%);
      width: 320px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 32px;
      color: #ffffff;
      text-align: center;
      letter-spacing: -1.28px;
      line-height: 1.2;
      z-index: 3;
      margin: 0;
    }

    /* Pets? text */
    .banner-title {
      position: absolute;
      top: 45%;
      left: 100px;
      font-family: 'Melindya', 'Inter', cursive;
      font-weight: 400;
      font-size: 200px;
      color: transparent;
      /* andar transparent */
      text-align: center;
      letter-spacing: 0;
      line-height: 104px;
      white-space: nowrap;
      text-shadow: 0px 4px 5.3px rgb(0 0 0 / 0%);
      -webkit-text-stroke: 5px #ffffff;
      /* sirf border */
      background-blend-mode: darken;
      z-index: 3;
      margin: 0;
    }

    /* Learn Now Button */
    .banner-btn {
      position: absolute;
      top: 72%;
      left: 110px;
      width: 131px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: #000000;
      background: #ffcc00;
      text-align: center;
      letter-spacing: 0;
      line-height: 21px;
      padding: 10px 0;
      border-top-left-radius: 30px;
      border-bottom-right-radius: 30px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      z-index: 3;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .banner-btn:hover {
      background: #ffff;
      color: #000000;
      transform: scale(1.02);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .banner-title {
        font-size: 150px;
        left: 60px;
        top: 55%;
        -webkit-text-stroke: 4px #ffffff;
      }

      .banner-btn {
        left: 60px;
        top: 70%;
      }
    }

    @media (max-width: 992px) {
      .banner-title {
        font-size: 100px;
        left: 40px;
        top: 53%;
        line-height: 80px;
        -webkit-text-stroke: 3px #ffffff;
      }

      .banner-subtitle {
        font-size: 24px;
        top: 45%;
        width: 280px;
      }

      .banner-btn {
        left: 40px;
        top: 66%;
      }
    }

    @media (max-width: 768px) {
      .banner-title {
        font-size: 60px;
        left: 20px;
        top: 52%;
        line-height: 60px;
        white-space: normal;
        -webkit-text-stroke: 2px #ffffff;
      }

      .banner-subtitle {
        font-size: 18px;
        top: 43%;
        width: 240px;
      }

      .banner-btn {
        left: 20px;
        top: 64%;
        width: 110px;
        font-size: 14px;
      }

      
    }

    @media (max-width: 576px) {
      .banner-title {
        font-size: 40px;
        left: 40%;
        top: 35%;
        line-height: 50px;
        -webkit-text-stroke: 1px #ffffff;
      }

      .banner-subtitle {
        font-size: 14px;
        top: 25%;
        left: 50%;
        width: 200px;
        letter-spacing: -0.5px;
      }

      .banner-btn {
        left: 36%;
        top: 65%;
        width: 95px;
        font-size: 12px;
        padding: 8px 0;
      }
    }

    /* PANEL HIDDEN BY DEFAULT */
  .search-panel{
    position: absolute;
    right: 0;
    width: 25%;
    background: #fff;
    border-top: 3px solid #ffd400;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;

    z-index: 9999;
  }

  /* SHOW PANEL */
  .search-panel.active{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* SEARCH BOX */
  .search-box{
    padding: 15px;
    background: #ffd400;
  }

  .search-box input{
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
  }

  /* RESULTS */
  .search-results{
    max-height: 300px;
    overflow-y: auto;
  }

  /* ITEM STYLE */
  .search-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.2s;
  }

  .search-item:hover{
    border-left: 4px solid #ffd400;
    background: #fffbea;
  }

  .search-item img{
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .search-item .title{
    flex: 1;
    font-weight: 500;
  }

  .search-item .price{
    font-weight: bold;
  }
  .search-close {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 22px;
      cursor: pointer;
      font-weight: bold;
      z-index: 10;
      padding: 11px 20px;
      border-radius: 50%;
  }


  /* 1ST PAW CSS */
  .paw {
      position: absolute;
      width: auto;
      height: auto;
      transition: filter 0.2s ease;
    }
    
    /* Desktop positions - % mein convert */
    .step-1 {
        bottom: -30%;
        left: -9%;
        transform: rotate(-15deg);
    }
    
    .step-2 {
        bottom: -30%;
        left: 0%;
        transform: rotate(-20deg);
    }
    
    .step-3 {
        bottom: -6%;
        left: -2%;
        transform: rotate(-24deg);
    }
    
    .step-4 {
        bottom: 5%;
        left: 10%;
        transform: rotate(2deg);
    }
    
    .step-5 {
        bottom: 8%;
        left: 30%;
        transform: rotate(45deg);
        z-index: -5;
    }
    
    .step-6 {
        bottom: 4%;
        left: 42%;
        transform: rotate(8deg);
    }
    
    .step-7 {
        bottom: 10%;
        left: 50%;
        z-index: -5;
        transform: rotate(-12deg);
    }
    
    .step-8 {
        top: -6%;
        right: 11%;
        transform: rotate(-16deg);
    }
    
    .step-9 {
        top: -3%;
        right: 2%;
        transform: rotate(-16deg);
    }
    
    .step-10 {
        top: -22%;
        right: 4%;
        transform: rotate(-16deg);
    }
    
    @media (max-width: 400px) {
      body{
        overflow-x: hidden;
      }
      .footer{
        width: 100%;
      }
      .paw {
        position: absolute;
        width: 25px;
        height: auto;
        transition: filter 0.2s ease;
      }
    
      /* Mobile positions - % mein convert */
      .step-1 {
          bottom: -10%;
          left: -10%;
          transform: rotate(-15deg);
      }
    
      .step-2 {
        bottom: -8%;
        left: -2%;
        transform: rotate(-20deg);
      }
    
      .step-3 {
          bottom: 1%;
          left: -3%;
          transform: rotate(-24deg);
      }
    
      .step-4 {
          bottom: 6%;
          left: 6%;
          z-index: -1;
          transform: rotate(10deg);
      }
    
      .step-5 {
        bottom: 5%;
        left: 30%;
        transform: rotate(45deg);
      }
    
      .step-6 {
        bottom: 0%;
        left: 44%;
        transform: rotate(8deg);
      }
    
      .step-7 {
        bottom: 7%;
        left: 59%;
        transform: rotate(-12deg);
      }
    
      .step-8 {
          top: -5%;
          right: 4%;
          transform: rotate(-16deg);
      }
    
      .step-9 {
        top: -10%;
        right: -5%;
        transform: rotate(-16deg);
      }
    
      .step-10 {
        top: -20%;
        right: -3%;
        transform: rotate(-16deg);
      }
    }
  /* 1ST PAW CSS END*/
  
  /* 2ND PAW CSS */
  .why-choose {
    height:1250px;
    }
    .paw-track2 {
    position: relative;
    width: 100%;
    min-height: 600px;
    }

    .paw {
    position: absolute;
    width: auto;
    height: auto;
    transition: all 0.2s ease;
    }

    /* Orange paw active effect */
    /* .paw-orange-active {
        filter: drop-shadow(0 0 8px #ff6600);
        animation: pawPop 0.3s ease-out;
    } */

    /* @keyframes pawPop {
        0% { transform: scale(0.9); }
        50% { transform: scale(1.15); }
        100% { transform: scale(1); }
    } */

    /* Positions */
    .why-choose {
        height:1250px;
      }
      .paw-track2 {
        position: relative;
        width: 100%;
        min-height: 600px;
      }
    
      .paw {
        position: absolute;
        width: auto;
        height: auto;
        transition: all 0.2s ease;
      }
    
      /* Orange paw active effect */
      /* .paw-orange-active {
          filter: drop-shadow(0 0 8px #ff6600);
          animation: pawPop 0.3s ease-out;
        } */
    
      /* @keyframes pawPop {
          0% { transform: scale(0.9); }
          50% { transform: scale(1.15); }
          100% { transform: scale(1); }
        } */
    
      /* Positions */
      .step-21 {
            top: 20%;
            left: 0px;
            transform: rotate(
        22deg);
        }
    
      .step-22 {
            top: 30%;
            left: 2%;
            transform: rotate(
        16deg);
        }
    
      .step-23 {
        top: 19%;
        left: 7%;
        transform: rotate(
    21deg);
    }
    
      .step-24 {
        top: 28%;
        left: 10%;
        transform: rotate(
    12deg);
    }
    
      .step-25 {
        top: 15%;
        left: 14%;
        transform: rotate(-20deg);
      }
    
      .step-26 {
            top: 23%;
            left: 18%;
            transform: rotate(-15deg);
        }
    
      .step-27 {
            top: 7%;
            left: 20%;
            transform: rotate(-35deg);
        }
    
      .step-28 {
            top: 14%;
            left: 25%;
            transform: rotate(-35deg);
        }
        
        .step-29 {
            top: -2%;
            left: 24%;
            transform: rotate(-35deg);
        }
        
        .step-210 {
            top: 4%;
            left: 28%;
            transform: rotate(-35deg);
        }
        
        .step-211 {
            top: -12%;
            left: 26%;
            transform: rotate(-35deg);
        }
        .step-212 {
            top: -8%;
            left: 31%;
            transform: rotate(
        322deg);
        }
      .paw2 {
        position: absolute;
        width: auto;
        height: auto;
        transition: all 0.2s ease;
      }
    
      /* .step-29 { bottom: 480px; left: 1100px; transform: rotate(-16deg); }
        .step-210 { bottom: 545px; left: 1055px; transform: rotate(-16deg); } */
    
      /* Responsive */
      @media (max-width: 768px) {
          
        .banner-container{
            margin-bottom: -70px !important;
        }
          
        .paw-track2 {
          min-height: 500px;
        }
    
        .paw {
          width: 25px;
        }
    
        .step-21 {
          top: 0%;
          left: 0%;
        }
    
        .step-22 {
            top: 3%;
            left: 0%;
        }
    
        .step-23 {
            top: 0%;
            left: 7%;
        }
    
        .step-24 {
            top: 3%;
            left: 8%;
        }
    
        .step-25 {
            top: -1%;
            left: 15%;
        }
    
        .step-26 {
            top: 2%;
            left: 16%;
        }
    
        .step-27 {
            top: -3%;
            left: 20%;
        }
    
        .step-28 {
            top: 0%;
            left: 23%;
        }
        .step-29 {
            top: -4%;
            left: 28%;
        }
        
        .step-210{
            display: none;
        }
        .step-211{
            display: none;
        }
        .step-212{
            display: none;
        }
        .why-choose {
          height:auto;
          overflow: hidden !important;
        }
        .paw2 {
          width: 45px;
        }
      }
  /* 2ND PAW CSS END*/

  /* 3RD PAW CSS */
  .paw-track2 {
    position: relative;
    width: 100%;
    min-height: 600px;
    }

    .paw {
    position: absolute;
    width: auto;
    height: auto;
    transition: all 0.2s ease;
    }

    /* Orange paw active effect */
    /* .paw-orange-active {
        filter: drop-shadow(0 0 8px #ff6600);
        animation: pawPop 0.3s ease-out;
    } */

    /* @keyframes pawPop {
        0% { transform: scale(0.9); }
        50% { transform: scale(1.15); }
        100% { transform: scale(1); }
    } */

    /* Positions */
    .step-31 {
    bottom: -19%;
    left: 0px;
    transform: rotate(42deg);
    }

    .step-32 {
    bottom: -27%;
    left: 3%;
    transform: rotate(36deg);
    }

    .step-33 {
    bottom: -19%;
    left: 8%;
    transform: rotate(45deg);
    }

    .step-34 {
    bottom: -30%;
    left: 10%;
    transform: rotate(49deg);
    }

    .step-35 {
    bottom: -24%;
    left: 17%;
    transform: rotate(45deg);
    }

    .step-36 {
    bottom: -33%;
    left: 20%;
    transform: rotate(36deg);
    }

    .step-37 {
    bottom: -26%;
    left: 25%;
    transform: rotate(38deg);
    }

    .step-38 {
    bottom: -33%;
    left: 31%;
    transform: rotate(21deg);
    }

    .step-39 {
    bottom: -23%;
    left: 34%;
    transform: rotate(22deg);
    }

    .step-310 {
    bottom: -30%;
    left: 41%;
    transform: rotate(17deg);
    }

    .step-311 {
    bottom: -19%;
    left: 41%;
    transform: rotate(9deg);
    }

    .step-312 {
    bottom: -27%;
    left: 48%;
    transform: rotate(-12deg);
    z-index: -11;
    }

    .step-313 {
    bottom: -17%;
    left: 49%;
    transform: rotate(4deg);
    z-index: -11;
    }

    /* .step-29 { bottom: 480px; left: 1100px; transform: rotate(-16deg); }
    .step-210 { bottom: 545px; left: 1055px; transform: rotate(-16deg); } */

    /* Responsive */
    @media (max-width: 768px) {
    .paw-track2 {
        min-height: 500px;
    }

    .paw {
        width: 25px;
    }

    .step-31 {
        bottom: 0%;
        left: 0px;
        transform: rotate(42deg);
    }

    .step-32 {
        bottom: 5%;
        left: 3%;
        transform: rotate(36deg);
    }

    .step-33 {
        bottom: -1%;
        left: 12%;
        transform: rotate(45deg);
    }

    .step-34 {
        bottom: 4%;
        left: 18%;
        transform: rotate(49deg);
    }

    .step-35 {
        bottom: -2%;
        left: 26%;
        transform: rotate(45deg);
    }

    .step-36 {
        bottom: 3%;
        left: 32%;
        transform: rotate(36deg);
    }

    .step-37 {
        bottom: -3%;
        left: 42%;
        transform: rotate(10deg);
    }

    .step-38 {
        bottom: 3%;
        left: 45%;
        transform: rotate(5deg);
    }

    .step-39 {
        bottom: -2%;
        left: 58%;
        transform: rotate(14deg);
    }

    .step-310 {
        bottom: 4%;
        left: 60%;
        transform: rotate(-6deg);
    }

    .step-311 {
        bottom: 1%;
        left: 75%;
        transform: rotate(-17deg);
    }

    .step-312 {
        bottom: 9%;
        left: 71%;
        transform: rotate(-9deg);
    }

    .step-313 {
        bottom: 8%;
        left: 86%;
        transform: rotate(-6deg);
        /* z-index: -11; */
    }
    }
  /* 3RD PAW CSS END */


  /* WHY CHOOSE US */
  .tub-cat {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .clumping-text {
        position: absolute;
        right: 27%;
        top: 21%;
    }

    .vector-1 {
        position: absolute;
        top: -15%;
        right: 0%;
        z-index: -1;
    }

    .vector-2 {
        position: absolute;
        z-index: -1;
        top: 90%;
        left: 42%;
    }

    /* Feature Grid Container */
    .feature-grid-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    /* Each Row - 2 columns */
    .feature-row {
        display: flex;
        width: 100%;
    }

    /* Individual Feature Item */
    .feature-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: transparent;
        padding-top: 10px;
        padding-bottom: 10px;
        transition: all 0.3s ease;
    }

    /* Icon Styling */
    .feature-icon {
        width: auto;
        height: auto;
        max-width: 80px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .feature-item:hover .feature-icon {
        transform: scale(1.3);
    }

    /* Text Styling - Exactly like 2nd image */
    .feature-text {
        font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
        font-weight: 700;
        font-size: 18px;

        margin: 0;
        line-height: 1.3;
        letter-spacing: -0.3px;
        text-transform: uppercase;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .feature-row {
        gap: 20px;
        }

        .feature-text {
        font-size: 16px;
        }

        .feature-icon {
        max-width: 65px;
        }

        .tub-cat {
        width: 300px !important;
        position: absolute;
        top: 60px;
        right: -30px;
        }

        .clumping-text {
            width: 120px !important;
            position: absolute;
            right: 34%;
            top: 16%;
        }

        .vector-1 {
        width: 80px !important;
        position: absolute;
        top: 5%;
        right: 0%;
        z-index: -1;
        }

        .vector-2 {
        width: 80px !important;
        position: absolute;
        z-index: -1;
        top: 47%;
        left: 46%;
        transform: rotate(318deg);
        }
    }

    @media (max-width: 768px) {
        .feature-row {
        flex-direction: column;
        gap: 25px;
        }

        .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        text-align: left;
        padding: 10px;
        }

        .feature-icon {
        max-width: 55px;
        margin-bottom: 0;
        }

        .feature-text {
        font-size: 15px;
        text-align: left;
        }

        .tub-cat {
        width: 300px !important;
        position: absolute;
        top: 60px;
        right: -30px;
        }

        .clumping-text {
            width: 120px !important;
            position: absolute;
            right: 34%;
            top: 16%;
        }
        .vector-1 {
        width: 80px !important;
        position: absolute;
        top: 5%;
        right: 0%;
        z-index: -1;
        }

        .vector-2 {
        width: 80px !important;
        position: absolute;
        z-index: -1;
        top: 47%;
        left: 46%;
        transform: rotate(318deg);
        }
    }

    @media (max-width: 576px) {
        .feature-text {
        font-size: 13px;
        }

        .feature-icon {
        max-width: 45px;
        }

        .tub-cat {
        width: 300px !important;
        position: absolute;
        top: 60px;
        right: -50px;
        }

        .clumping-text {
            width: 120px !important;
            position: absolute;
            right: 31%;
            top: 16%;
        }

        .vector-1 {
        width: 80px !important;
        position: absolute;
        top: 5%;
        right: 0%;
        z-index: -1;
        }

        .vector-2 {
        width: 80px !important;
        position: absolute;
        z-index: -1;
        top: 47%;
        left: 50%;
        transform: rotate(318deg);
        }
    }

    @media (max-width: 1006px) and (min-width: 451px) {
        .cat-section {
        margin: 50px auto;
        padding: 2rem 1.5rem;
        width: calc(100% - 24px);
        }

        .hero-text{
        position: absolute;
        }

        .hero-title {
        font-size: 32px;
        text-align: left;
        }

        .hero-subtitle {
        font-size: 20px;
        text-align: left;
        }

        .hero-desc {
        /* text-align: center; */
        font-size: 12px;
        }

        .hero-text {
        padding-right: 10px;
        }

        .hero-img-box {
        justify-content: flex-end;
        min-height: 280px;
        }

        .cat-img {
            position: absolute;
            left: 50%;
            top: -55%;
        }

        .product-vector {
            max-width: 103%;
            position: absolute;
            bottom: 30%;
            left: -1%;
            z-index: 5;
        }
    }
  /* WHY CHOOSE US END */

  /* CAROUSEL CSS */
    .carousel-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
      padding: 20px 0 40px;
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .carousel-slide {
      flex: 0 0 33.333%;       /* 3 slides visible at a time */
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.4s ease;
      opacity: 0.4;
      transform: scale(0.85);
      filter: grayscale(100%);
      cursor: pointer;
      padding: 0 10px;
    }
    
    .carousel-slide img {
      width: 100%;
      max-width: 280px;
      height: auto;
      object-fit: contain;
      border-radius: 24px;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      background: #fafafa;
    }
    
    /* ACTIVE (center) slide — larger, full color, no grayscale, scale up */
    .carousel-slide.active {
      opacity: 1;
      transform: scale(1.18);
      filter: grayscale(0%);
      z-index: 5;
    }
    
    .carousel-slide:hover img {
      filter: brightness(0.98);
      transform: scale(1.02);
    }
    
    /* Navigation dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
    }
    
    .dot {
      width: 10px;
      height: 10px;
      background-color: #ffcc00;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.2s;
    }
    
    .dot.active-dot {
      background-color: #d80f0b;
      width: 28px;
      border-radius: 20px;
    }
    
    @media (max-width: 992px) {
      .carousel-slide.active {
        transform: scale(1.12);
      }
      .carousel-slide img {
        max-width: 230px;
      }
    }
    
    @media (max-width: 768px) {
      .carousel-slide {
        padding: 0 6px;
      }
      .carousel-slide.active {
        transform: scale(1.08);
      }
      .carousel-slide img {
        max-width: 180px;
      }
      .products-heading {
        font-size: 32px;
      }
      .carousel-demo-section{
          overflow: hidden !important;
      }
    }
    
    @media (max-width: 576px) {
      .carousel-slide.active {
        transform: scale(1.05);
      }
      .carousel-slide img {
        max-width: 140px;
      }
      .carousel-container {
        padding: 10px 0 30px;
      }
    }
    
    body,html {
      overflow-x: hidden;
    }
  /* CAROUSEL CSS END */

  /* OUR FEATURE CSS */
    .feature_down {
    width: 100%;
    max-width: 1212px;
    margin: 60px auto;
    background: #d80f0b;
    border-radius: 43px 0px 43px 0px;
    padding: 28px 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    }

    .feature_down-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    width: 100%;
    }

    .feature_down-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    }

    .feature_down-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    }

    .feature_down-icon img {
    max-width: 42px;
    max-height: 44px;
    object-fit: contain;
    }

    .feature_down-item:hover .feature_down-icon {
    background: rgba(255, 204, 0, 0.25);
    transform: scale(1.05);
    }

    .feature_down-title {
    font-family: 'Melindya', 'Inter', cursive;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.4px;
    color: #ffcc00;
    text-align: center;
    line-height: 1.3;
    }

    .feature_down-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: -0.2px;
    color: #ffffff;
    text-align: center;
    line-height: 1.45;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 992px) {
    .feature_down-container {
        justify-content: center;
        gap: 30px;
    }
    .feature_down-item {
        min-width: 200px;
    }
    .feature_down-title {
        font-size: 20px;
    }
    }

    @media (max-width: 768px) {
    .feature_down {
        padding: 28px 20px;
        margin: 40px auto;
    }
    .feature_down-title {
        font-size: 18px;
    }
    .feature_down-desc {
        font-size: 12px;
    }
    .feature_down-icon {
        width: 48px;
        height: 48px;
    }
    .feature_down-icon img {
        max-width: 36px;
    }
    }

    /* ========== MOBILE CAROUSEL (640px and below) ========== */
    @media (max-width: 640px) {
    .feature_down {
        width: 80%;
        padding: 20px 0;
        margin: 30px auto;
        border-radius: 30px 0px 30px 0px;
    }

    .feature_down-container {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: flex-start;
    }

    .feature_down-item {
        flex: 0 0 100%;
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 12px 20px;
        box-sizing: border-box;
        background: transparent;
    }

    .feature_down-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.1);
    }

    .feature_down-icon img {
        max-width: 36px;
    }

    .feature_down-item .feature_down-title {
        text-align: left;
        font-size: 18px;
    }

    .feature_down-item .feature_down-desc {
        text-align: left;
        font-size: 12px;
    }

    .feature_down-item > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    }

    @media (min-width: 581px) and (max-width: 768px) {
        .product-bg {
            max-width: 357px;
        }
        .product-vector {
            z-index: 5;
            position: absolute;
            bottom: 28%;
            left: -2%;
        }

        .banner-btn{
        margin-top: 25px;
        }
        .banner-subtitle {
            font-size: 18px;
            top: 43%;
            text-align: start;
        }
        .clumping-text {
            width: 120px !important;
            position: absolute;
            right: 19%;
            top: 14%;
        }
        .vector-2 {
            width: 80px !important;
            position: absolute;
            z-index: -1;
            top: 45%;
            left: 72%;
            transform: rotate(318deg);
        }
    }
  /* OUR FEATURE CSS END */

  /* FOOTER */
    /* ========== FOOTER STYLES ========== */
    .footer-contact-section {
        flex: 0 !important;
        min-width: 200px;
    }
    .footer {
        width: 101%;
        background: url('/assets/images/frontend/bG-1.png') no-repeat center;
        background-size: cover;
        position: relative;
        padding: 60px 80px 40px;
        padding-bottom: 5px !important;
        margin-top: 60px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }

    /* Logo Section */
    .footer-logo-section {
        flex: 1;
        min-width: 200px;
    }

    .footer-logo {
        width: 110px;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-description {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        line-height: 1.6;
        color: #000000;
        max-width: 260px;
    }

    /* Quick Links Section */
    .footer-links-section {
        flex: 1;
        min-width: 150px;
    }

    .footer-heading {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 28px;
        letter-spacing: -1.28px;
        color: #000000;
        margin-bottom: 20px;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links{
      padding-left: 0.5rem !important;
    }

    .footer-links a {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: -0.48px;
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #d80f0b;
    }

    /* Contact Info Section */
    .footer-contact-section {
        flex: 1;
        min-width: 200px;
    }

    .contact-info {
        margin-top: 20px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .contact-icon.large {
        width: 23px;
        height: 23px;
    }

    .contact-text {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        letter-spacing: -0.48px;
        color: #000000;
        line-height: 1.5;
    }

    .contact-text a {
        color: #000000;
        text-decoration: none;
    }

    .contact-text a:hover {
        color: #d80f0b;
    }

    /* Copyright Section */
    .footer-bottom {
        max-width: 1200px;
        margin: 0px auto 0;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .copyright {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #000000;
    }

    .copyright a {
        color: #000000;
        text-decoration: underline;
    }

    .copyright a:hover {
        color: #d80f0b;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .footer {
            padding: 50px 40px 35px;
        }
        .footer-heading {
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 40px 25px 30px;
        }
        .footer-container {
            flex-direction: column;
            gap: 35px;
        }
        .footer-logo-section,
        .footer-links-section,
        .footer-contact-section {
            text-align: center;
        }
        .footer-description {
            margin: 0 auto;
        }
        .contact-item {
            justify-content: center;
        }
        .footer-links li {
            display: inline-block;
            margin: 0 15px;
        }
        .footer-heading {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .footer {
            padding: 35px 20px 25px;
        }
        .footer-heading {
            font-size: 22px;
        }
        .footer-links li {
            display: block;
            margin: 10px 0;
        }
        .contact-item {
            align-items: center;
            text-align: center;
        }
        .copyright {
            font-size: 11px;
        }
    }
    /* FOOTER END */