 :root {
      --primary: #f8f4f0;
      --accent: #d4af37;
      --accent-light: #e8d9b0;
      --text: #3a3a3a;
      --text-light: #7a7a7a;
      --white: #ffffff;
      --soft-beige: #f5f0e1;
      --soft-nude: #f7e9d7;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
      --radius: 16px;
      --gold-gradient: linear-gradient(135deg, #d4af37, #bf953f);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Fluid media: auto-resize across breakpoints */
    img, video, svg, canvas {
      max-width: 100%;
      height: auto;
      display: block;
    }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background-color: var(--primary);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Navigation - Professional Design like FOTO OWL */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 5%;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 0.6rem 5%;
      background: var(--white);
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    }

    .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-text {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  white-space: nowrap;
}

.logo-part-1 {
  color: var(--text);
  position: relative;
}

.logo-part-2 {
  color: var(--accent);
  margin-left: 2px;
}


    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links li a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      font-size: 0.95rem;
      font-family: 'Montserrat', sans-serif;
      transition: var(--transition);
      padding: 0.5rem 0;
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.5rem 1rem;
      border-radius: 8px;
    }

    .nav-links li a:hover {
      color: var(--accent);
      background: rgba(212, 175, 55, 0.1);
    }

    .nav-links li a i {
      font-size: 0.8rem;
      transition: var(--transition);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Profile Dropdown Styles */
    .profile-dropdown {
      position: relative;
    }

    .profile-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--transition);
      color: var(--text);
      font-weight: 500;
      font-size: 0.9rem;
    }

    .profile-btn:hover {
      background: rgba(212, 175, 55, 0.1);
      color: var(--accent);
    }

    .profile-btn i {
      font-size: 1.1rem;
    }

    .profile-btn .fa-chevron-down {
      font-size: 0.8rem;
      transition: var(--transition);
    }

    .profile-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1001;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .profile-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .profile-header {
      padding: 1rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text);
      font-weight: 600;
      font-size: 0.9rem;
    }

    .profile-header i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    .profile-menu-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1rem;
      text-decoration: none;
      color: var(--text);
      transition: var(--transition);
      border: none;
      background: transparent;
      width: 100%;
      text-align: left;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .profile-menu-item:hover {
      background: rgba(212, 175, 55, 0.1);
      color: var(--accent);
    }

    .profile-menu-item i {
      width: 16px;
      text-align: center;
    }

    .logout-item {
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      color: #dc3545;
    }

    .logout-item:hover {
      background: rgba(220, 53, 69, 0.1);
      color: #dc3545;
    }

    .login-btn {
      background: var(--accent);
      color: var(--text);
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      font-family: 'Montserrat', sans-serif;
      transition: var(--transition);
      box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    }

    .login-btn:hover {
      background: #bf953f;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .user-welcome {
      color: var(--text);
      font-weight: 500;
      margin-right: 0.5rem;
      font-size: 0.9rem;
    }

    .logout-btn {
      background: linear-gradient(135deg, var(--accent), #bf953f);
      color: var(--white);
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      position: relative;
      overflow: hidden;
    }

    .logout-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .logout-btn:hover::before {
      left: 100%;
    }

    .logout-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

    .nav-toggle {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--text);
      z-index: 1002;
    }

    /* Mobile Menu - Slide from right */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background: var(--white);
      z-index: 1001;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      padding: 5rem 2rem;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu .close-menu {
      position: absolute;
      top: 25px;
      right: 25px;
      font-size: 1.8rem;
      color: var(--text);
      background: none;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      padding: 10px;
    }

    .mobile-menu .close-menu:hover {
      color: var(--accent);
      transform: rotate(90deg);
    }

    .mobile-menu ul {
      list-style: none;
      margin-top: 2rem;
    }

    .mobile-menu ul li {
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding-bottom: 1rem;
    }

    .mobile-menu ul li:last-child {
      border-bottom: none;
    }

    .mobile-menu ul li a {
      text-decoration: none;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition);
      padding: 0.8rem 0;
    }

    .mobile-login-btn {
      background: var(--accent);
      color: var(--text);
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      margin-top: 1rem;
      text-align: center;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    }

    .mobile-menu ul li a i {
      width: 25px;
      color: var(--accent);
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .mobile-menu ul li a:hover {
      color: var(--accent);
      padding-left: 10px;
    }
    
    .mobile-menu ul li a:hover i {
      transform: scale(1.2);
    }

    /* Mobile Profile Section */
    .mobile-profile-section {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 1rem;
    }

    .mobile-profile-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem;
      color: var(--white);
      font-weight: 600;
      font-size: 1rem;
    }

    .mobile-profile-header i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    .mobile-logout-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      width: 100%;
      padding: 1rem;
      background: transparent;
      border: none;
      color: var(--white);
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      text-align: left;
    }

    .mobile-logout-btn:hover {
      background: rgba(220, 53, 69, 0.2);
      color: #ff6b6b;
    }

    .mobile-logout-btn i {
      color: #ff6b6b;
      width: 16px;
      text-align: center;
    }

    .cta-btn {
      display: inline-block;
      padding: 0.9rem 2.2rem;
      background: var(--gold-gradient);
      color: var(--white);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow);
      font-size: 1rem;
      letter-spacing: 0.5px;
      font-family: 'Montserrat', sans-serif;
      position: relative;
      overflow: hidden;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .cta-btn:hover::before {
      transform: translateX(100%);
    }

    /* Hero Carousel Section - Modern & Interactive Design */
    .hero-carousel {
      position: relative;
      height: calc(100vh); /* Reduced height for better alignment */
      min-height: 500px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--soft-nude) 0%, var(--primary) 50%, var(--accent-light) 100%);
      margin-top: 90px; /* Add margin to account for fixed navbar */
    }

    .carousel-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      display: flex;
      align-items: center;
    }

    .carousel-slide.active {
      opacity: 1;
    }

    .slide-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      gap: 2rem;
    }

    .slide-content {
      max-width: 500px;
      position: relative;
      z-index: 2;
      color: var(--text);
      animation: fadeInUp 1s ease-out;
      flex-shrink: 0;
    }

    /* Ensure all slides use consistent text colors */
    .carousel-slide .hero-title-main {
      color: var(--text);
    }

    .carousel-slide .hero-title-accent {
      color: var(--accent);
      background: linear-gradient(135deg, var(--accent), #bf953f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .carousel-slide .hero-description {
      color: var(--text-light);
    }

    .carousel-slide .hero-description strong {
      color: var(--accent);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--accent), #bf953f);
      color: var(--white);
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      animation: pulse 2s infinite;
    }

    .hero-badge i {
      color: #ffd700;
    }

    .hero-title {
      font-size: 3.8rem;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .hero-title-main {
      color: var(--text);
      display: block;
      font-weight: 700;
    }

    .hero-title-accent {
      color: var(--accent);
      display: block;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent), #bf953f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .hero-description strong {
      color: var(--accent);
      font-weight: 600;
    }

    .hero-pricing {
      margin-bottom: 2rem;
    }

    .price-container {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }

    .original-price {
      font-size: 1.4rem;
      color: var(--text-light);
      text-decoration: line-through;
      font-weight: 500;
    }

    .current-price {
      font-size: 2.5rem;
      color: var(--accent);
      font-weight: 700;
    }

    .discount-badge {
      background: #ff4757;
      color: var(--white);
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
      animation: bounce 2s infinite;
    }

    .price-timer {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .price-timer i {
      color: var(--accent);
    }

    .hero-features {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.8);
      padding: 0.8rem 1.2rem;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .feature-item:hover {
      transform: translateY(-2px);
    }

    .feature-item i {
      color: var(--accent);
      font-size: 1rem;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .primary-btn {
      background: linear-gradient(135deg, var(--accent), #bf953f);
      color: var(--white);
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .primary-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .primary-btn:hover::before {
      left: 100%;
    }

    .primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    }

    .outline-btn {
      background: transparent;
      color: var(--text);
      padding: 1rem 2rem;
      border: 2px solid var(--accent);
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .outline-btn:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }

    .slide-visual {
      position: relative;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 600px;
    }

    .hero-visual {
      position: relative;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image-container {
      position: relative;
      max-width: 450px;
      width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-product-img {
      width: 100%;
      height: auto;
      max-width: 450px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      animation: float 4s ease-in-out infinite;
      object-fit: contain;
      display: block;
    }

    .floating-card {
      position: absolute;
      top: -15px;
      left: -25px;
      background: var(--white);
      padding: 0.8rem;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      animation: slideInLeft 1s ease-out 0.5s both;
      z-index: 10;
    }

    .card-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--accent), #bf953f);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
    }

    .card-content {
      display: flex;
      flex-direction: column;
     
    }

    .card-number {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--text);
    }

    .card-text {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    /* Carousel Navigation */
    .carousel-nav {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(212, 175, 55, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;

    }

    .nav-dot.active {
      background: var(--accent);
      transform: scale(1.2);
      border-color: var(--accent);
      box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    .nav-dot:hover {
      background: var(--accent);
      transform: scale(1.1);
      border-color: var(--accent);
    }

    /* Carousel Arrows */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .carousel-arrow:hover {
      background: var(--accent);
      color: white;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-arrow.prev {
      left: 20px;
    }

    .carousel-arrow.next {
      right: 20px;
    }

    .carousel-arrow i {
      font-size: 1.2rem;
      color: var(--text);
    }

    .carousel-arrow:hover i {
      color: white;
    }

    /* Additional Slide Content Styles */
    .ingredients-showcase {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    .product-showcase {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .product-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      text-align: center;
      max-width: 300px;
    }

    .product-img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .product-info h3 {
      color: var(--text);
      margin-bottom: 8px;
      font-size: 1.2rem;
    }

    .product-info p {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .benefit-cards {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .benefit-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--text);
    }

    .benefit-card i {
      color: var(--accent);
      font-size: 1rem;
    }

    .ingredient-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.9);
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .ingredient-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid var(--accent-light);
    }

    .ingredient-item span {
      font-weight: 600;
      color: var(--text);
      font-size: 1rem;
    }

    .ingredient-item:hover {
      transform: translateY(-5px);
    }


    .testimonial-preview {
      margin-bottom: 2rem;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .testimonial-text {
      font-style: italic;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info h4 {
      color: var(--text);
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .testimonial-showcase {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      width: 100%;
    }

    .reviews-showcase {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      width: 100%;
    }

    .review-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
    }

    .review-text {
      font-style: italic;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 15px;
<<<<<<< HEAD
      justify-content: center;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info h4 {
      color: var(--text);
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .author-info p {
      color: var(--text-light);
      font-size: 0.9rem;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    .rating-cards {
      display: flex;
      gap: 15px;
      justify-content: center;
<<<<<<< HEAD
      margin-top: 20px;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    .rating-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--text);
    }

    .rating-card i {
      color: var(--accent);
      font-size: 1rem;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.9);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
    }

    .testimonial-text {
      font-style: italic;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info h4 {
      color: var(--text);
      margin-bottom: 5px;
      font-size: 1rem;
    }

    .author-info p {
      color: var(--text-light);
      font-size: 0.85rem;
    }

    .stats-preview {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .stats-showcase {
      display: flex;
      gap: 30px;
      justify-content: center;
    }

    .stat-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.9);
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      min-width: 120px;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .stat-label {
      color: var(--text);
      font-weight: 500;
    }

    /* Responsive Design for Carousel */
    @media (max-width: 768px) {
      .hero-carousel {
        height: auto;
        min-height: 100vh;
        margin-top: 90px;
        padding: 20px 0;
        overflow: visible;
      }

      /* Slow down slide animation on mobile */
      .carousel-container {
        height: auto;
        min-height: calc(100vh - 90px);
      }

      .carousel-slide {
        position: relative;
        opacity: 1;
        height: auto;
        min-height: calc(100vh - 90px);
        display: block;
        transition: opacity 2s ease-in-out, transform 2s ease-in-out;
      }

      .carousel-slide:not(.active) {
        display: none;
      }

      .slide-background {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        justify-content: center;
        gap: 2rem;
        min-height: calc(100vh - 90px);
        position: relative;
      }

      .slide-content {
        max-width: 100%;
        margin-bottom: 20px;
        order: 2; /* Changed from 1 to 2 - content comes after product */
        z-index: 2;
        position: relative;
      }

      .slide-visual {
        order: 1; /* Changed from 2 to 1 - product comes first */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        position: relative;
      }

      .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
      }

      .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        justify-content: center;
      }

      .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-btns {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
<<<<<<< HEAD
        width: 100%;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
<<<<<<< HEAD
        text-align: center;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .ingredients-showcase {
        flex-direction: column;
        gap: 15px;
<<<<<<< HEAD
        align-items: center;
      }

      .ingredient-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
      }

      .ingredient-item img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .product-showcase {
        gap: 15px;
      }

      .product-card {
        padding: 20px;
        max-width: 280px;
      }

      .product-img {
        width: 150px;
        height: 150px;
      }

      .benefit-cards {
        flex-direction: column;
        gap: 10px;
      }

      .benefit-card {
        min-width: 85vw !important;
      }

      .benefit-content {
        text-align: center;
      }

      .benefit-icon {
        margin: 0 auto 1.5rem;
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
        border-radius: 50%;
        box-shadow: 
          0 8px 25px rgba(212, 175, 55, 0.12),
          inset 0 1px 0 rgba(255, 255, 255, 0.6);
      }

      .benefit-highlight {
        justify-content: center;
        margin: 0 auto;
        max-width: 200px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
      }

      .section-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
      }

      .section-header h2 {
        font-size: 2.5rem;
      }

      .section-header p {
        font-size: 1.1rem;
      }

      .reviews-showcase {
        gap: 15px;
<<<<<<< HEAD
        flex-direction: column;
        align-items: center;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .review-card {
        padding: 20px;
        max-width: 350px;
<<<<<<< HEAD
        width: 100%;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .rating-cards {
        flex-direction: column;
        gap: 10px;
<<<<<<< HEAD
        align-items: center;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-image-container {
        max-width: 300px;
        width: 100%;
        position: relative;
<<<<<<< HEAD
        margin: 0 auto;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-product-img {
        max-width: 100%;
        height: auto;
        width: 100%;
        object-fit: contain;
      }

      .floating-card {
        top: -10px;
        left: -20px;
        padding: 0.6rem;
      }

      .floating-badge {
        bottom: 10px;
        right: -10px;
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
      }

      /* Additional mobile optimizations */
      .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
      }

      .floating-card {
        display: none; /* Hide on mobile for cleaner look */
      }

      /* Mobile-first product display */
      .slide-visual {
        margin-bottom: 1.5rem; /* Add space between product and content */
      }

      .hero-image-container {
        margin-bottom: 1rem; /* Ensure proper spacing */
      }

      /* Optimize product image size for mobile */
      .hero-product-img {
        max-height: 280px; /* Slightly larger for better visibility */
        width: auto;
        margin-bottom: 0.5rem;
      }

      /* Carousel navigation for mobile */
      .carousel-nav {
        bottom: 20px;
        z-index: 10;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      .nav-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
        background: rgba(255, 255, 255, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.3);
      }

      .nav-dot.active {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.2);
      }

      .carousel-arrow {
        display: none; /* Hide arrows on mobile, use swipe instead */
      }

      /* Ensure proper spacing for mobile */
      .slide-content {
        padding: 0 10px;
      }

      .hero-btns {
        margin-top: 1rem;
      }

      /* Improve touch targets - smaller size for mobile */
      .nav-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        display: block;
        margin: 0 4px;
      }

      /* Ensure images are properly sized on mobile */
      .hero-product-img {
        max-height: 300px;
        width: auto;
      }

      .ingredient-item img {
        width: 80px;
        height: 80px;
      }

      /* Improve mobile layout */
      .slide-visual {
        margin-top: 1rem;
      }

      /* Ensure proper text sizing on mobile */
      .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
      }

      .hero-description {
        font-size: clamp(0.9rem, 3vw, 0.95rem);
      }
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    /* Extra small devices */
    @media (max-width: 480px) {
      .hero-carousel {
        padding: 15px 0;
<<<<<<< HEAD
        margin-top: 80px;
      }

      /* Keep mobile transition slow for very small screens */
      .carousel-slide {
        transition: opacity 2s ease-in-out, transform 2s ease-in-out;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .slide-background {
        padding: 15px;
        gap: 1.5rem;
<<<<<<< HEAD
        min-height: calc(100vh - 80px);
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-title {
        font-size: 1.8rem;
<<<<<<< HEAD
        line-height: 1.1;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-description {
        font-size: 0.9rem;
<<<<<<< HEAD
        line-height: 1.4;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-features {
        gap: 0.6rem;
<<<<<<< HEAD
        margin-bottom: 1.2rem;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .feature-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
<<<<<<< HEAD
        text-align: center;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
<<<<<<< HEAD
        width: 100%;
        max-width: 250px;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .hero-image-container {
        max-width: 250px;
<<<<<<< HEAD
        margin: 0 auto;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .floating-badge {
        display: none; /* Hide on very small screens */
      }
<<<<<<< HEAD

      .ingredient-item img {
        width: 60px;
        height: 60px;
      }

      .review-card {
        padding: 15px;
        max-width: 300px;
      }

      .carousel-nav {
        bottom: 15px;
      }

      .nav-dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
        min-width: 8px;
        min-height: 8px;
      }
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

      .testimonial-showcase {
        gap: 15px;
      }

      .testimonial-card {
        padding: 20px;
        max-width: 350px;
      }

      .stats-preview {
        flex-direction: column;
        gap: 15px;
      }

      .stats-showcase {
        flex-direction: column;
        gap: 20px;
      }

      .carousel-arrow {
        width: 40px;
        height: 40px;
<<<<<<< HEAD
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
      }

      .carousel-arrow:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .carousel-arrow.prev {
        left: 10px;
      }

      .carousel-arrow.next {
        right: 10px;
      }

      .carousel-nav {
        bottom: 20px;
<<<<<<< HEAD
        display: flex;
        justify-content: center;
        gap: 8px;
        z-index: 10;
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      }

      .nav-dot {
        width: 10px;
        height: 10px;
<<<<<<< HEAD
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .nav-dot.active {
        background: var(--accent);
        transform: scale(1.2);
      }

    }

    /* Strong mobile override to prevent arrows reappearing from other rules */
    @media (max-width: 768px) {
      .carousel-arrow { display: none !important; }
    }
    

=======
      }
    }

>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    @media (max-width: 480px) {
      .hero-carousel {
        padding: 15px 0;
      }

      .slide-background {
        padding: 15px;
        gap: 1.5rem;
      }

      .hero-title {
        font-size: 1.8rem;
      }

      .hero-description {
        font-size: 0.9rem;
      }

      .hero-features {
        gap: 0.6rem;
      }

      .feature-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
      }

      .cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
      }

      .hero-image-container {
        max-width: 250px;
      }

      .floating-badge {
        display: none; /* Hide on very small screens */
      }

      .ingredient-item {
        padding: 15px;
      }

      .ingredient-item img {
        width: 60px;
        height: 60px;
      }

      .testimonial-card {
        padding: 20px;
      }

      .stat-item {
        padding: 20px;
      }

      .stat-number {
        font-size: 2rem;
      }

      .benefit-card {
        padding: 1.5rem 1.2rem;
        min-width: 260px;
        border-radius: 14px;
      }

      .benefit-icon {
        width: 85px;
        height: 85px;
        font-size: 2.3rem;
        border-radius: 50%;
        box-shadow: 
          0 6px 20px rgba(212, 175, 55, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.5);
      }

      .benefit-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
      }

      .benefit-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
      }

      .benefit-highlight {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
        border-radius: 10px;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .section-header p {
        font-size: 1rem;
      }

      .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
      }
    }

    /* Why You'll Love It Section - Scrollable Cards */
    .section {
<<<<<<< HEAD
      padding: 4rem 5%;
      margin-bottom: -50px;
=======
      padding: 6rem 5%;
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    .section-header {
      text-align: center;
<<<<<<< HEAD
      max-width: 700px;
      margin: 0 auto 4rem;
      position: relative;
      
=======
      max-width: 800px;
      margin: 0 auto 4rem;
      position: relative;
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--accent), #bf953f);
      color: var(--white);
      padding: 0.6rem 1.2rem;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      animation: pulse 2s infinite;
    }

    .section-badge i {
      color: #ffd700;
    }

    .section-header h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      color: var(--text);
    }

    .section-header .accent-text {
      color: var(--accent);
      background: linear-gradient(135deg, var(--accent), #bf953f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-header h2:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(135deg, var(--accent), #bf953f);
      border-radius: 2px;
    }

    .section-header p {
      font-size: 1.2rem;
      color: var(--text-light);
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    .benefits-container {
<<<<<<< HEAD
      max-width: 12000px;
=======
      max-width: 1200px;
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      margin: 0 auto;
      position: relative;
    }
    
    .benefits-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 20px;
    }

    .benefits-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 2rem 10px;
      -ms-overflow-style: none;
      scrollbar-width: none;
      position: relative;
    }

    .benefits-scroll::-webkit-scrollbar {
      display: none;
    }

    .benefit-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: 0 8px 30px rgba(0,0,0,0.05);
      transition: var(--transition);
      min-width: 300px;
      flex: 0 0 auto;
      scroll-snap-align: start;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--accent-light);
      display: flex;
      flex-direction: column;
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--accent-light);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(135deg, var(--accent), #bf953f);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .benefit-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01));
      border-radius: 50%;
      transform: translate(30px, -30px);
      transition: all 0.4s ease;
    }

    .benefit-card:hover::before {
      transform: scaleX(1);
      background: var(--gold-gradient);
    }

    .benefit-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem;
      border-bottom: 1px solid var(--accent-light);
    }

    .benefit-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      width: auto;
      height: auto;
    }

    .benefit-icon i {
      font-size: 2rem; 
      color: var(--accent);
      transition: var(--transition);
    }
    
    .benefit-card:hover .benefit-icon i {
      transform: scale(1.15) rotate(-10deg);
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .benefit-icon {
      width: 80px;
      height: 80px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--accent);
      font-size: 2rem;
      transition: var(--transition);
    }

    .benefit-card:hover .benefit-icon {
      background: linear-gradient(145deg, #bf953f, var(--accent));
      color: var(--white);
      transform: translateY(-12px) scale(1.08);
      box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .benefit-card:hover .benefit-icon::before {
      opacity: 1;
    }

    .benefit-card:hover .benefit-icon::after {
      opacity: 0.3;
      transform: translate(-50%, -50%) scale(1.2);
    }

    .benefit-content {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .benefit-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--text);
      margin-bottom: 0;
      font-weight: 600;
    }

    .benefit-content p {
      color: var(--text-light);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      flex-grow: 1; 
    }

    .benefit-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.5rem 1rem;
      background: var(--primary);
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #a98623;
      font-family: 'Montserrat', sans-serif;
      margin-top: auto;
      transition: var(--transition);
    }

    .benefit-highlight i {
      color: inherit;
    }

    .benefit-card:hover .benefit-highlight {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .benefit-highlight i {
      color: inherit;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }
    
    /* Scroll indicators */
    .scroll-indicators {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
<<<<<<< HEAD
      margin-bottom: 20px;
    }
    
    .scroll-indicator {
      width: 12px;
      height: 12px;
=======
    }
    
    .scroll-indicator {
      width: 10px;
      height: 10px;
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
      border-radius: 50%;
      background: var(--accent-light);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .scroll-indicator.active {
      background: var(--accent);
      transform: scale(1.2);
    }

    /* Ingredients Carousel */
    .ingredients {
      background: var(--soft-beige);
      position: relative;
      overflow: hidden;
      padding: 6rem 0;
    }

    .ingredient-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      padding: 0 5%;
    }
    
    .ingredients-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 0px;
    }

    .ingredient-carousel {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 2rem 10px;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .ingredient-carousel::-webkit-scrollbar {
      display: none;
    }

    .ingredient-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      min-width: 280px;
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 100%;
      max-width: 280px;
    }

    .ingredient-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .ingredient-img {
      height: 220px;
      overflow: hidden;
    }
<<<<<<< HEAD
 
=======

>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    .ingredient-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .ingredient-card:hover .ingredient-img img {
      transform: scale(1.1);
    }

    .ingredient-info {
      padding: 1.8rem 1.5rem;
    }

    .ingredient-info h4 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }

    /* About Section */
    .about {
      display: flex;
      align-items: center;
      gap: 5rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 5%;
    }

    .about-image {
      flex: 1;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
<<<<<<< HEAD
      margin-right: 20px;
      height: 75%;     
     
    }

 



    .about-image img {
      width: 110%;
      display: block;
      
    }

    

=======
      transition: var(--transition);
      position: relative;
      z-index: 1;
    }

    .about-image::before {
      content: "";
      position: absolute;
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      border: 2px solid var(--accent-light);
      border-radius: var(--radius);
      z-index: -1;
      opacity: 0.5;
    }

    .about-image:hover {
      transform: translateY(-10px);
    }

    .about-image img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd

    .about-content {
      flex: 1;
      margin-left: 20px;
    }

    .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 15px;
    }

    .about-content h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    .about-content p {
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    /* Testimonials */
    .testimonials {
      background: linear-gradient(135deg, var(--soft-nude), var(--primary));
      text-align: center;
      padding: 6rem 0;
      position: relative;
    }

    .testimonial-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      padding: 0 5%;
    }
    
    .testimonials-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 20px;
    }

    .testimonial-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 2rem 10px;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .testimonial-scroll::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 3rem;
      box-shadow: var(--shadow);
      text-align: left;
      position: relative;
