@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #e31e24; /* Aggressive Athletic Red */
  --primary-hover: #c11a1f; 
  --secondary: #333333; /* Dark Grey Accent */
  --bg-light: #f8f8f8; /* Light Shell Grey */
  --bg-offset: #efeff1; /* Offset Grey Layer */
  --bg-dark: #0f0505; /* Deep Charcoal/Black */
  --text-dark: #1a1a1b;
  --text-muted: #666666;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  background: var(--glass);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(227, 30, 36, 0.1);
}

header.sticky {
  padding: 0.6rem 0;
  background: var(--bg-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(227, 30, 36, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 3rem);
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.5rem;
  }
}

.nav-icons {
  display: flex;
  gap: clamp(0.8rem, 3vw, 1.5rem);
  align-items: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.nav-icons a {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  z-index: 1001;
}

/* Mobile Menu Overlay & Drawer */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100%;
  background: #000;
  z-index: 2001;
  padding: 3rem 2rem;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.menu-close {
  color: #fff;
  font-size: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.mobile-nav-links a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.mobile-menu-footer p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
    padding: 0.5rem; /* Increase touch target */
  }
  header {
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
  }
  .nav-icons {
    gap: 0.8rem;
  }
  .container {
    padding: 0 1.25rem;
  }
}

.cart-icon {
  position: relative;
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-light);
  overflow: hidden;
  padding-top: clamp(80px, 15vh, 120px);
  padding-bottom: clamp(40px, 8vh, 80px);
}

/* Animated BG Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15; /* Reduced opacity for light theme */
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #27ae60, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a6e3c, transparent 70%);
  bottom: -100px; left: -80px;
  animation: orbFloat 11s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #f39c12, transparent 70%);
  top: 40%; left: 35%;
  opacity: 0.08;
  animation: orbFloat 6s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

/* Layout */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(39, 174, 96, 0.05);
  border: 1px solid rgba(39, 174, 96, 0.15);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  color: var(--primary);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  max-width: 100%;
  text-align: left;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,174,96,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(39,174,96,0); }
}

/* Headline */
.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
}
.hero-line-1 { opacity: 1; }
.hero-line-2 {
  color: var(--primary);
  font-style: italic;
  font-size: clamp(0.9em, 1.1em, 1.1em);
}
.hero-word-cycle {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-word-cycle.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}
.hero-line-3 { opacity: 1; font-size: clamp(0.7em, 0.85em, 0.85em); }
.hero-accent {
  color: var(--primary);
  opacity: 1;
}

/* Description */
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted); /* Muted dark text */
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 3rem;
}

