
  /* Completely New Design - No Match to Previous */
  :root {
      --primary: #FF6B8B;
      --primary-dark: #E55A7B;
      --secondary: #6ECBF5;
      --accent: #FFA62E;
      --light: #FFF5F7;
      --dark: #2D2D2D;
      --text: #5A5A5A;
      --success: #4CD964;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Montserrat', 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: #ffffff;
      overflow-x: hidden;
  }
  
  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
  }
  
  .col-md-3, .col-md-4, .col-md-5, .col-md-7, .col-md-8, .col-md-10 {
      padding: 0 15px;
  }
  
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; }
  .col-md-5 { width: 41.666%; }
  .col-md-7 { width: 58.333%; }
  .col-md-8 { width: 66.666%; }
  .col-md-10 { width: 83.333%; }
  
  .text-left { text-align: left; }
  .text-center { text-align: center; }
  .text-white { color: white; }
  
  .justify-content-left { justify-content: flex-start; }
  .justify-content-center { justify-content: center; }
  
  .d-flex { display: flex; }
  .d-block { display: block; }
  .d-center { align-items: center; }
  
  .align-self-stretch { align-self: stretch; }
  .align-items-center { align-items: center; }
  .justify-content-center { justify-content: center; }
  
  .px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .mb-4 { margin-bottom: 1.5rem; }
  .mb-5 { margin-bottom: 3rem; }
  
  /* Hero Section - Completely New Design */
  .banner-sec {
      background: linear-gradient(135deg, #FF9A8B 0%, var(--primary) 50%, #FF6B8B 100%);
      padding: 150px 0 100px;
      color: white;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  
  .banner-sec::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><path fill="white" d="M500,200Q400,300,300,400Q200,500,300,600Q400,700,500,800Q600,700,700,600Q800,500,700,400Q600,300,500,200Z"/></svg>');
      background-size: cover;
  }
  
  .index-banner-content h2 {
      font-size: 4rem;
      font-weight: 900;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
      letter-spacing: -1px;
  }
  
  .index-banner-content h3 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #FFEAA7;
  }
  
  .index-banner-content p {
      font-size: 1.4rem;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      max-width: 600px;
      line-height: 1.7;
      font-weight: 500;
  }
  
  .index-button {
      display: inline-block;
      padding: 20px 50px;
      background: var(--accent);
      color: var(--dark);
      text-decoration: none;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1.3rem;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(255, 166, 46, 0.4);
      border: 3px solid transparent;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .index-button:hover {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 0 15px 35px rgba(255, 166, 46, 0.6);
      background: #FF9800;
      border-color: white;
  }
  
  /* Pet Wellness Journey - NEW SECTION */
  .wellness-journey {
      padding: 60px 0;
      background: var(--light);
      position: relative;
  }
  
  .journey-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 60px;
  }
  
  .journey-step {
      background: white;
      border-radius: 25px;
      padding: 50px 35px;
      text-align: center;
      box-shadow: 0 15px 40px rgba(255, 107, 139, 0.1);
      transition: all 0.5s ease;
      position: relative;
      border: 2px solid transparent;
  }
  
  
  
  .step-number {
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background: var(--secondary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(110, 203, 245, 0.5);
  }
  
  .step-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      color: white;
      font-size: 3rem;
  }
  
  .journey-step h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 20px;
  }
  
  .journey-step p {
      color: var(--text);
      line-height: 1.8;
      font-size: 15px;
  }
  
  /* Features Section - Complete Redesign */
  .ftco-intro {
      padding: 120px 0;
      background: white;
      position: relative;
  }
  
  .ftco-intro::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23FF6B8B" d="M200,300Q300,200,400,300Q500,400,600,300Q700,200,800,300Q900,400,800,500Q700,600,600,500Q500,400,400,500Q300,600,200,500Q100,400,200,300Z"/></svg>');
      background-size: cover;
  }
  
  .services {
      background: white;
      border-radius: 25px;
      padding: 60px 40px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
      transition: all 0.5s ease;
      border: 3px solid transparent;
      height: 100%;
      position: relative;
      overflow: hidden;
  }
  
  .services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 8px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  }
  
  .services:hover {
      transform: translateY(-20px) scale(1.03);
      box-shadow: 0 30px 60px rgba(0,0,0,0.15);
      border-color: var(--primary);
  }
  
  .services.active {
      background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
  }
  
  .icon-div {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 30px;
      border: 5px solid var(--accent);
      padding: 10px;
      background: white;
      box-shadow: 0 10px 25px rgba(255, 166, 46, 0.3);
  }
  
  .services h3.heading {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .services p {
      color: var(--text);
      margin-bottom: 30px;
      font-size: 1.2rem;
      line-height: 1.8;
  }
  
  .btn-custom {
      color: var(--primary);
      font-weight: 800;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .btn-custom:hover {
      color: var(--primary-dark);
      transform: translateX(10px);
  }
  
  /* Potential Benefits - NEW DESIGN */
  .potential-benefits {
      padding: 120px 0;
      background: linear-gradient(135deg, var(--secondary) 0%, #6ECBF5 100%);
      color: white;
      clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  }
  
  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 60px;
  }
  
  .benefit-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s ease;
      border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .benefit-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.4);
  }
  
  .benefit-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      color: white;
      font-size: 2.5rem;
  }
  
  .benefit-card h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 20px;
  }
  
  .benefit-card p {
      opacity: 0.9;
      line-height: 1.7;
  }
  
  /* Why Choose Us - Complete Redesign */
  .why-coose-us {
      padding: 60px 0;
      background: white;
  }
  
  .heading-block {
      margin-bottom: 0;
  }
  
  .heading-block h4 {
      color: var(--primary);
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 1.5rem;
      display: inline-block;
      padding: 10px 25px;
      background: var(--light);
      border-radius: 30px;
  }
  
  .heading-block h2 {
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -1px;
  }
  
  .why-img {
      text-align: center;
      position: relative;
  }
  
  .center-why-img img {
      max-width: 100%;
      border-radius: 30px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
      border: 8px solid white;
      transform: rotate(-5deg);
  }
  
  .why-txt-block {
      display: flex;
      align-items: flex-start;
      margin-bottom: 50px;
      padding: 40px;
      background: white;
      border-radius: 25px;
      transition: all 0.4s ease;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border-left: 8px solid var(--accent);
  }
  
  .why-txt-block:hover {
      transform: translateX(20px) rotate(1deg);
      box-shadow: 0 25px 50px rgba(0,0,0,0.2);
      border-left-color: var(--primary);
  }
  
  .why-icon-inner-block {
      margin-right: 25px;
      flex-shrink: 0;
  }
  
  .why-icon-inner-block span {
      display: inline-block;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(255, 107, 139, 0.4);
  }
  
  .why-icon-inner-block img {
      width: 40px;
      height: 40px;
      filter: brightness(0) invert(1);
  }
  
  .why-txt-inner-block h4 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 15px;
  }
  
  .why-txt-inner-block p {
      color: var(--text);
      line-height: 1.8;
      font-size: 1.19rem;
  }
  
  /* About Block - Complete Redesign */
  .about-block {
      background: linear-gradient(135deg, var(--dark) 0%, #4A4A4A 100%);
      padding: 120px 0;
      color: white;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  }
  
  .about-block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.08"><path fill="white" d="M300,250Q400,150,500,250Q600,350,500,450Q400,550,300,450Q200,350,300,250Z"/></svg>');
      background-size: cover;
  }
  
  .about-head h4 {
      color: var(--accent);
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 1.5rem;
  }
  
  .about-head h2 {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 2.5rem;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -1px;
  }
  
  .about-head p {
      font-size: 1.3rem;
      opacity: 0.9;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
  }
  