<<<<<<< HEAD
      min-width: clamp(260px, 80vw, 400px);
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 100%;
      max-width: clamp(260px, 90vw, 400px);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 500ms ease, transform 500ms ease, box-shadow 300ms ease;
=======
      min-width: 400px;
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 100%;
      max-width: 400px;
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      font-family: 'Playfair Display', serif;
      color: var(--accent-light);
      line-height: 1;
      opacity: 0.3;
    }

    .testimonial-text {
      margin-top: 2rem;
      margin-bottom: 1.5rem;
      font-style: italic;
      color: var(--text-light);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--accent-light);
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
<<<<<<< HEAD
      transition: transform 300ms ease;
    }

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .testimonial-card:hover .author-avatar img {
      transform: scale(1.05);
    }

    .testimonial-card.show {
      opacity: 1;
      transform: translateY(0);
=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    }

    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
    }

    .author-info p {
      font-size: 0.9rem;
      color: var(--text-light);
    }

<<<<<<< HEAD
    /* Responsive: mobile to laptop */
    @media (max-width: 1024px) {
      .testimonials {
        padding: 4.5rem 0;
      }
      .testimonial-card {
        padding: 2.25rem;
      }
    }

    @media (max-width: 768px) {
      .testimonials {
        padding: 3.5rem 0;
      }
      .testimonials-wrapper {
        padding: 0 8px;
      }
      .testimonial-scroll {
        gap: 1.25rem;
        padding: 1.25rem 6px;
      }
      .testimonial-card {
        padding: 1.75rem;
      }
      .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
      }
      .author-avatar {
        width: 44px;
        height: 44px;
      }
      .author-info h4 {
        font-size: 1rem;
      }
      .author-info p {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .testimonials {
        padding: 3rem 0;
      }
      .testimonials-wrapper {
        padding: 0;
      }
      .testimonial-scroll {
        gap: 1rem;
        padding: 1rem 4px;
      }
      .testimonial-card {
        min-width: 88vw;
        max-width: 88vw;
        padding: 1.25rem;
      }
      .testimonial-card::before {
        font-size: 3.5rem;
      }
      .author-avatar {
        width: 40px;
        height: 40px;
      }
    }

