
  /* 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; }
  
  
    /* Fresh Design - Completely New Classes to Avoid Conflicts */
    .fresh-main {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #4a5568;
      overflow-x: hidden;
      background: #f7fafc;
      font-size: 16px; /* Base font size in pixels */
    }
    
       .menu-text {
    display: inline-block;
    margin-top: 12px;
}

    /* Fresh Navigation */
    .fresh-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      padding: 16px 0; /* 1rem -> 16px */
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .fresh-nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px; /* 1.5rem -> 24px */
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .fresh-logo {
      font-size: 28px; /* 1.75rem -> 28px */
      font-weight: 700;
      color: #2d3748;
      display: flex;
      align-items: center;
    }
    
    .fresh-logo-icon {
      color: #4299e1;
      margin-right: 8px; /* 0.5rem -> 8px */
      font-size: 24px; /* 1.5rem -> 24px */
    }
    
    .fresh-nav-menu {
      display: flex;
      list-style: none;
      gap: 32px; /* 2rem -> 32px */
    }
    
    .fresh-nav-link {
      text-decoration: none;
      color: #4a5568;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      font-size: 16px;
    }
    
    .fresh-nav-link:hover {
      color: #4299e1;
    }
    
    .fresh-nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #4299e1;
      transition: width 0.3s ease;
    }
    
    .fresh-nav-link:hover::after {
      width: 100%;
    }
    
    /* Fresh Hero Section */
    .fresh-hero {
      margin-top: 0;
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
      position: relative;
      overflow: hidden;
    }
    
    .fresh-hero-content {
      /* padding: 64px; */ /* 4rem -> 64px */
      /* max-width: 600px; */
    }
    
    .fresh-hero-badge {
      display: inline-block;
      background: #089095;
      color: white;
      padding: 8px 24px; /* 0.5rem 1.5rem -> 8px 24px */
      border-radius: 50px;
      font-size: 14px; /* 0.875rem -> 14px */
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px; /* 1.5rem -> 24px */
    }
    
    .fresh-hero-title {
      font-size: 56px; /* 3.5rem -> 56px */
      font-weight: 800;
      margin-bottom: 24px; /* 1.5rem -> 24px */
      line-height: 1.1;
      color: #2d3748;
    }
    
    .fresh-hero-subtitle {
      font-size: 24px; /* 1.5rem -> 24px */
      margin-bottom: 24px; /* 1.5rem -> 24px */
      color: #4a5568;
    }
    
    .fresh-hero-description {
      font-size: 18px; /* 1.125rem -> 18px */
      margin-bottom: 32px; /* 2rem -> 32px */
      color: #718096;
      line-height: 1.7;
    }
    
    .fresh-hero-features {
      display: flex;
      flex-direction: column;
      gap: 16px; /* 1rem -> 16px */
      margin-bottom: 40px; /* 2.5rem -> 40px */
    }
    
    .fresh-hero-feature {
      display: flex;
      align-items: center;
      gap: 12px; /* 0.75rem -> 12px */
      font-size: 18px; /* 1.125rem -> 18px */
    }
    
    .fresh-hero-feature i {
      color: #4299e1;
      font-size: 20px; /* 1.25rem -> 20px */
    }
    
    .fresh-hero-cta {
      display: inline-block;
      background: #4299e1;
      color: white;
      padding: 16px 40px; /* 1rem 2.5rem -> 16px 40px */
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px; /* 1.125rem -> 18px */
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(66, 153, 225, 0.3);
    }
    
    .fresh-hero-cta:hover {
      background: #3182ce;
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
    }
    
    .fresh-hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px; /* 2rem -> 32px */
    }
    
    .fresh-hero-image {
      width: 100%;
      /* max-width: 500px; */
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s ease;
    }
    
    .fresh-hero-image:hover {
      transform: scale(1.03);
    }
    
    .fresh-hero-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }
    
    .fresh-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.1;
    }
    
    .fresh-shape-1 {
      width: 150px;
      height: 150px;
      background: #4299e1;
      top: 10%;
      left: 10%;
      animation: float 8s ease-in-out infinite;
    }
    
    .fresh-shape-2 {
      width: 100px;
      height: 100px;
      background: #48bb78;
      bottom: 20%;
      right: 15%;
      animation: float 6s ease-in-out infinite reverse;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    /* Fresh Section Styles */
    .fresh-section {
      padding: 96px 0; /* 6rem -> 96px */
    }
    
    .fresh-section-light {
      background: white;
    }
    
    .fresh-section-gray {
      background: #f7fafc;
    }
    
    .fresh-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px; /* 1.5rem -> 24px */
    }
    
    .fresh-section-header {
      text-align: center;
      margin-bottom: 64px; /* 4rem -> 64px */
    }
    
    .fresh-section-label {
      display: inline-block;
      background: #089095;
      color: white;
      padding: 8px 24px; /* 0.5rem 1.5rem -> 8px 24px */
      border-radius: 50px;
      font-size: 14px; /* 0.875rem -> 14px */
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px; /* 1rem -> 16px */
    }
    
    .fresh-section-title {
      font-size: 40px; /* 2.5rem -> 40px */
      font-weight: 800;
      margin-bottom: 16px; /* 1rem -> 16px */
      color: #089095;
    }
    
    .fresh-section-subtitle {
      font-size: 20px; /* 1.25rem -> 20px */
      color: #718096;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Fresh Journey */
    .fresh-journey {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px; /* 2rem -> 32px */
      margin-top: 48px; /* 3rem -> 48px */
    }
    
    .fresh-journey-item {
      background: white;
      border-radius: 12px;
      padding: 40px 32px; /* 2.5rem 2rem -> 40px 32px */
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .fresh-journey-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #4299e1, #48bb78);
    }
    
    .fresh-journey-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .fresh-journey-icon {
      width: 80px;
      height: 80px;
      background: rgba(66, 153, 225, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px; /* 1.5rem -> 24px */
      font-size: 32px; /* 2rem -> 32px */
      color: #4299e1;
    }
    
    .fresh-journey-title {
      font-size: 24px; /* 1.5rem -> 24px */
      font-weight: 700;
      margin-bottom: 16px; /* 1rem -> 16px */
      color: #2d3748;
    }
    
    .fresh-journey-description {
      color: #718096;
      line-height: 1.6;
      font-size: 16px;
    }
    
    /* Fresh Benefits */
    .fresh-benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px; /* 2rem -> 32px */
      margin-top: 48px; /* 3rem -> 48px */
    }
    
    .fresh-benefit-card {
      background: white;
      border-radius: 12px;
      padding: 40px 32px; /* 2.5rem 2rem -> 40px 32px */
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .fresh-benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .fresh-benefit-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #4299e1, #48bb78);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px; /* 1.5rem -> 24px */
      font-size: 32px; /* 2rem -> 32px */
      color: white;
    }
    
    .fresh-benefit-title {
      font-size: 24px; /* 1.5rem -> 24px */
      font-weight: 700;
      margin-bottom: 16px; /* 1rem -> 16px */
      color: #2d3748;
    }
    
    .fresh-benefit-description {
      color: #718096;
      line-height: 1.6;
      font-size: 16px;
    }
    
    /* Fresh Features */
    .fresh-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px; /* 4rem -> 64px */
      align-items: center;
      margin-top: 48px; /* 3rem -> 48px */
    }
    
    .fresh-features-visual {
      position: relative;
    }
    
    .fresh-features-image {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .fresh-features-content {
      display: flex;
      flex-direction: column;
      gap: 32px; /* 2rem -> 32px */
    }
    
    .fresh-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 24px; /* 1.5rem -> 24px */
      padding: 24px; /* 1.5rem -> 24px */
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .fresh-feature-item:hover {
      transform: translateX(5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .fresh-feature-icon {
      width: 60px;
      height: 60px;
      background: rgba(66, 153, 225, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4299e1;
      font-size: 24px; /* 1.5rem -> 24px */
      flex-shrink: 0;
    }
    
    .fresh-feature-text h4 {
      font-size: 20px; /* 1.25rem -> 20px */
      margin-bottom: 8px; /* 0.5rem -> 8px */
      color: #2d3748;
    }
    
    .fresh-feature-text p {
      color: #718096;
      line-height: 1.6;
      font-size: 16px;
    }
    
    /* Fresh Specialty */
    .fresh-specialty-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px; /* 2rem -> 32px */
      margin-top: 48px; /* 3rem -> 48px */
    }
    
    .fresh-specialty-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .fresh-specialty-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .fresh-specialty-image {
      height: 200px;
      overflow: hidden;
    }
    
    .fresh-specialty-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .fresh-specialty-card:hover .fresh-specialty-image img {
      transform: scale(1.1);
    }
    
    .fresh-specialty-content {
      padding: 24px; /* 1.5rem -> 24px */
    }
    
    .fresh-specialty-title {
      font-size: 20px; /* 1.25rem -> 20px */
      font-weight: 700;
      margin-bottom: 12px; /* 0.75rem -> 12px */
      color: #2d3748;
    }
    
    .fresh-specialty-description {
      color: #718096;
      line-height: 1.6;
      font-size: 16px;
    }
    
    /* Fresh Products Section */
    .fresh-products {
      padding: 96px 0; /* 6rem -> 96px */
      background: linear-gradient(135deg, #089095 0%, #089095 100%);
      color: white;
    }
    
    .fresh-products-header {
      text-align: center;
      margin-bottom: 64px; /* 4rem -> 64px */
    }
    
    .fresh-products-label {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 8px 24px; /* 0.5rem 1.5rem -> 8px 24px */
      border-radius: 50px;
      font-size: 14px; /* 0.875rem -> 14px */
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px; /* 1rem -> 16px */
    }
    
    .fresh-products-title {
      font-size: 40px; /* 2.5rem -> 40px */
      font-weight: 800;
      margin-bottom: 16px; /* 1rem -> 16px */
    }
    
    .fresh-products-subtitle {
      font-size: 20px; /* 1.25rem -> 20px */
      opacity: 0.9;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .fresh-hero {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .fresh-hero-content {
        padding: 32px; /* 2rem -> 32px */
      }
      
      .fresh-hero-title {
        font-size: 40px; /* 2.5rem -> 40px */
      }
      
      .fresh-journey,
      .fresh-benefits-grid,
      .fresh-specialty-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .fresh-features {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .fresh-nav-menu {
        display: none;
      }
      
      .fresh-hero-title {
        font-size: 32px; /* 2rem -> 32px */
      }
      
      .fresh-section-title {
        font-size: 32px; /* 2rem -> 32px */
      }
      
      .fresh-products-title {
        font-size: 32px; /* 2rem -> 32px */
      }
      
      .fresh-journey,
      .fresh-benefits-grid,
      .fresh-specialty-grid {
        grid-template-columns: 1fr;
      }
    }
 
  /* 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 */
            }
        }




   /* Footer Styles */
        .footer-modern {
            position: relative;
            overflow: hidden;
            background: #033234;
            color: #fff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4a6ee0, #8a6ee0, #4a6ee0);
            background-size: 200% 100%;
            animation: gradientMove 8s ease infinite;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .footer-widget {
            position: relative;
            padding: 25px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            height: 100%;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .footer-widget:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .icon-box {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #4a6ee0, #8a6ee0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .widget-title {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin: 0;
            color: #fff;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
            display: flex;
        }
        
        .footer-link:hover {
            color: #f2bc0e !important;
            transform: translateX(5px);
            text-decoration: none;
        }
        
        .footer-link i {
            /* margin-right: 8px; */
            width: 16px;
        }
        
        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
        }
        
        .contact-list li:hover {
            transform: translateX(5px);
        }
        
        .contact-list i {
            color: #4a6ee0;
            margin-right: 12px;
            margin-top: 3px;
            font-size: 16px;
        }
        
        .contact-list strong {
            color: #fff;
            display: block;
            margin-bottom: 3px;
        }
        
        .contact-list span {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
        }
        
        .disclaimer-text {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            line-height: 1.6;
        }
        
        .footer-bottom {
            background: #0c253a;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            text-align: center;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-widget {
                margin-bottom: 20px;
            }
            
            .icon-box {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .widget-title {
                font-size: 18px;
            }
        }




.button-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .button-style {
            padding: 30px;
            background: #f8fafc;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .button-style:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .button-title {
            font-size: 20px;
            margin-bottom: 20px;
            color: #2d3748;
        }
        
        .button-desc {
            color: #718096;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        /* FRESH BUTTON STYLES - No BS Conflict */
        .fresh-btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
            text-align: center;
            min-width: 180px;
        }
        
        /* Style 9: Glow Button */
        .fresh-btn-glow {
            background: #4299e1;
            color: white;
            box-shadow: 0 0 10px rgba(66, 153, 225, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .fresh-btn-glow:hover {
            background: #3182ce;
            box-shadow: 0 0 20px rgba(66, 153, 225, 0.8);
            transform: translateY(-3px);
        }
        
        /* Style 10: 3D Button */
        .fresh-btn-3d {
            background: #4299e1;
            color: white;
            border-radius: 8px;
            box-shadow: 0 6px 0 #2b6cb0, 0 8px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.1s ease;
            position: relative;
        }
        
        .fresh-btn-3d:hover {
            transform: translateY(2px);
            box-shadow: 0 4px 0 #2b6cb0, 0 6px 8px rgba(0, 0, 0, 0.2);
        }
        
        .fresh-btn-3d:active {
            transform: translateY(6px);
            box-shadow: 0 0 0 #2b6cb0, 0 0 5px rgba(0, 0, 0, 0.2);
        }
        
        /* Style 11: Slide Button */
        .fresh-btn-slide {
            background: #fff;
            color: #4299e1;
            border: 2px solid #4299e1;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            margin-top: 0px;
        }
        
        .fresh-btn-slide:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #4299e1;
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .fresh-btn-slide:hover {
            color: white!important;
            text-decoration: none;
        }
        
        .fresh-btn-slide:hover:before {
            width: 100%;
        }
        
        /* Style 12: Pulse Button */
        .fresh-btn-pulse {
            background: #4299e1;
            color: white;
            box-shadow: 0 4px 6px rgba(66, 153, 225, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(66, 153, 225, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(66, 153, 225, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(66, 153, 225, 0);
            }
        }
        
        .fresh-btn-pulse:hover {
            animation: none;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
        }
        
        /* Style 13: Split Button */
        .fresh-btn-split {
            background: #4299e1;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .fresh-btn-split:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-100%) rotate(45deg);
            transition: transform 0.5s ease;
        }
        
        .fresh-btn-split:hover:before {
            transform: translateX(100%) rotate(45deg);
        }
        
        .fresh-btn-split:hover {
            background: #3182ce;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
        }
        
        /* Style 14: Border Animation Button */
        .fresh-btn-border-anim {
            background: transparent;
            color: #4299e1;
            border: 2px solid transparent;
            position: relative;
        }
        
        .fresh-btn-border-anim:before,
        .fresh-btn-border-anim:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #4299e1;
            transition: all 0.3s ease;
        }
        
        .fresh-btn-border-anim:before {
            top: 0;
            left: 0;
        }
        
        .fresh-btn-border-anim:after {
            bottom: 0;
            right: 0;
        }
        
        .fresh-btn-border-anim:hover:before,
        .fresh-btn-border-anim:hover:after {
            width: 100%;
        }
        
        .fresh-btn-border-anim span:before,
        .fresh-btn-border-anim span:after {
            content: '';
            position: absolute;
            width: 2px;
            height: 0;
            background: #4299e1;
            transition: all 0.3s ease;
        }
        
        .fresh-btn-border-anim span:before {
            top: 0;
            left: 0;
        }
        
        .fresh-btn-border-anim span:after {
            bottom: 0;
            right: 0;
        }
        
        .fresh-btn-border-anim:hover span:before,
        .fresh-btn-border-anim:hover span:after {
            height: 100%;
        }
        
        /* Style 15: Shimmer Button */
        .fresh-btn-shimmer {
            background: #4299e1;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .fresh-btn-shimmer:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .fresh-btn-shimmer:hover:before {
            left: 100%;
        }
        
        .fresh-btn-shimmer:hover {
            background: #3182ce;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
        }
        
        /* Style 16: Morph Button */
        .fresh-btn-morph {
            background: #4299e1;
            color: white;
            border-radius: 8px;
            transition: all 0.5s ease;
        }
        
        .fresh-btn-morph:hover {
            border-radius: 30px;
            background: #3182ce;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
        }
        
        /* Style 17: Flip Button */
        .fresh-btn-flip {
            background: #4299e1;
            color: white;
            perspective: 1000px;
        }
        
        .fresh-btn-flip:hover {
            transform: rotateY(15deg);
            background: #3182ce;
            box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
        }
        
        /* Usage Examples */
        .usage-examples {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .example {
            background: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
        }
        
        .example-title {
            font-size: 18px;
            margin-bottom: 20px;
            color: #2d3748;
        }
        
        .example-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        footer {
            text-align: center;
            margin-top: 60px;
            color: #718096;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .button-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 32px;
            }
        }


.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.contact-list li i {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: #4a6ee0;
  font-size: 16px;
  margin-top: 0; /* prevents vertical misalignment */
  padding-top: 6px;
}

.contact-list li div {
  /* display: flex; */
  /* flex-wrap: nowrap; */
  /* align-items: center; */
  /* gap: 6px; */
  /* flex: 1; */
  text-align: left;
}

.contact-list strong,
.contact-list span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}



       

        .fresh-hero {
    background: url('../images/hero.png') center center / cover no-repeat;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

        .fresh-hero-badge {
            /* display: inline-flex; */
            /* align-items: center; */
            /* background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); */
            /* color: white; */
            /* padding: 8px 18px; */
            /* border-radius: 50px; */
            /* font-size: 14px; */
            /* font-weight: 600; */
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .fresh-hero-badge i {
            margin-right: 8px;
            font-size: 16px;
        }

        .fresh-hero-title {
            font-size: 42px;
            font-weight: 800;
            color: #089095;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .fresh-hero-subtitle {
            font-size: 22px;
            font-weight: 600;
            color: #074e50;
            margin-bottom: 20px;
        }

        .fresh-hero-description {
            font-size: 16px;
            line-height: 1.6;
            color: #455a64;
            margin-bottom: 25px;
        }

        .fresh-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

        .fresh-hero-feature {
            /* display: flex; */
            /* align-items: center; */
            /* font-size: 15px; */
            color: #fff;
            background: #089095;
            padding: 8px 16px;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            width: 49%;
        }

        .fresh-hero-feature i {
            color: #fff;
            margin-right: 8px;
            font-size: 16px;
        }

        .fresh-btn {
            /* display: inline-flex; */
            /* align-items: center; */
            /* background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); */
            /* color: white; */
            /* padding: 12px 28px; */
            /* border-radius: 50px; */
            /* text-decoration: none; */
            /* font-weight: 600; */
            /* font-size: 16px; */
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .fresh-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
            color: white;
        }

        .fresh-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .fresh-btn:hover i {
            transform: translateX(5px);
        }

        .fresh-hero-image {
            width: 100%;
            max-width: 450px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border: 8px solid white;
            animation: imageFloat 6s ease-in-out infinite;
        }

        @keyframes imageFloat {
            0% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.02); }
            100% { transform: translateY(0) scale(1); }
        }

        .paw-pattern {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234caf50'%3E%3Cpath d='M12 2c-2.21 0-4 1.79-4 4 0 1.06.41 2.02 1.09 2.75L12 12l2.91-3.25C15.59 8.02 16 7.06 16 6c0-2.21-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-7 5c-2.21 0-4 1.79-4 4 0 1.06.41 2.02 1.09 2.75L5 21l2.91-3.25C8.59 17.02 9 16.06 9 15c0-2.21-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm14-6c-2.21 0-4 1.79-4 4 0 1.06.41 2.02 1.09 2.75L19 21l2.91-3.25C22.59 17.02 23 16.06 23 15c0-2.21-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-7-3c-2.21 0-4 1.79-4 4 0 1.06.41 2.02 1.09 2.75L12 18l2.91-3.25C15.59 14.02 16 13.06 16 12c0-2.21-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E");
            background-size: 30px 30px;
            background-repeat: repeat;
            transform: rotate(45deg);
        }

        @media (max-width: 992px) {
            .fresh-hero {
                /* background: 
                    linear-gradient(0deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 70%, transparent 100%),
                    url('https://html.themehour.net/babet/assets/img/hero-home-bg-img.png') center/cover no-repeat; */
                text-align: center;
                /* padding: 60px 0; */
            }

            .fresh-hero-title {
                font-size: 36px;
            }

            .fresh-hero-subtitle {
                font-size: 20px;
            }

            .fresh-hero-features {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .fresh-hero-title {
                font-size: 32px;
            }

            .fresh-hero-subtitle {
                font-size: 18px;
            }

            .fresh-hero-description {
                font-size: 15px;
            }
            
            .fresh-hero-badge {
                font-size: 13px;
                padding: 6px 14px;
            }
            
            .fresh-hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .fresh-hero-feature {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
        }
    

    

    .footer-widget {
    position: relative;
    padding: 25px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.footer-widget:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.icon-box {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4a6ee0, #8a6ee0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    color: #fff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    display: flex;
}

.footer-link:hover {
    color: #f2bc0e !important;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-link i {
    width: 16px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    /* align-items: center!important; */
    transition: all 0.3s ease;
}

.contact-list li:hover {
    transform: translateX(5px);
}

.contact-list i {
    color: #4a6ee0;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
}

.contact-list strong {
    color: #fff;
    display: block;
    margin-bottom: 3px;
}

.contact-list span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.footer-bottom {
    background: #0c253a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 20px;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .widget-title {
        font-size: 18px;
    }
}