.ben-block {
            padding: 60px 0;
            background: linear-gradient(135deg, #fff9f5 0%, #f0f8ff 100%);
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 20px 0;
        }
        
        .ben-block::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 126, 95, 0.1);
            top: -150px;
            right: -150px;
        }
        
        .ben-block::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(106, 90, 249, 0.1);
            bottom: -100px;
            left: -100px;
        }
        
        .heading-block h4 {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-size: 17px;
        }
        
        .heading-block h2 {
            font-family: 'Fredoka One', cursive;
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 60px;
            line-height: 1.2;
        }
        
        .heading-block p {
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        
        .ben-inner-block {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            padding-top: 40px; /* Added padding to prevent icon cutoff */
        }
        
        .ben-inner-block:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ben-inner-block img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .ben-inner-block:hover img {
            transform: scale(1.05);
        }
        
        .ben-txt-block {
            padding: 30px;
            text-align: left;
        }
        
        .ben-txt-block h4 {
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 15px;
            /* font-size: 1.3rem; */
            position: relative;
            padding-bottom: 10px;
        }
        
        .ben-txt-block h4::after {
            content: "";
            position: absolute;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: 0;
            left: 0;
        }
        
        .ben-txt-block p {
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .icon-container {
            position: absolute;
            top: 20px; /* Adjusted to prevent cutoff */
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .heading-block h2 {
                font-size: 2.2rem;
            }
            
            .ben-txt-block {
                padding: 20px;
            }
            
            .icon-container {
                top: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, 15px); }
            100% { transform: translate(0, -0px); }
        }
        
        .paw-print {
            position: absolute;
            opacity: 0.1;
            font-size: 2rem;
            color: var(--primary);
            z-index: 0;
        }
        
        .paw-1 {
            top: 15%;
            left: 5%;
            transform: rotate(25deg);
        }
        
        .paw-2 {
            bottom: 20%;
            right: 7%;
            transform: rotate(-15deg);
        } 
  /* Products Section Redesign */
  .pro-sec {
      padding: 60px 0 0;
      background: white;
      position: relative;
  }
  
  .pro-sec::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23FF6B8B" d="M400,200Q500,100,600,200Q700,300,600,400Q500,500,400,400Q300,300,400,200Z"/></svg>');
      background-size: cover;
  }
  
  .feature-container {
      position: relative;
      z-index: 2;
  }
  
  .feature-container h2 {
      font-size: 3rem;
      font-weight: 900;
      color: var(--dark);
      text-align: center;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: -1px;
  }
  
  .feature-container h1 {
      font-size: 4rem;
      font-weight: 900;
      text-align: center;
      background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 4rem;
      text-transform: uppercase;
      letter-spacing: -2px;
  }
  
  /* CTA Section - NEW DESIGN */
  .cta-section {
      padding: 120px 0;
      background: linear-gradient(135deg, var(--accent) 0%, #FFA62E 100%);
      color: var(--dark);
      text-align: center;
      clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  }
  
  .cta-content h2 {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: -1px;
  }
  
  .cta-content p {
      font-size: 1.5rem;
      max-width: 700px;
      margin: 0 auto 3rem;
      font-weight: 600;
      line-height: 1.7;
  }
  
  .cta-button {
      display: inline-block;
      padding: 20px 50px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1.3rem;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(255, 107, 139, 0.4);
      border: 3px solid white;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .cta-button:hover {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 0 15px 35px rgba(255, 107, 139, 0.6);
      background: var(--primary-dark);
  }
  
  /* Animation Classes */
  .ftco-animate {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }
  
  .ftco-animated {
      opacity: 1;
      transform: translateY(0);
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .fadeInUp {
      animation: fadeInUp 0.8s ease forwards;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
      .col-md-3, .col-md-4, .col-md-5, .col-md-7, .col-md-8, .col-md-10 {
          width: 100%;
          margin-bottom: 30px;
      }
      
      .banner-sec {
          padding: 120px 0 80px;
          text-align: center;
      }
      
      .index-banner-content h2 {
          font-size: 3rem;
      }
      
      .index-banner-content h3 {
          font-size: 2rem;
      }
      
      .heading-block h2,
      .about-head h2,
      .feature-container h2,
      .cta-content h2 {
          font-size: 2.5rem;
      }
      
      .feature-container h1 {
          font-size: 3rem;
      }
      
      .why-txt-block {
          flex-direction: column;
          text-align: center;
      }
      
      .why-icon-inner-block {
          margin-right: 0;
          margin-bottom: 20px;
      }
  }
  
  @media (max-width: 768px) {
      .index-banner-content h2 {
          font-size: 2.5rem;
      }
      
      .index-banner-content h3 {
          font-size: 1.8rem;
      }
      
      .index-banner-content p {
          font-size: 1.2rem;
      }
      
      .index-button {
          padding: 18px 40px;
          font-size: 1.2rem;
      }
      
      .heading-block h2,
      .about-head h2,
      .feature-container h2,
      .cta-content h2 {
          font-size: 2rem;
      }
      
      .feature-container h1 {
          font-size: 2.5rem;
      }
  }
 



  /* Modern Footer Styles */
  .footer-modern {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
  }

  .footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
  }

  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-header i {
    font-size: 24px;
    color: #667eea;
  }

  .section-title {
    font-size: 18px;
    font-weight: 700;
    /* color: #fff; */
    margin: 0;
  }

  /* Disclaimer Section */
  .disclaimer-section {
    grid-column: 1 / 2;
  }

  .disclaimer-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
  }

  .disclaimer-text p {
    margin: 0;
  }

  /* Contact Section */
  .contact-section {
    grid-column: 2 / 3;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
  }

  .contact-details {
    flex: 1;
  }

  .contact-label {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .contact-value {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.4;
  }

  .contact-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-value a:hover {
    color: #764ba2;
  }

  /* Links Section */
  .links-section {
    grid-column: 3 / 4;
  }

  .links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
  }

  .footer-link:hover {
    color: #667eea;
    transform: translateX(5px);
  }

  .footer-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
  }

  /* Trust Section */
  .trust-section {
    grid-column: 4 / 5;
  }

  .trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .trust-badge:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
  }

  .badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
  }

  .badge-content {
    flex: 1;
  }

  .badge-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }

  .badge-desc {
    display: block;
    font-size: 12px;
    color: #a0aec0;
  }





    /* Elegant Product Details - CSS Enhancements Only */
    
    /* Main container styling */
    .product-single-container {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin-bottom: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
    }
    
    .product-single-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #4a6ee0, #8a6ee0, #ff6b6b, #4a6ee0);
      background-size: 300% 100%;
      animation: gradientShift 8s ease infinite;
    }
    
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    
    /* Gallery enhancements */
    .product-single-gallery {
      padding: 30px;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .product-slider-container {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    
    .product-single-carousel .product-item {
      padding: 10px;
      background: #fff;
    }
    
    .product-single-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.5s ease;
    }
    
    .product-single-image:hover {
      transform: scale(1.02);
    }
    
    .prod-full-screen {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4a6ee0;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .prod-full-screen:hover {
      background: #4a6ee0;
      color: white;
      transform: scale(1.1);
    }
    
    .prod-thumbnail {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      gap: 10px;
    }
    
    .prod-thumbnail .owl-dot {
      width: 70px;
      height: 70px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.7;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .prod-thumbnail .owl-dot.active,
    .prod-thumbnail .owl-dot:hover {
      opacity: 1;
      border-color: #4a6ee0;
      transform: translateY(-5px);
    }
    
    .prod-thumbnail .owl-dot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Product details enhancements */
    .product-single-details {
      padding: 40px 30px;
      position: relative;
    }
    
    .product-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
      background: linear-gradient(135deg, #2c3e50 0%, #4a6ee0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      padding-bottom: 15px;
    }
    
    .product-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #4a6ee0, #8a6ee0);
      border-radius: 3px;
    }
    
    .selected_price {
      margin: 25px 0;
      padding: 15px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .selected_price h2 {
      font-size: 36px;
      font-weight: 800;
      color: #4a6ee0;
      position: relative;
      display: inline-block;
    }
    
    .selected_price h2::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #4a6ee0, transparent);
    }
    
    .product-desc {
      margin: 25px 0;
      line-height: 1.7;
      color: #555;
      font-size: 16px;
    }
    
    .product-action {
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .btn-dark.add-cart {
      background: linear-gradient(135deg, #4a6ee0 0%, #8a6ee0 100%);
      border: none;
      border-radius: 12px;
      padding: 16px 30px;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(74, 110, 224, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .btn-dark.add-cart::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }
    
    .btn-dark.add-cart:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(74, 110, 224, 0.4);
      background: linear-gradient(135deg, #3a5ecf 0%, #7a5ecf 100%);
    }
    
    .btn-dark.add-cart:hover::before {
      left: 100%;
    }
    
    /* Related products section - FIXED */
    .products-section {
      margin-top: 50px;
      padding-top: 50px;
    
    }
    
    .section-title {
      /* font-size: 28px; */
      font-weight: 800;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #4a6ee0, #8a6ee0);
      border-radius: 3px;
    }
    
    /* Fixed related products slider */
    .products-slider {
      position: relative;
    }
    
    .products-slider.owl-carousel {
      display: block !important;
    }
    
    .products-slider .owl-stage-outer {
      padding: 10px 0;
    }
    
    .products-slider .owl-item {
      padding: 0 10px;
    }
    
    /* Related product cards */
    .product-default {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .product-default:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .product-default figure {
      position: relative;
      overflow: hidden;
      height: 220px;
      margin: 0;
    }
    
    .product-default figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .product-default:hover figure img {
      transform: scale(1.08);
    }
    
    /* NEW: Elegant Glass Quick View - Completely Unique Class */
    .elegant-glass-view {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4a6ee0;
      text-decoration: none;
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      z-index: 100;
      font-weight: 600;
    }
    
    .product-default:hover .elegant-glass-view {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    
    .elegant-glass-view:hover {
      background: rgba(255, 255, 255, 0.95);
      color: #ff6b6b;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      transform: translate(-50%, -50%) scale(1.1) !important;
    }
    
    .elegant-glass-view i {
      font-size: 22px;
    }
    
    .product-default .product-details {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .product-default .product-title {
      font-size: 14px;
      font-weight: 400;
      margin-bottom: 10px;
      padding-bottom: 0;
    }
    
    .product-default .product-title::after {
      display: none;
    }
    
    .product-default .product-title a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .product-default .product-title a:hover {
      color: #4a6ee0;
    }
    
    .product-default .price-box {
      margin-top: auto;
    }
    
    .product-default .product-price {
      font-size: 18px;
      font-weight: 800;
      color: #4a6ee0;
    }
    
    /* Breadcrumb styling */
    .breadcrumb-nav {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      padding: 15px 0;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .breadcrumb {
      background: transparent;
      padding: 0;
      margin: 0;
    }
    
    .breadcrumb-item a {
      color: #4a6ee0;
      text-decoration: none;
      font-weight: 500;
    }
    
    .breadcrumb-item.active {
      color: #6c757d;
    }
    
    /* Banner styling */
    .sale-banner {
      margin-bottom: 0 !important;
    }
    
    .banner-content {
      padding: 40px 0;
    }
    
    .banner-content h4 {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .banner-content h3 {
      font-size: 32px;
      color: white;
      font-weight: 800;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    /* Carousel navigation fixes */
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.9) !important;
      border-radius: 50%;
      color: #4a6ee0 !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .owl-carousel .owl-nav button.owl-prev:hover,
    .owl-carousel .owl-nav button.owl-next:hover {
      background: #4a6ee0 !important;
      color: white !important;
    }
    
    .dots-top .owl-dots {
      margin-top: 20px;
    }
    
    .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px;
      background: #ddd;
      transition: all 0.3s ease;
    }
    
    .owl-dots .owl-dot.active span {
      background: #4a6ee0;
      transform: scale(1.2);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .product-single-gallery,
      .product-single-details {
        padding: 20px;
      }
      
      .product-title {
        font-size: 26px;
      }
      
      .selected_price h2 {
        font-size: 28px;
      }
      
      .product-single-image {
        height: 300px;
      }
      
      .prod-thumbnail .owl-dot {
        width: 50px;
        height: 50px;
      }
      
      .elegant-glass-view {
        width: 50px;
        height: 50px;
      }
      
      .elegant-glass-view i {
        font-size: 18px;
      }
    }
    
    @media (max-width: 576px) {
      .product-single-container {
        border-radius: 12px;
      }
      
      .product-title {
        font-size: 22px;
      }
      
      .selected_price h2 {
        font-size: 24px;
      }
      
      .btn-dark.add-cart {
        padding: 14px 20px;
        font-size: 16px;
      }
      
      .products-slider .owl-item {
        padding: 0 5px;
      }
    }




    /* Modern Elegant Cart Styles */
    .modern-cart {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .modern-cart .main {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      min-height: 100vh;
    }
    
    /* Hero Banner */
    .modern-cart .cart-hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .modern-cart .cart-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
    }
    
    .modern-cart .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .modern-cart .hero-content h4 {
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    .modern-cart .hero-content h3 {
      color: white;
      font-size: 48px;
      font-weight: 800;
      margin: 0;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Breadcrumb */
    .modern-cart .breadcrumb-modern {
      background: transparent;
      padding: 25px 0;
    }
    
    .modern-cart .breadcrumb-modern .breadcrumb {
      background: transparent;
      margin: 0;
      padding: 0;
    }
    
    .modern-cart .breadcrumb-modern .breadcrumb-item a {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    
    .modern-cart .breadcrumb-modern .breadcrumb-item a:hover {
      color: #5a6fd8;
    }
    
    .modern-cart .breadcrumb-modern .breadcrumb-item.active {
      color: #718096;
    }
    
    /* Cart Layout */
    .modern-cart .cart-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 30px;
      margin-bottom: 100px;
    }
    
    /* Cart Items */
    .modern-cart .cart-items-container {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    
    .modern-cart .cart-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 25px 30px;
      color: white;
    }
    
    .modern-cart .cart-header h2 {
      margin: 0;
      font-size: 24px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .modern-cart .cart-header h2 i {
      font-size: 28px;
    }
    
    .modern-cart .cart-items {
      padding: 0;
    }
    
    .modern-cart .cart-item {
      display: grid;
      grid-template-columns: 80px 1fr auto auto auto;
      gap: 20px;
      align-items: center;
      padding: 25px 30px;
      border-bottom: 1px solid #e2e8f0;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .modern-cart .cart-item:hover {
      background: rgba(102, 126, 234, 0.03);
      transform: translateX(5px);
    }
    
    .modern-cart .cart-item:last-child {
      border-bottom: none;
    }
    
    .modern-cart .item-image {
      width: 80px;
      height: 80px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .modern-cart .item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .modern-cart .cart-item:hover .item-image img {
      transform: scale(1.1);
    }
    
    .modern-cart .item-details {
      padding-right: 20px;
    }
    
    .modern-cart .item-name {
      font-size: 18px;
      font-weight: 700;
      color: #2d3748;
      margin: 0 0 8px 0;
      line-height: 1.3;
    }
    
    .modern-cart .item-price {
      font-size: 20px;
      font-weight: 800;
      color: #667eea;
    }
    
    .modern-cart .item-quantity {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #f7fafc;
      padding: 8px 16px;
      border-radius: 10px;
      border: 1px solid #e2e8f0;
    }
    
    .modern-cart .quantity-value {
      font-size: 18px;
      font-weight: 700;
      color: #2d3748;
      min-width: 30px;
      text-align: center;
    }
    
    .modern-cart .item-total {
      font-size: 22px;
      font-weight: 800;
      color: #2d3748;
    }
    
    .modern-cart .item-remove {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(245, 101, 101, 0.1);
      color: #f56565;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(245, 101, 101, 0.2);
    }
    
    .modern-cart .item-remove:hover {
      background: #f56565;
      color: white;
      transform: scale(1.1);
    }
    
    /* Cart Actions */
    .modern-cart .cart-actions {
      padding: 30px;
      background: #f7fafc;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #e2e8f0;
    }
    
    .modern-cart .btn-modern {
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
    }
    
    .modern-cart .btn-continue {
      background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
      color: white;
      box-shadow: 0 6px 20px rgba(72, 187, 120, 0.3);
    }
    
    .modern-cart .btn-continue:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(72, 187, 120, 0.4);
    }
    
    .modern-cart .btn-clear {
      background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
      color: white;
      box-shadow: 0 6px 20px rgba(245, 101, 101, 0.3);
    }
    
    .modern-cart .btn-clear:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(245, 101, 101, 0.4);
    }
    
    /* Order Summary */
    .modern-cart .order-summary {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      padding: 30px;
      position: sticky;
      top: 30px;
      height: fit-content;
    }
    
    .modern-cart .summary-header {
      border-bottom: 2px solid #e2e8f0;
      padding-bottom: 20px;
      margin-bottom: 25px;
    }
    
    .modern-cart .summary-header h3 {
      font-size: 24px;
      font-weight: 800;
      color: #2d3748;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .modern-cart .summary-header h3 i {
      color: #667eea;
    }
    
    .modern-cart .summary-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f7fafc;
    }
    
    .modern-cart .summary-line:last-child {
      border-bottom: none;
    }
    
    .modern-cart .summary-label {
      font-size: 16px;
      color: #718096;
      font-weight: 600;
    }
    
    .modern-cart .summary-value {
      font-size: 18px;
      color: #2d3748;
      font-weight: 700;
    }
    
    .modern-cart .summary-total {
      border-top: 2px solid #e2e8f0;
      margin-top: 15px;
      padding-top: 20px;
    }
    
    .modern-cart .summary-total .summary-label {
      font-size: 20px;
      color: #2d3748;
      font-weight: 800;
    }
    
    .modern-cart .summary-total .summary-value {
      font-size: 28px;
      color: #667eea;
      font-weight: 800;
    }
    
    .modern-cart .checkout-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
      margin-top: 25px;
      position: relative;
      overflow: hidden;
    }
    
    .modern-cart .checkout-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }
    
    .modern-cart .checkout-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    }
    
    .modern-cart .checkout-btn:hover::before {
      left: 100%;
    }
    
    /* Empty State */
    .modern-cart .empty-cart {
      text-align: center;
      padding: 80px 30px;
    }
    
    .modern-cart .empty-cart i {
      font-size: 80px;
      color: #cbd5e0;
      margin-bottom: 20px;
    }
    
    .modern-cart .empty-cart h3 {
      font-size: 24px;
      color: #718096;
      margin-bottom: 15px;
    }
    
    .modern-cart .empty-cart p {
      color: #a0aec0;
      margin-bottom: 30px;
    }
    
    /* Discount Section */
    .modern-cart .discount-section {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-top: 30px;
    }
    
    .modern-cart .discount-section h4 {
      font-size: 20px;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 20px;
    }
    
    .modern-cart .discount-input-group {
      display: flex;
      gap: 10px;
    }
    
    .modern-cart .discount-input {
      flex: 1;
      padding: 15px 20px;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .modern-cart .discount-input:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .modern-cart .discount-btn {
      padding: 15px 25px;
      background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .modern-cart .discount-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(237, 137, 54, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
      .modern-cart .cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .modern-cart .order-summary {
        position: static;
      }
    }
    
    @media (max-width: 768px) {
      .modern-cart .cart-hero {
        padding: 60px 0;
      }
      
      .modern-cart .hero-content h3 {
        font-size: 36px;
      }
      
      .modern-cart .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
        padding: 20px;
      }
      
      .modern-cart .item-price,
      .modern-cart .item-quantity,
      .modern-cart .item-total,
      .modern-cart .item-remove {
        grid-column: 2;
        justify-self: start;
        margin-top: 10px;
      }
      
      .modern-cart .cart-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
      }
      
      .modern-cart .btn-modern {
        justify-content: center;
      }
    }
    
    @media (max-width: 480px) {
      .modern-cart .hero-content h3 {
        font-size: 28px;
      }
      
      .modern-cart .cart-header {
        padding: 20px;
      }
      
      .modern-cart .cart-header h2 {
        font-size: 20px;
      }
      
      .modern-cart .order-summary,
      .modern-cart .discount-section {
        padding: 20px;
      }
    }



 
    /* Modern Checkout Styles */
    .modern-checkout {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      min-height: 100vh;
    }
    
    /* Hero Banner */
    .modern-checkout .checkout-hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .modern-checkout .checkout-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
    }
    
    .modern-checkout .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .modern-checkout .hero-content h4 {
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    .modern-checkout .hero-content h3 {
      color: white;
      font-size: 48px;
      font-weight: 800;
      margin: 0;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Breadcrumb */
    .modern-checkout .breadcrumb-modern {
      background: transparent;
      padding: 25px 0;
    }
    
    .modern-checkout .breadcrumb-modern .breadcrumb {
      background: transparent;
      margin: 0;
      padding: 0;
    }
    
    .modern-checkout .breadcrumb-modern .breadcrumb-item a {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    
    .modern-checkout .breadcrumb-modern .breadcrumb-item a:hover {
      color: #5a6fd8;
    }
    
    .modern-checkout .breadcrumb-modern .breadcrumb-item.active {
      color: #718096;
    }
    
    /* Checkout Layout */
    .modern-checkout .checkout-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 100px;
    }
    
    /* Order Summary */
    .modern-checkout .order-summary-modern {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      padding: 30px;
      height: fit-content;
      position: sticky;
      top: 30px;
    }
    
    .modern-checkout .summary-header {
      border-bottom: 2px solid #e2e8f0;
      padding-bottom: 20px;
      margin-bottom: 25px;
    }
    
    .modern-checkout .summary-header h3 {
      font-size: 24px;
      font-weight: 800;
      color: #2d3748;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .modern-checkout .summary-header h3 i {
      color: #667eea;
    }
    
    .modern-checkout .products-count {
      background: rgba(102, 126, 234, 0.1);
      color: #667eea;
      padding: 8px 16px;
      border-radius: 10px;
      font-weight: 600;
      margin-bottom: 20px;
      display: inline-block;
    }
    
    .modern-checkout .cart-items-modern {
      margin-bottom: 25px;
    }
    
    .modern-checkout .cart-item-modern {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #f7fafc;
    }
    
    .modern-checkout .cart-item-modern:last-child {
      border-bottom: none;
    }
    
    .modern-checkout .item-image-modern {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .modern-checkout .item-image-modern img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .modern-checkout .item-details-modern {
      flex: 1;
    }
    
    .modern-checkout .item-name-modern {
      font-size: 16px;
      font-weight: 700;
      color: #2d3748;
      margin: 0 0 5px 0;
    }
    
    .modern-checkout .item-qty-modern {
      font-size: 14px;
      color: #718096;
      font-weight: 600;
    }
    
    .modern-checkout .item-price-modern {
      font-size: 18px;
      font-weight: 800;
      color: #667eea;
    }
    
    .modern-checkout .summary-total-modern {
      border-top: 2px solid #e2e8f0;
      padding-top: 20px;
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .modern-checkout .total-label {
      font-size: 20px;
      color: #2d3748;
      font-weight: 800;
    }
    
    .modern-checkout .total-value {
      font-size: 28px;
      color: #667eea;
      font-weight: 800;
    }
    
    /* Forms Styling */
    .modern-checkout .form-section {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-bottom: 30px;
    }
    
    .modern-checkout .section-title {
      font-size: 24px;
      font-weight: 800;
      color: #2d3748;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid #e2e8f0;
      position: relative;
    }
    
    .modern-checkout .section-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, #667eea, #764ba2);
    }
    
    .modern-checkout .form-group-modern {
      margin-bottom: 25px;
    }
    
    .modern-checkout .form-label {
      font-size: 16px;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 8px;
      display: block;
    }
    
    .modern-checkout .form-control-modern {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s ease;
      background: #f7fafc;
    }
    
    .modern-checkout .form-control-modern:focus {
      outline: none;
      border-color: #667eea;
      background: white;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .modern-checkout .select-modern {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      font-size: 16px;
      background: #f7fafc;
      transition: all 0.3s ease;
    }
    
    .modern-checkout .select-modern:focus {
      outline: none;
      border-color: #667eea;
      background: white;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    /* Payment Method Section */
    .modern-checkout .payment-methods {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
    }
    
    .modern-checkout .payment-method {
      flex: 1;
      text-align: center;
      padding: 15px;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .modern-checkout .payment-method:hover {
      border-color: #667eea;
      background: rgba(102, 126, 234, 0.05);
    }
    
    .modern-checkout .payment-method.active {
      border-color: #667eea;
      background: rgba(102, 126, 234, 0.1);
    }
    
    .modern-checkout .payment-icon {
      font-size: 32px;
      color: #667eea;
      margin-bottom: 8px;
    }
    
    .modern-checkout .payment-name {
      font-weight: 700;
      color: #2d3748;
    }
    
    /* Card Details Grid */
    .modern-checkout .card-details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    /* Terms Checkbox */
    .modern-checkout .terms-checkbox {
      background: rgba(102, 126, 234, 0.05);
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 20px;
      margin: 25px 0;
    }
    
    .modern-checkout .checkbox-modern {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    
    .modern-checkout .checkbox-modern input {
      margin-top: 4px;
      transform: scale(1.2);
    }
    
    .modern-checkout .checkbox-label {
      font-size: 14px;
      line-height: 1.6;
      color: #4a5568;
    }
    
    .modern-checkout .checkbox-label a {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
    }
    
    .modern-checkout .checkbox-label a:hover {
      text-decoration: underline;
    }
    
    /* Submit Button */
    .modern-checkout .submit-btn {
      width: 100%;
      padding: 20px;
      background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .modern-checkout .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }
    
    .modern-checkout .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(72, 187, 120, 0.4);
    }
    
    .modern-checkout .submit-btn:hover::before {
      left: 100%;
    }
    
    /* Security Badge */
    .modern-checkout .security-badge {
      text-align: center;
      margin-top: 20px;
      padding: 15px;
      background: rgba(102, 126, 234, 0.05);
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }
    
    .modern-checkout .security-badge i {
      font-size: 24px;
      color: #48bb78;
      margin-right: 8px;
    }
    
    .modern-checkout .security-text {
      font-size: 14px;
      color: #718096;
      font-weight: 600;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
      .modern-checkout .checkout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .modern-checkout .order-summary-modern {
        position: static;
      }
    }
    
    @media (max-width: 768px) {
      .modern-checkout .checkout-hero {
        padding: 60px 0;
      }
      
      .modern-checkout .hero-content h3 {
        font-size: 36px;
      }
      
      .modern-checkout .card-details-grid {
        grid-template-columns: 1fr;
      }
      
      .modern-checkout .payment-methods {
        flex-direction: column;
      }
    }
    
    @media (max-width: 480px) {
      .modern-checkout .hero-content h3 {
        font-size: 28px;
      }
      
      .modern-checkout .order-summary-modern,
      .modern-checkout .form-section {
        padding: 20px;
        border-radius: 12px;
      }
      
      .modern-checkout .section-title {
        font-size: 20px;
      }
    }
  


  


    /* Elegant Product Cards - Premium Design */
    .product-default {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
      position: relative;
      margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0, 0, 0, 0.05);
      height: 100%;
      min-height: 520px; /* Ensure consistent height */
    }
    
    .product-default:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(74, 110, 224, 0.1);
    }
    
    .product-default::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #4a6ee0, #8a6ee0, #4a6ee0);
      background-size: 200% 100%;
      z-index: 2;
      transition: background-position 0.8s ease;
    }
    
    .product-default:hover::before {
      background-position: 100% 0;
    }
    
    .product-default figure {
      position: relative;
      overflow: hidden;
      height: 320px; /* Optimized for 500x500 images */
      margin: 0;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px; /* Add padding to ensure image isn't cut off */
    }
    
  
    
    .product-default:hover figure::after {
      opacity: 1;
    }
    
    .product-default figure img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: all 0.7s ease;
      filter: brightness(0.98);
    }
    
    .product-default:hover figure img {
      transform: scale(1.05);
      filter: brightness(1.05);
    }
    
    .product-default .product-details {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
      position: relative;
    }
    
    .product-default .product-details::before {
      content: '';
      position: absolute;
      top: 0;
      left: 25px;
      right: 25px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(74, 110, 224, 0.2) 50%, transparent 100%);
    }
    
    .product-default .product-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;
      color: #2c3e50;
      position: relative;
      min-height: 0;
      display: flex;
      align-items: center;
      text-align: center;
    }
    
    .product-default .product-title a {
      color: #2c3e50;
      text-decoration: none;
      transition: all 0.3s ease;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .product-default .product-title a:hover {
      color: #4a6ee0;
    }
    
    .product-default .price-box {
      margin-bottom: 20px;
      position: relative;
      flex-shrink: 0;
      margin: 0;
    }
    
    .product-default .product-price {
      font-size: 24px;
      font-weight: 800;
      color: #4a6ee0;
      position: relative;
      display: inline-block;
    }
    
    .product-default .product-price::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #4a6ee0, #8a6ee0);
      transition: width 0.5s ease;
    }
    
    .product-default:hover .product-price::after {
      width: 100%;
    }
    
    .index-button {
      display: block;
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #4a6ee0 0%, #8a6ee0 100%);
      color: white;
      text-align: center;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 700;
      transition: all 0.4s ease;
      border: none;
      cursor: pointer;
      font-size: 16px;
      margin-top: auto;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(74, 110, 224, 0.3);
      flex-shrink: 0;
    }
    
    .index-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s ease;
    }
    
    .index-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(74, 110, 224, 0.4);
      background: linear-gradient(135deg, #3a5ecf 0%, #7a5ecf 100%);
    }
    
    .index-button:hover::before {
      left: 100%;
    }
    
    /* Add subtle floating animation */

  
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .product-default {
        min-height: 480px;
      }
      
      .product-default figure {
        height: 260px;
        padding: 15px;
      }
      
      .product-default .product-details {
        padding: 20px;
      }
      
      .product-default .product-title {
        font-size: 16px;
        min-height: 45px;
      }
    }
    
    @media (max-width: 576px) {
      .product-default {
        border-radius: 16px;
        min-height: 440px;
      }
      
      .product-default figure {
        height: 220px;
        padding: 10px;
      }
      
      .product-default .product-title {
        font-size: 15px;
        min-height: 40px;
      }
      
      .product-default .product-price {
        font-size: 20px;
      }
      
      .index-button {
        padding: 14px;
        font-size: 15px;
      }
    }




        /* Reset only for our banner elements */
        .befit-banner-reset * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Nunito", system-ui;
        }
        
        .befit-banner {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            display: flex;
            align-items: center;
            padding: 2rem 0;
            overflow: hidden;
        }
        
        .befit-banner .befit-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            z-index: 2;
            position: relative;
        }
        
        .befit-banner .befit-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .befit-banner .befit-col-7 {
            flex: 0 0 58.333333%;
            max-width: 58.333333%;
            padding: 0 15px;
        }
        
        .befit-banner .befit-col-5 {
            flex: 0 0 41.666667%;
            max-width: 41.666667%;
            padding: 0 15px;
        }
        
        .befit-banner .befit-content {
            color: #333;
            position: relative;
            z-index: 2;
            animation: befit-fadeInUp 1s ease-out;
        }
        
        .befit-banner .befit-badge {
            display: inline-block;
            background: linear-gradient(45deg, #ff7e5f, #feb47b);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px; /* Changed from rem to px */
            font-weight: 600;
            margin-bottom: 24px; /* Changed from rem to px */
            box-shadow: 0 4px 10px rgba(255, 126, 95, 0.3);
        }
        
        .befit-banner .befit-content h2 {
            font-size: 19px; /* Changed from rem to px */
            font-weight: 600;
            color: #ff7e5f;
            margin-bottom: 8px; /* Changed from rem to px */
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .befit-banner .befit-content h3 {
            font-size: 46px; /* Changed from rem to px */
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px; /* Changed from rem to px */
            color: #2c3e50;
        }
        
        .befit-banner .befit-content h3 span {
            color: #ff7e5f;
            position: relative;
        }
        
        .befit-banner .befit-content h3 span:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(255, 126, 95, 0.2);
            z-index: -1;
        }
        
        .befit-banner .befit-content p {
            font-size: 19px; /* Changed from rem to px */
            line-height: 1.6;
            margin-bottom: 20px; /* Changed from rem to px */
            max-width: 90%;
            color: #5a5a7a;
        }
        
        .befit-banner .befit-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(45deg, #ff7e5f, #feb47b);
            color: white;
            padding: 16px 40px;
            font-size: 18px; /* Changed from rem to px */
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            margin-top:20px;
        }
        
        .befit-banner .befit-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 126, 95, 0.4);
        }
        
        .befit-banner .befit-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
            font-size: 18px; /* Added fixed size */
        }
        
        .befit-banner .befit-button:hover i {
            transform: translateX(5px);
        }
        
        .befit-banner .befit-pet-container {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .befit-banner .befit-pet-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
            border: 8px solid white;
        }
        
        .befit-banner .befit-pet-image:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }
        
        .befit-banner .befit-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .befit-banner .befit-floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(255, 126, 95, 0.1), rgba(254, 180, 123, 0.1));
            animation: befit-float 8s infinite ease-in-out;
        }
        
        .befit-banner .befit-floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .befit-banner .befit-floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 10%;
            animation-delay: 1s;
        }
        
        .befit-banner .befit-floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .befit-banner .befit-floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 60%;
            right: 5%;
            animation-delay: 3s;
        }
        
        .befit-banner .befit-benefits {
            display: flex;
            margin-top: 20px; /* Changed from rem to px */
            gap: 24px; /* Changed from rem to px */
        }
        
        .befit-banner .befit-benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.7);
            padding: 10px 15px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .befit-banner .befit-benefit-item i {
            color: #ff7e5f;
            font-size: 20px; /* Changed from rem to px - larger size */
            width: 20px;
            text-align: center;
            display: inline-block;
        }
        
        .befit-banner .befit-benefit-item span {
            font-size: 15px; /* Changed from rem to px */
            font-weight: 500;
            color: #5a5a7a;
        }
        
        .befit-banner .befit-paw-prints {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            opacity: 0.1;
        }
        
        .befit-banner .befit-paw {
            position: absolute;
            font-size: 24px;
            color: #ff7e5f;
            animation: befit-pawMove 15s linear infinite;
        }
        
        .befit-banner .befit-paw:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .befit-banner .befit-paw:nth-child(2) {
            top: 65%;
            left: 15%;
            animation-delay: 3s;
        }
        
        .befit-banner .befit-paw:nth-child(3) {
            top: 25%;
            right: 15%;
            animation-delay: 6s;
        }
        
        .befit-banner .befit-paw:nth-child(4) {
            top: 75%;
            right: 10%;
            animation-delay: 9s;
        }
        
        .befit-banner .befit-paw:nth-child(5) {
            top: 45%;
            left: 5%;
            animation-delay: 12s;
        }
        
        /* Ensure Font Awesome icons are properly sized */
        .befit-banner .fas, 
        .befit-banner .fa-solid,
        .befit-banner .fa-paw,
        .befit-banner .fa-check-circle,
        .befit-banner .fa-arrow-right {
            font-size: inherit !important;
            line-height: 1;
        }
        
        /* Force Font Awesome font family */
        .befit-banner .fas, 
        .befit-banner .fa-solid {
            font-family: 'Font Awesome 6 Free' !important;
            font-weight: 900;
        }
        
        @keyframes befit-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes befit-float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes befit-pawMove {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            50% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        @media (max-width: 992px) {
            .befit-banner .befit-col-7, .befit-banner .befit-col-5 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .befit-banner .befit-content {
                text-align: center;
                margin-bottom: 48px; /* Changed from rem to px */
            }
            
            .befit-banner .befit-content h3 {
                font-size: 40px; /* Changed from rem to px */
            }
            
            .befit-banner .befit-content p {
                max-width: 100%;
            }
            
            .befit-banner .befit-pet-container {
                height: 400px;
            }
            
            .befit-banner .befit-pet-image {
                max-width: 400px;
                transform: none;
            }
            
            .befit-banner .befit-benefits {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .befit-banner .befit-content h3 {
                font-size: 32px; /* Changed from rem to px */
            }
            
            .befit-banner .befit-pet-container {
                height: 300px;
            }
            
            .befit-banner .befit-pet-image {
                max-width: 300px;
            }
            
            .befit-banner .befit-benefits {
                flex-direction: column;
                align-items: center;
                gap: 16px; /* Changed from rem to px */
            }
            
            .befit-banner .befit-benefit-item i {
                font-size: 18px; /* Adjusted for mobile */
            }
        }