=======
>>>>>>> ca6cf8a18761726f2d3d0a85a7030e025eac7cbd
    /* FAQ Section */
    .faq-section {
      padding: 5rem 5%;
      background: var(--white);
    }

    .faq-container {
      max-width: 800px;
      margin: 3rem auto 0;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid rgba(212, 175, 55, 0.1);
      border-radius: 16px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
    }

    .faq-item:hover {
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }

    .faq-item.active {
      border-color: var(--accent);
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    }

    .faq-question {
      padding: 1.5rem 2rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--soft-beige);
      transition: var(--transition);
    }

    .faq-question:hover {
      background: var(--accent-light);
    }

    .faq-question h3 {
      font-size: 1.1rem;
      color: var(--text);
      margin: 0;
      font-weight: 600;
    }

    .faq-question i {
      color: var(--accent);
      transition: var(--transition);
      font-size: 1.2rem;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--white);
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .faq-answer p {
      padding: 0 2rem 1.5rem;
      margin: 0;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Call to Action */
    .cta-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=1480') center/cover no-repeat;
      padding: 6rem 5%;
      text-align: center;
      color: var(--white);
      position: relative;
    }

    .cta-section h2 {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
    }

    .cta-section p {
      max-width: 700px;
      margin: 0 auto 2.5rem;
      font-size: 1.15rem;
      opacity: 0.9;
    }

    /* Footer - Professional Design */
    footer {
      background: #2c2c2c;
      color: var(--white);
      padding: 4rem 5% 2rem;
    }

    /* .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    } */

    .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns on desktop */
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}


    .footer-column h3 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
      font-family: 'Montserrat', sans-serif;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--accent);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
    }

    .footer-links a i {
      width: 20px;
      color: var(--accent-light);
      margin-right: 8px;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--white);
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      color: #999;
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: var(--transition);
      animation: pulse 2s infinite;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float i {
      color: white;
      font-size: 2rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-5px);
      }
      60% {
        transform: translateY(-3px);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Media Queries */
    @media (max-width: 1200px) {
      .hero-content h1 {
        font-size: 3rem;
      }
      
      .hero-image {
        width: 45%;
      }
    }

    @media (max-width: 992px) {
      .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 7rem 0 5rem;
      }
      
      .hero-content p {
        max-width: 100%;
        margin: 0 auto 2.5rem;
      }
      
      .hero-btns {
        justify-content: center;
      }
      
      .hero-image {
        position: relative;
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
        top: auto;
        right: auto;
        transform: none;
      }
      
      .hero {
        flex-direction: column;
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 4rem;
      }
      
      .about {
        flex-direction: column;
        gap: 3rem;
      }
      
      .about-content {
        margin-left: 0;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .nav-actions {
        gap: 0.5rem;
      }
      
      .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
      }
      
      .nav-toggle {
        display: block;
      }
      
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
        min-height: auto;
      }
      
      .hero-content {
        max-width: 100%;
        padding: 2rem 0;
      }
      
      .hero-content h1 {
        font-size: 2.8rem;
      }
      
      .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      }
      
      .hero-visual {
        margin-top: 2rem;
      }
      
      .floating-card,
      .floating-badge {
        display: none;
      }
      
      .section-header h2 {
        font-size: 2.3rem;
      }

      .testimonial-card {
        min-width: 350px;
      }
      
      /* Card sizing for mobile */
      .benefit-card,
      .ingredient-card,
      .testimonial-card {
        min-width: 85vw !important;
      }
    }

    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
      }
      
      .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
      }
      
      .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }
      
      .hero-btns {
        flex-direction: column;
        gap: 1rem;
      }
      
      .primary-btn,
      .outline-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
      
      .testimonial-card {
        min-width: 280px;
        padding: 2rem;
      }
      
      /* Card sizing for mobile */
      .benefit-card,
      .ingredient-card,
      .testimonial-card {
        min-width: 85vw !important;
      }
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      min-height: 100vh;
      padding: 0 5%;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--soft-nude), var(--primary));
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60%;
      height: 140%;
      background: url('/Assets/hero-img1.png') no-repeat center center;
      background-size: cover;
      border-radius: 0 0 0 100px;
      transform: rotate(-5deg);
      z-index: 1;
      box-shadow: var(--shadow);
      margin-top: 80px;
    }

    .hero-content {
      max-width: 600px;
      position: relative;
      z-index: 2;
      padding: 5rem 0;
      animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      color: var(--text);
      line-height: 1.1;
    }

    .hero-content h1 span {
      color: var(--accent);
      display: block;
    }

    .hero-content p {
      font-size: 1.15rem;
      margin-bottom: 2.5rem;
      color: var(--text-light);
    }

    .hero-btns {
      display: flex;
      gap: 1.5rem;
    }

    .outline-btn {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
    }

    .outline-btn:hover {
      background: var(--accent);
      color: var(--white);
    }

    /* Benefits Section */
    .section {
      padding: 6rem 5%;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .section-header h2 {
      font-size: 2.8rem;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
    }

    .section-header h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-header p {
      font-size: 1.15rem;
      color: var(--text-light);
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .benefit-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2.5rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .benefit-icon {
      width: 80px;
      height: 80px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--accent);
      font-size: 2rem;
      transition: var(--transition);
    }

    .benefit-card:hover .benefit-icon {
      background: var(--accent);
      color: var(--white);
    }

    .benefit-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Ingredients Section */
    .ingredients {
      background: var(--soft-beige);
      position: relative;
      overflow: hidden;
    }

    .ingredients::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      background: var(--accent-light);
      border-radius: 50%;
      opacity: 0.3;
      z-index: 0;
    }

    .ingredients::after {
      content: '';
      position: absolute;
      bottom: -150px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: var(--accent-light);
      border-radius: 50%;
      opacity: 0.2;
      z-index: 0;
    }

    .ingredient-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .ingredient-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
    }

    .ingredient-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .ingredient-img {
      height: 220px;
      overflow: hidden;
    }

    .ingredient-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .ingredient-card:hover .ingredient-img img {
      transform: scale(1.1);
    }

    .ingredient-info {
      padding: 1.8rem 1.5rem;
    }

    .ingredient-info h4 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    } 