/* CTAs */
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.2);
}
.btn-hero-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(227, 30, 36, 0.3);
}
.btn-hero-outline {
  border: 1px solid rgba(227, 30, 36, 0.15);
  color: var(--primary);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.btn-hero-outline:hover {
  border-color: var(--primary);
  background: var(--bg-offset);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 45px;
  background: rgba(227, 30, 36, 0.15);
}

/* Right Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(300px, 60vh, 600px);
}

.hero-glow-ring {
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,107,61,0.08), transparent 70%);
  border: 1px solid rgba(42,107,61,0.1);
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 0.8; }
}

.hero-product-wrap {
  position: relative;
  z-index: 2;
  animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-25px); }
}
.hero-product-img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 30px 50px rgba(42,107,61,0.15));
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42,107,61,0.08);
  border-radius: 20px;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  animation: cardFloat 4s ease-in-out infinite alternate;
}
.hero-float-card i {
  font-size: 1.6rem;
  color: var(--primary);
}
.hero-float-card strong { display: block; font-size: 1rem; font-weight: 800; }
.hero-float-card span { color: var(--text-muted); font-size: 0.8rem; }
.hero-float-card--tl { top: 10%; left: -5%; animation-delay: 0s; }
.hero-float-card--br { bottom: 15%; right: -5%; animation-delay: 1.5s; }
@keyframes cardFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-15px); }
}

/* Rating Card */
.hero-rating-card {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background: white;
  border: 1px solid rgba(42,107,61,0.08);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.85rem;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  animation: cardFloat 5s ease-in-out infinite alternate;
  animation-delay: 0.8s;
}
.hero-rating-stars { color: #f39c12; font-size: 0.9rem; margin-bottom: 0.4rem; }
.hero-rating-card span { color: var(--text-muted); font-weight: 600; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 45px;
  border: 2px solid rgba(42,107,61,0.15);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
}
.hero-scroll-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-visual {
    order: -1;
    min-height: 350px;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    letter-spacing: -1px;
    align-items: center;
  }
  .hero-desc { margin: 0 auto 2rem; font-size: 1.05rem; max-width: 600px; }
  .hero-actions { justify-content: center; gap: 1rem; }
  .hero-stats { justify-content: center; gap: clamp(1rem, 4vw, 3rem); }
  .hero-stat-num { font-size: clamp(1.5rem, 4vw, 2rem); }
  
  .hero-float-card {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
  }
  .hero-float-card--tl { top: 0%; left: 5%; }
  .hero-float-card--br { bottom: 0%; right: 5%; }
  .hero-rating-card { display: none; }

  .hero-product-img { max-width: clamp(250px, 50vw, 380px); }
  .hero-glow-ring { width: clamp(250px, 50vw, 400px); height: clamp(250px, 50vw, 400px); }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
  .hero-line-2, .hero-line-3 {
    font-size: 0.85em;
  }
  .hero-badge {
    padding: 0.4rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-float-card {
    display: none;
  }
  .hero-product-img {
    max-width: 200px;
  }
  .hero-visual {
    min-height: 220px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .hero-stat { text-align: center; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat:last-child {
      grid-column: span 2;
  }
  .hero-stat-divider { display: none; }
  .hero-actions {
      flex-direction: column;
      width: 100%;
  }
  .hero-actions .btn {
      width: 100%;
      padding: 1rem 2rem;
      text-align: center;
      justify-content: center;
  }
}
/* ===================== END HERO ===================== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

/* Sections */
section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow-x: hidden;
  width: 100%;
}

.page-header {
  padding-top: clamp(8rem, 15vh, 12rem);
  padding-bottom: clamp(4rem, 10vh, 6rem);
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.page-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.fluid-card {
  background: var(--white);
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: clamp(20px, 5vw, 40px);
  box-shadow: var(--shadow-soft);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  height: clamp(300px, 40vh, 450px);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-soft);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 36, 0.1);
}

.category-card:hover img {
  transform: scale(1.1) translateY(-10px);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.25rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(227, 30, 36, 0.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-image {
  background: var(--bg-offset);
  border-radius: 15px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.1) translateY(-5px);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-flavor {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.product-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.sale-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.original-price {
  font-size: 0.9rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-pill {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-add {
  flex: 1;
  background: var(--text-dark);
  color: #fff;
  padding: 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-add:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.btn-view {
  width: 50px;
  height: 50px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: var(--white);
}

.btn-view:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .product-card {
    padding: 1rem;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-name {
    font-size: 1.1rem;
  }
  
  .sale-price {
    font-size: 1.25rem;
  }
  
  .btn-add {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .btn-add span {
    display: block; /* Ensure it stays as a block to prevent weird wrapping if still too narrow, but 1fr should be enough now */
  }
}

/* Coming Soon */
.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.coming-soon-badge {
  background: #666;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(450px, 100vw);
  height: 100%;
  background: var(--bg-light);
  z-index: 2001;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(227, 30, 36, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.cart-close {
  font-size: 1.5rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-offset);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--bg-offset);
  border-radius: 12px;
  padding: 0.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-footer {
  padding: 2.5rem;
  border-top: 1px solid rgba(227, 30, 36, 0.1);
  background: var(--bg-offset);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Filters */
.filters-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.search-box {
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 2;
  min-width: min(100%, 350px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.05);
}

.search-box input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.filter-group {
  display: flex;
  gap: 1rem;
  flex: 1.5;
  min-width: min(100%, 350px);
}

select {
  flex: 1;
  padding: 0.8rem 1.25rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  outline: none;
  font-weight: 600;
  background: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
  transition: var(--transition);
}

select:focus {
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .filters-container {
    flex-direction: column;
  }
  .search-box, .filter-group {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 480px) {
  .filter-group {
    flex-direction: column;
  }
  select {
    width: 100%;
  }
}

/* Footer */
footer {
  background: #0a0303; /* Deep Dark Red/Black */
  color: var(--bg-light); /* Off-white */
  padding: 100px 0 40px;
  position: relative;
  border-top: 1px solid rgba(227, 30, 36, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.footer-contact-item p, 
.footer-contact-item a {
    color: rgba(253, 252, 245, 0.7);
    line-height: 1.6;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-logo {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.footer-desc {
  color: rgba(253, 252, 245, 0.7); /* Muted Off-white */
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    color: #fff;
}

.footer-links h4 {
  color: var(--bg-light);
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links ul li a {
  color: rgba(253, 252, 245, 0.7);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 2rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-contact-item i {
    margin-top: 0;
  }
  .footer-links ul li a:hover {
    padding-left: 0;
    color: var(--primary);
  }
}

/* Responsive Overrides */
/* Testimonials */
.testimonials {
  position: relative;
  padding: 150px 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 2, 2, 0.92);
  z-index: 1;
}

.testimonials {
  position: relative;
  padding: clamp(80px, 15vh, 150px) 0;
  background: var(--bg-dark);
  overflow: hidden;
  color: var(--white);
}

.testimonial-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  filter: blur(4px) brightness(0.6);
  -webkit-filter: blur(4px) brightness(0.6);
}

.testimonial-bg-blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(227, 30, 36, 0.1) 0%, rgba(10, 2, 2, 0.9) 100%);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  background: rgba(25, 10, 10, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(2.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 50px;
  text-align: center;
  animation: slideFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-slide.active {
  display: block;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stars {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.quote {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #fff;
  opacity: 0.95;
  position: relative;
}

.quote::before, .quote::after {
  content: '"';
  font-family: serif;
  font-size: 4rem;
  position: absolute;
  opacity: 0.1;
  color: var(--primary);
}

.quote::before { top: -20px; left: -20px; }
.quote::after { bottom: -60px; right: -20px; }

.author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.author-name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.author-name::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 10px auto 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 5;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -80px; }
.next-btn { right: -80px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.dot {
  width: 40px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.dot.active {
  width: 80px;
  background: var(--primary);
  box-shadow: 0 0 20px rgba(227, 30, 36, 0.4);
}

@media (max-width: 768px) {
  .slider-dots {
    gap: 0.5rem;
  }
  .dot {
    width: 20px;
    height: 4px;
  }
  .dot.active {
    width: 40px;
  }
}

@media (max-width: 1100px) {
  .prev-btn { left: 0; }
  .next-btn { right: 0; }
  .slider-btn { background: rgba(0,0,0,0.3); }
}

@media (max-width: 768px) {
  .slider-btn { display: none; }
  .testimonials { padding: 80px 0; }
  .testimonial-slide { padding: 3rem 1.5rem; }
  .quote::before, .quote::after { display: none; }
}

/* Loader */

/* Feature Highlight Section */
.feature-highlight {
  background-color: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.feature-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #f1c40f;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(241, 196, 15, 0.3);
}

.feature-icon-circle {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border: 3px solid #f1c40f;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  z-index: 3;
}

.feature-text h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 250px;
}

.feature-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.floating-bowl {
  width: clamp(280px, 45vw, 500px);
  height: clamp(280px, 45vw, 500px);
  background-image: url('../assets/images/moringa-bowl.png');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.4));
  transition: var(--transition);
  border: clamp(10px, 2vw, 20px) solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.2);
}

.floating-bowl:hover {
  transform: scale(1.03) rotate(2deg);
}

/* Background SVGs for decoration */
.bg-leaf {
  position: absolute;
  top: 50%;
  width: 400px;
  height: 400px;
  opacity: 0.08;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}

.bg-leaf-left {
  left: -150px;
  transform: translateY(-50%) rotate(45deg);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M506.3 411c-21.3-21.3-43.3-47.9-63-71.3-27.4-32.5-49.8-68.5-66.4-106.8-21.1-48.7-33.1-99.7-35.4-151.7-1-23.7-22.1-41.2-45.7-41.2-14.7 0-28.5 7.4-36.8 19.8L12.7 440.4c-11.7 17.6-11.4 40.5 1 57.8 12.4 17.2 33.3 22.8 51.5 13.9l127.4-62.4c12.1-5.9 26.6-4.1 36.9 4.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4l-74.9-62.7c-10.4-8.7-12.2-23.7-4.1-34.6s23.4-12.3 33.8-3.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4L259.5 306.9c-10.4-8.7-12.2-23.7-4.1-34.6s23.4-12.3 33.8-3.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4l-74.9-62.7c-10.4-8.7-12.2-23.7-4.1-34.6s23.4-12.3 33.8-3.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4L31 25.9z"/></svg>');
}

.bg-leaf-right {
  right: -150px;
  transform: translateY(-50%) rotate(-45deg);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M506.3 411c-21.3-21.3-43.3-47.9-63-71.3-27.4-32.5-49.8-68.5-66.4-106.8-21.1-48.7-33.1-99.7-35.4-151.7-1-23.7-22.1-41.2-45.7-41.2-14.7 0-28.5 7.4-36.8 19.8L12.7 440.4c-11.7 17.6-11.4 40.5 1 57.8 12.4 17.2 33.3 22.8 51.5 13.9l127.4-62.4c12.1-5.9 26.6-4.1 36.9 4.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4l-74.9-62.7c-10.4-8.7-12.2-23.7-4.1-34.6s23.4-12.3 33.8-3.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4L259.5 306.9c-10.4-8.7-12.2-23.7-4.1-34.6s23.4-12.3 33.8-3.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4l-74.9-62.7c-10.4-8.7-12.2-23.7-4.1-34.6s23.4-12.3 33.8-3.6l74.9 62.7c15.7 13.2 39.4 11.8 53.3-3.2 13.9-15 12.5-38.1-3.2-51.4L31 25.9z"/></svg>');
}

@media (max-width: 991px) {
  .feature-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .feature-image-wrapper {
    order: -1;
  }
  .feature-grid {
    gap: 3rem;
  }
  .feature-item {
    align-items: center;
  }
  .feature-text p {
    margin: 0 auto;
  }
  .floating-bowl {
      width: 300px;
      height: 300px;
  }
}

/* Formula Section */
.formula-section {
  background-color: #0d3b1e; /* Darker Green to differentiate */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.formula-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 2;
}

.formula-subtitle {
  color: #fff;
  opacity: 0.8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.formula-title {
  color: #fff;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.formula-title span {
  opacity: 0.9;
}

.formula-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.formula-list li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.formula-list li i {
  color: #f39c12; /* Orange-yellow arrows */
  font-size: 0.8rem;
}

.btn-formula {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-formula:hover {
  background: #e67e22;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.formula-collage {
  position: relative;
  width: clamp(280px, 45vw, 500px);
  height: clamp(280px, 45vw, 500px);
  margin: 0 auto;
}

.collage-main-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url('https://images.unsplash.com/photo-1547489432-cf93fa6c71ee?auto=format&fit=crop&q=80&w=800');
  background-size: cover;
  background-position: center;
  border: 15px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  position: relative;
}

.collage-capsule {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.collage-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .formula-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .formula-list {
    align-items: center;
  }
  .formula-collage {
    width: clamp(240px, 80vw, 400px);
    height: clamp(240px, 80vw, 400px);
  }
  .collage-capsule {
    width: 70px;
    height: 70px;
  }
}

.floating-1 {
  top: 10%;
  right: -20px;
  animation: float 4s ease-in-out infinite;
}

.floating-2 {
  bottom: 20%;
  right: -40px;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Standardized Hero Title Handled Above */

/* Legacy media queries removed - now using fluid design and unified breakpoints */




/* FAQ Premium Styles */
.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(227, 30, 36, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-offset);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: all 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-offset);
}

.faq-answer-inner {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough for content */
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-question h4 {
    color: var(--primary);
}

.faq-search-wrapper {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 10;
}

.faq-search-input {
    width: 100%;
    padding: 1.5rem 2rem 1.5rem 4rem;
    border-radius: 20px;
    border: 1px solid rgba(227, 30, 36, 0.1);
    background: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    outline: none;
    transition: all 0.3s ease;
}

.faq-search-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.faq-cat-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid rgba(227, 30, 36, 0.1);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cat-btn.active, .faq-cat-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }
    .faq-question h4 {
        font-size: 1.1rem;
    }
}

/* Contact Premium Styles */
.contact-block {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(227, 30, 36, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.contact-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.contact-block i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

.contact-form-container {
    background: var(--white);
    padding: 5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-group label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(227, 30, 36, 0.1);
    background: var(--bg-offset);
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.05);
}

.contact-hero {
    padding: 180px 0 100px;
    background: linear-gradient(to bottom, var(--bg-offset), var(--bg-light));
    text-align: center;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid rgba(227, 30, 36, 0.1);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .contact-form-container {
        padding: 3rem;
    }
}

/* 3D Product Showcase */
.showcase-3d-section {
    padding: clamp(4rem, 15vh, 12rem) 0;
    background: radial-gradient(circle at 50% 50%, var(--bg-offset) 0%, var(--bg-light) 100%);
    overflow: hidden;
    user-select: none;
}

.carousel-3d-wrapper {
    position: relative;
    height: clamp(350px, 60vh, 600px);
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    cursor: grab;
}

.carousel-3d-container:active {
    cursor: grabbing;
}

.card-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(200px, 30vw, 380px);
    height: clamp(250px, 45vh, 500px);
    margin-top: calc(clamp(250px, 45vh, 500px) / -2);
    margin-left: calc(clamp(200px, 30vw, 380px) / -2);
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.card-3d-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.card-3d-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

/* Card Reflection Effect */
.card-3d::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg) scaleY(0.5);
    width: 80%;
    height: 50%;
    background: inherit; /* Note: This might need manual handling if background is missing */
    opacity: 0.1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

@media (max-width: 768px) {
    .showcase-3d-section { 
        padding: 6rem 0; 
    }
    .carousel-3d-wrapper { 
        height: 400px; 
    }
    .card-3d { 
        width: clamp(160px, 50vw, 240px); 
        height: clamp(200px, 40vh, 320px);
        margin-left: calc(clamp(160px, 50vw, 240px) / -2);
        margin-top: calc(clamp(200px, 40vh, 320px) / -2);
    }
}

@media (max-width: 480px) {
    .showcase-3d-section {
        padding: 4rem 0;
    }
    .carousel-3d-wrapper {
        height: 320px;
    }
    .card-3d {
        width: 150px;
        height: 220px;
        margin-left: -75px;
        margin-top: -110px;
    }
}


/* Marble Explore Button */
.btn-marble-explore {
    display: inline-block;
    padding: 1.2rem clamp(2rem, 5vw, 4rem);
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: max-content;
    max-width: 100%;
}

.btn-marble-explore:hover {
    background: transparent;
    color: #000;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}


/* Animated Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 3vw, 3.5rem);
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(227, 30, 36, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(227, 30, 36, 0.1);
    border-color: var(--primary);
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-box {
    width: 90px;
    height: 90px;
    background: rgba(227, 30, 36, 0.05);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    transition: all 0.5s ease;
}

.service-icon-box i {
    font-size: 2.8rem;
    color: var(--primary);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    transform: rotate(10deg) scale(1.1);
}

.service-card:hover .service-icon-box i {
    color: var(--white);
    animation: pulse 1.5s infinite;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* ========== PREMIUM CTA SECTION ========== */
.cta-premium-section {
    position: relative;
    padding: 130px 0;
    background: #1a1a1b;
    overflow: hidden;
}

/* Floating animated background orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(227, 30, 36, 0.25);
    top: -150px;
    left: -150px;
    animation: ctaOrbFloat 8s ease-in-out infinite;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(227, 30, 36, 0.15);
    bottom: -100px;
    right: -100px;
    animation: ctaOrbFloat 10s ease-in-out infinite reverse;
}

.cta-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaOrbFloat 12s ease-in-out infinite 2s;
}

@keyframes ctaOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.05); }
}

/* Inner 2-column layout */
.cta-premium-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: clamp(2rem, 8vw, 8rem);
    align-items: center;
}

/* --- Left Text Column --- */
.cta-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(227, 30, 36, 0.12);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
}

.cta-headline {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.cta-highlight {
    color: var(--primary);
    position: relative;
}

.cta-highlight::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.cta-subtext {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 480px;
}

/* Mini stats row */
.cta-mini-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.cta-mini-stat {
    display: flex;
    flex-direction: column;
}

.cta-mini-stat strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.cta-mini-stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.4rem;
}

.cta-mini-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 3.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.35);
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.5);
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.4rem 3.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* --- Right Visual Column --- */
.cta-product-wrap {
    position: relative;
    width: 100%;
    height: clamp(300px, 60vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-glow-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
    animation: ctaGlowPulse 3s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cta-product-img {
    width: 420px;
    height: 460px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: ctaProductFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 40px 60px rgba(227, 30, 36, 0.25));
}

@keyframes ctaProductFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Badges */
.cta-badge {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--white);
    z-index: 3;
    animation: ctaBadgeFloat 5s ease-in-out infinite;
}

.cta-badge-top {
    top: 40px;
    left: 0;
    animation-delay: 0s;
}

.cta-badge-bottom {
    bottom: 60px;
    right: 0;
    animation-delay: 1.5s;
}

@keyframes ctaBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-badge i {
    font-size: 1.4rem;
    color: var(--primary);
}

.cta-badge strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.cta-badge span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-premium-inner {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    .cta-mini-stats { justify-content: center; }
    .cta-buttons { justify-content: center; }
    .cta-subtext { margin: 0 auto 4rem; }
    .cta-product-wrap { height: 400px; }
    .cta-product-img { width: 300px; height: 340px; }
    .cta-headline { font-size: 3rem; }
    .cta-badge-top { left: 5%; }
    .cta-badge-bottom { right: 5%; }
}


/* Global CTA Glass Section */
.global-cta-glass {
  padding: clamp(60px, 15vh, 120px) 0;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.cta-glass-box {
  background: #111;
  border-radius: clamp(40px, 6vw, 60px);
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.cta-glass-orb {
  position: absolute;
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.cta-glass-orb-1 {
  top: -100px;
  right: -100px;
  animation: orbFloat 15s infinite alternate;
}

.cta-glass-orb-2 {
  bottom: -100px;
  left: -100px;
  animation: orbFloat 20s infinite alternate-reverse;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

.cta-glass-eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.cta-glass-headline {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
  letter-spacing: -2px;
}

.cta-glass-accent {
  color: var(--primary);
  display: block;
}

.cta-glass-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-cta-glass-primary {
  background: var(--primary);
  color: #fff;
  padding: 1.4rem 4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(227, 30, 36, 0.3);
}

.btn-cta-glass-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(227, 30, 36, 0.4);
}

.btn-cta-glass-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 1.4rem 4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.btn-cta-glass-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .cta-glass-headline { margin-bottom: 2.5rem; }
  .btn-cta-glass-primary, .btn-cta-glass-outline { width: 100%; text-align: center; padding: 1.2rem 2rem; }
}


@media (max-width: 768px) {
  .page-header {
    padding-top: clamp(100px, 15vh, 140px);
    padding-bottom: clamp(40px, 8vh, 60px);
  }
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: min(1.1rem, 5vw);
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }
  .logo i {
    font-size: 1rem;
  }
  .nav-icons {
    gap: clamp(0.2rem, 1vw, 0.5rem);
    flex-shrink: 1;
  }
  .container {
    padding: 0 0.8rem;
  }
  h1, h2, h3 {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 1.5rem 2.5rem; /* Large touch target for mobile focus */
    font-size: 1.15rem;
  }
  .search-btn, .cart-trigger, .menu-toggle {
    padding: 6px; 
    font-size: 1.2rem;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 3rem;
}

.back-to-top:hover {
  background: #000;
  transform: translateY(-5px);
}

/* Why Supplements Section */
.why-supplements {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-soft);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(227, 30, 36, 0.1);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: rgba(227, 30, 36, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(360deg);
}

.why-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Mission Section */
.mission-vision {
  padding: 10rem 0;
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-vision .hero-orb-1 { opacity: 0.1; }

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.mission-content .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.mission-content h2 {
  color: var(--white);
}

.mission-list {
  display: grid;
  gap: 2rem;
}

.mission-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mission-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 0.3rem;
}

.mission-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mission-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.mission-image {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mission-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: var(--transition);
}

.mission-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .mission-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mission-content .section-header {
    text-align: center;
  }
  .mission-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mission-image {
    order: -1;
  }
  .mission-image img {
    height: 400px;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-image-container {
  background: var(--white);
  border-radius: clamp(30px, 5vw, 50px);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.main-image-container img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  transition: var(--transition);
}

.thumbnail-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background: var(--white);
  padding: 0.8rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail.active {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.1);
}

.thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

@media (max-width: 768px) {
  .thumbnail {
    width: 70px;
    height: 70px;
    padding: 0.5rem;
  }
}


/* Card Hover Gallery */
.product-image {
  position: relative;
}

.card-thumbnails {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 10;
}

.product-card:hover .card-thumbnails {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.card-thumb {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #f0f0f0;
  transition: all 0.2s ease;
  background: white;
}

.card-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.1);
}

.card-thumb.active {
  border-color: var(--primary);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

@media (max-width: 768px) {
  .card-thumbnails {
    display: none; /* Hide on mobile to keep it clean */
  }
}


/* Flipkart Style Gallery */
.flipkart-gallery {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.flipkart-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
}

.flip-thumb {
  width: 70px;
  height: 80px;
  border: 1.5px solid #f0f0f0;
  padding: 5px;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-thumb:hover, .flip-thumb.active {
  border-color: #2874f0;
  box-shadow: 0 0 8px rgba(40,116,240,0.15);
}

.flip-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.flipkart-main-img {
  flex: 1;
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.flipkart-main-img img {
  width: 100%;
  max-width: 450px;
  transition: transform 0.3s ease;
}

/* Zoom effect simulation */
.flipkart-main-img:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .flipkart-gallery {
    flex-direction: column-reverse;
  }
  .flipkart-thumbnails {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .flip-thumb {
    width: 60px;
    height: 70px;
  }
}


/* Flipkart Style Product Gallery */
.flipkart-gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vertical-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
    flex-shrink: 0;
}

.v-thumb {
    width: 65px;
    height: 65px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
    background: white;
    transition: all 0.2s ease;
}

.v-thumb:hover, .v-thumb.active {
    border-color: #2874f0; /* Flipkart Blue */
    box-shadow: 0 0 5px rgba(40, 116, 240, 0.2);
}

.v-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-img-container {
    flex: 1;
    position: relative;
    border: 1px solid #f0f0f0;
    background: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    cursor: zoom-in;
    overflow: hidden;
}

.main-img-container img {
    max-width: 100%;
    max-height: 450px;
    transition: transform 0.3s ease;
}

.main-img-container:hover img {
    transform: scale(1.1); /* Simple zoom for now */
}

/* Detail Info Alignment */
.fk-product-info {
    padding-left: 20px;
}

.fk-brand {
    color: #878787;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.fk-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.fk-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fk-price {
    font-size: 2rem;
    font-weight: 600;
}

.fk-original {
    text-decoration: line-through;
    color: #878787;
    font-size: 1.2rem;
}

.fk-discount {
    color: #388e3c;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .flipkart-gallery {
        flex-direction: column-reverse;
    }
    .vertical-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}


/* Card Sub-Images (Screenshot Style) */
.card-thumbnails {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  z-index: 5;
  opacity: 1; /* Always visible as per screenshot style */
  visibility: visible;
}

.card-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #eee;
  background: white;
  transition: all 0.2s ease;
}

.card-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

/* Adjust card image padding to make space for thumbnails if needed */
.product-image {
  padding-bottom: 5px;
}