/* Media Queries */
    @media (max-width: 992px) {
      .hero::before {
        opacity: 0.3;
      }
      
      .hero-content {
        max-width: 100%;
        text-align: center;
      }
      
      .hero-btns {
        justify-content: center;
      }
      
      .about {
        flex-direction: column;
        gap: 3rem;
      }
      
      .about-image {
        max-width: 500px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .nav-toggle {
        display: block;
        z-index: 1002;
      }
      
      .hero-content h1 {
        font-size: 2.8rem;
      }
      
      .section-header h2 {
        font-size: 2.3rem;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding-top: 5rem;
      }
      
      .hero-content h1 {
        font-size: 2.3rem;
      }
      
      .hero-btns {
        flex-direction: column;
        gap: 1rem;
      }
      
      .cta-btn {
        width: 100%;
        text-align: center;
      }
    }

    /* Responsive card sizing */
    @media (min-width: 993px) {
      .benefit-card, 
      .ingredient-card, 
      .testimonial-card {
        min-width: 30%;
      }
    }
    
    @media (min-width: 577px) and (max-width: 992px) {
      .benefit-card, 
      .ingredient-card, 
      .testimonial-card {
        min-width: 45%;
      }
    }
    
    @media (max-width: 576px) {
      .benefit-card, 
      .ingredient-card, 
      .testimonial-card {
        min-width: 85vw;
      }
    }

    .about-content h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.about-content h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-content .cta-btn {
  display: inline-block;
  margin: 1.5rem auto 0 auto;
  text-align: center;
}

.about-content .cta-btn {
  display: block;
  margin: 2rem auto 0 auto; /* Top margin can be adjusted */
  text-align: center;
}

/* ========== HERO HEIGHT & LAYOUT ========== */
.hero {
  min-height: 85vh; /* slightly reduced from 90vh */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 4rem 2rem;
}

/* Hero Content Left-Aligned on Desktop/Laptop */
@media (min-width: 1025px) {
  .hero {
    min-height: 80vh;
    padding: 3rem 2rem;
  }

  .hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    margin: 0;
  }
}

/* Toggle Menu shown from Tablet & below */
@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* Tablet Layout (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5rem;
    min-height: 75vh;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* Mobile Layout (below 767px) */
@media (max-width: 767px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 6rem;
    min-height: 70vh;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    padding: 0 1.5rem;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Extra Small Screens */
@media (max-width: 500px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== SLIGHT CARD WIDTH INCREASE ========== */
.benefit-card,
.ingredient-card,
.testimonial-card {
  width: 270px; /* slightly larger */
}

@media (max-width: 500px) {
  .benefit-card,
  .ingredient-card,
  .testimonial-card {
    width: 250px; /* was 240px */
  }
}

/* ========== HERO DESKTOP/LAPTOP ADJUSTMENT ========== */
@media (min-width: 1025px) {
  .hero {
    min-height: 90vh; /* slightly increased from 85vh */
    padding: 4rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-left: 5%; /* creates spacing from left edge */
  }
}
.about-content {
  text-align: left; /* Keep all text left-aligned */
}

.about-content .cta-btn {
  display: block;                 /* Make it a block for auto margin to work */
  margin: 1.5rem auto 0 auto;     /* Center the button only */
  padding: 0.7rem 1.6rem;
  width: fit-content;             /* Adjust width to content */
  text-align: center;
}

.about-img {
  max-width: 90%;
  width: 400px;
  max-height: 320px;    /* Limits height */
  height: auto;         /* Maintains aspect ratio */
  border-radius: 12px;
  object-fit: contain;  /* Ensures the image fits without stretching */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.about-img {
  max-width: 90%;
  width: 400px;
  max-height: 320px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  
  /* Initial position slightly left */
  transform: translateX(-8px);
  transition: transform 0.4s ease;
}

.about-img:hover {
  /* Moves slightly to the right on hover */
  transform: translateX(4px);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: 75vh; /* reduce height for tablets */
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-btns {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-image img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
  }
}

.hero-price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent, #d4af37);
  margin-top: 0.1rem;
}

.hero-discount {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light, #7a7a7a);
  margin-top: 0.3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive fallback */
  }
}


.hero-price {
  margin-bottom: 2rem;
}