@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --color-primary: #C9A84C;      /* Champagne Gold */
  --color-primary-rgb: 201, 168, 76;
  --color-bg: #FAF7F2;           /* Soft Cream White */
  --color-text: #2C2C2C;         /* Deep Charcoal */
  --color-text-muted: #6E6E6E;
  --color-white: #FFFFFF;
  
  /* Brand Accents */
  --color-herbals: #2D6A4F;      /* Forest Green */
  --color-herbals-rgb: 45, 106, 79;
  --color-sparkles: #800020;     /* Rich Burgundy */
  --color-sparkles-rgb: 128, 0, 32;
  --color-glasses: #1B2A4A;      /* Deep Navy */
  --color-glasses-rgb: 27, 42, 74;
  
  /* Fonts */
  --font-title: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Shadows & Transitions */
  --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.02);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b29440;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, .brand-font {
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

p {
  font-weight: 300;
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

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

.gold-line {
  width: 80px;
  height: 2px;
  background: transparent;
  margin: 1.5rem auto 3rem;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

header.scrolled {
  background: var(--color-bg); /* #FAF7F2 */
  border-bottom: none;
  height: 70px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary); /* Champagne Gold #C9A84C */
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

/* Nav Link color based on header background */
header:not(.scrolled) .nav-link {
  color: var(--color-bg); /* Cream White #FAF7F2 */
}

header.scrolled .nav-link {
  color: var(--color-text); /* Deep Charcoal #2C2C2C */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

header:not(.scrolled) .nav-link:hover,
header:not(.scrolled) .nav-link.active {
  color: var(--color-primary);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary); /* Champagne Gold */
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end; /* Sitting bottom left */
  justify-content: flex-start;
  padding: 0 0 8vh 8%; /* Left aligned, sitting above gradient */
  overflow: hidden;
  border: none;
  margin: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top; /* Keeps zoom focused on her face */
  z-index: 1;
  animation: kenBurns 15s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Bottom dark gradient for text readability */
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 80%),
    /* Warm golden/charcoal overlay to blend with the palette and keep left side clean */
    linear-gradient(to right, rgba(44, 38, 28, 0.65) 0%, rgba(44, 38, 28, 0.2) 100%);
  z-index: 2;
}

.hero-content-left {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  text-align: left;
  max-width: 750px;
  width: 100%;
  padding-right: 2rem;
}

/* Animated lines */
.hero-line-wrapper {
  overflow: visible;
  margin-bottom: 1.2rem;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpPhase1 0.6s ease-out forwards;
}

/* Line styles */
.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg); /* Cream White #FAF7F2 */
  letter-spacing: 0.02em;
  margin: 0.3rem 0;
  animation-delay: 0s;
}

.hero-subheadline {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-primary); /* Champagne Gold #C9A84C */
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
  animation-delay: 0.4s;
}

.hero-cta-wrapper {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpPhase1 0.6s ease-out forwards;
  animation-delay: 0.8s;
  margin-top: 2rem;
}

.hero-cta-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.2rem 2.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.hero-cta-btn:hover {
  background: var(--color-primary);
  color: var(--color-text); /* Deep Charcoal #2C2C2C */
}

@keyframes fadeInUpPhase1 {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 45px;
  background: rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: scrollDotPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Animations */
@keyframes slideUpLine {
  from {
    transform: translateY(105%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeInButton {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollDotPulse {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    top: 40px;
  }
  100% {
    top: 40px;
    opacity: 0;
  }
}

/* --- HER STORY SECTION --- */
#story {
  background-color: var(--color-bg); /* Soft Cream White #FAF7F2 */
  overflow: hidden; /* Prevent slide in overflow */
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 0 5rem;
  align-items: start;
}

.story-header {
  grid-column: 1;
  grid-row: 1;
  padding-top: 1.5rem;
  opacity: 1;
  transform: none;
  transition: all 0.6s ease-out;
}

.story-body-content {
  grid-column: 1;
  grid-row: 2;
  padding-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out 0.15s;
}

#story.story-visible .story-header,
#story.story-visible .story-body-content {
  opacity: 1;
  transform: translateY(0);
}

.story-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary); /* Champagne Gold #C9A84C */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.story-heading {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text); /* Deep Charcoal #2C2C2C */
  margin-bottom: 1.5rem;
}

.story-divider {
  width: 80px;
  height: 1.5px;
  background-color: transparent; /* Champagne Gold */
  margin-bottom: 2rem;
}

.story-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text); /* Deep Charcoal */
  margin-bottom: 1.5rem;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-cta-wrapper {
  margin-top: 2.5rem;
}

.story-cta-btn {
  display: inline-block;
  background-color: var(--color-primary); /* Champagne Gold #C9A84C */
  color: var(--color-text); /* Deep Charcoal #2C2C2C */
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.2rem 2.8rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.story-cta-btn:hover {
  background-color: #b29440; /* slightly deepened gold */
}

.story-image-container {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: 8px;
  border: 2px solid var(--color-primary); /* Champagne Gold #C9A84C 2px solid */
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out 0.2s; /* 0.2s delay */
  aspect-ratio: 3/4; /* Match the 768x1024 founder photo aspect ratio exactly */
  align-self: center; /* Center vertically inside grid */
}

#story.story-visible .story-image-container {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- BRAND SECTIONS (COMMON & UNIQUE) --- */
.brand-section {
  position: relative;
}

.brand-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: transparent;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 6rem;
  align-items: start;
  margin-bottom: 5rem;
}

/* For non-reversed grid (Glasses) */
#cee-beauty-glasses .brand-header-col {
  grid-column: 1;
  grid-row: 1;
}

#cee-beauty-glasses .brand-body-col {
  grid-column: 1;
  grid-row: 2;
}

#cee-beauty-glasses .brand-media-col {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

/* For reversed grid (Sparkles) */
.brand-section.reverse .brand-grid {
  grid-template-columns: 1.2fr 1fr;
}

#cee-sparkles .brand-header-col {
  grid-column: 2;
  grid-row: 1;
}

#cee-sparkles .brand-body-col {
  grid-column: 2;
  grid-row: 2;
}

#cee-sparkles .brand-media-col {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.brand-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.brand-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.brand-media-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4/3;
}

.brand-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Products Grid */
.products-header {
  margin-bottom: 3rem;
  text-align: center;
}

.products-header h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.product-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.product-image-container {
  position: relative;
  aspect-ratio: 1/1;
  background: #f7f5f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.product-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding-top: 1.2rem;
  margin-top: auto;
}

.product-status {
  display: none !important;
}

.product-buy-btn {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

/* Button & Link Icons */
.icon-arrow-right {
  transition: transform var(--transition-fast);
}
.product-buy-btn:hover .icon-arrow-right {
  transform: translateX(3px);
}

/* Accordion Bonus Guides */
.guide-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(250, 247, 242, 0.5);
}

.accordion-header-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.guide-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  align-self: flex-start;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  color: var(--color-white);
}

.accordion-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.accordion-trigger {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.accordion-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-smooth);
}

.accordion-item.active .accordion-trigger {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.accordion-item.active .accordion-body {
  max-height: 1200px; /* high value to accommodate content */
  opacity: 1;
}

.accordion-content {
  padding: 0 2.5rem 2.5rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.guide-intro {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--color-primary);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.guide-col h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.guide-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.guide-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* WhatsApp CTA Button Global/Sections */
.cta-wrapper {
  margin-top: 3.5rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366; /* WhatsApp Green */
  color: var(--color-white, #ffffff) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
}

.whatsapp-contact-btn:hover {
  background-color: #128C7E; /* Darker WhatsApp Green */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  color: var(--color-white, #ffffff) !important;
}


/* --- THEME VARIATIONS --- */
/* Cee Herbals */
#cee-herbals {
  background-color: #FAF7F2; /* Soft Cream White #FAF7F2 */
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

/* #cee-herbals.herbals-visible rule cleaned up */

#cee-herbals .green-left-border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-herbals);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
}

#cee-herbals.herbals-visible .green-left-border {
  transform: scaleY(1);
}

#cee-herbals .story-label-minimal {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-herbals);
  display: block;
  margin-bottom: 1.5rem;
}

#cee-herbals .brand-tag {
  color: var(--color-herbals);
}

#cee-herbals .product-tag {
  background: rgba(45, 106, 79, 0.08);
  color: var(--color-herbals);
}

#cee-herbals .product-buy-btn {
  color: var(--color-herbals);
}

#cee-herbals .guide-badge {
  background: var(--color-herbals);
}

#cee-herbals .whatsapp-btn {
  background: var(--color-herbals);
}

#cee-herbals .whatsapp-btn:hover {
  background: #23533e;
}

#cee-herbals .guide-list li::before {
  color: var(--color-herbals);
}

/* 6 Card Grid Layout */
.cee-herbals-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.herbal-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1.5px solid transparent !important;
  background-color: var(--color-white) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015) !important;
  border-radius: 8px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.herbal-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.herbal-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.12), 0 0 12px rgba(201, 168, 76, 0.08) !important;
}

.herbal-card .product-image-container {
  position: relative;
  width: 100%;
  height: 220px; /* Restored to original height for realistic product aspect ratio */
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.herbal-card .product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.herbal-card .product-details {
  padding: 1.8rem 1.6rem 1.8rem !important; /* Shrunk padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.herbal-card .best-value-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background-color: var(--color-herbals);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
}

/* Custom Cee Herbals Card Typography & Layout Details (No Inline Styles) */
#cee-herbals .product-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

#cee-herbals .product-includes {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-herbals);
  margin-bottom: 1rem;
}

#cee-herbals .product-includes div {
  margin-bottom: 0.3rem;
}

.bundle-accordion-box {
  border: 1px solid #2D6A4F;
  background-color: rgba(45, 106, 79, 0.04); /* very light green background */
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.bundle-box-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D6A4F;
  margin-bottom: 0.3rem;
  text-align: left;
}

.bundle-sub-label {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 0.8rem;
  text-align: left;
}

.bundle-footer-note {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(44, 44, 44, 0.6);
  margin: 0.4rem 0 1.2rem;
  line-height: 1.4;
  text-align: center;
}

/* Localized accordion overrides for Flat Tummy System card to prevent bloat */
.bundle-accordion .accordion-item {
  border-bottom: 1px solid rgba(45, 106, 79, 0.15) !important;
}

.bundle-accordion .accordion-item:last-child {
  border-bottom: none !important;
}

.bundle-accordion .accordion-header {
  padding: 0.6rem 0.2rem !important;
  background: none !important;
  border: none !important;
}

.bundle-accordion .accordion-header:hover {
  background: none !important;
}

.bundle-accordion .accordion-title {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
}

.bundle-accordion .accordion-trigger {
  width: 24px !important;
  height: 24px !important;
  background: rgba(45, 106, 79, 0.1) !important;
  color: #2D6A4F !important;
}

.bundle-accordion .accordion-content {
  padding: 0.2rem 0.2rem 0.8rem 0.2rem !important;
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
  color: rgba(44, 44, 44, 0.85) !important;
  text-align: left !important;
}

/* Rotate override for active state trigger */
.bundle-accordion .accordion-item.active .accordion-trigger {
  transform: rotate(180deg) !important;
}

#cee-herbals .combo-note {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(44, 44, 44, 0.6);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

#cee-herbals .whatsapp-btn.order-overlay-btn {
  background: var(--color-herbals);
  color: var(--color-bg);
  justify-content: center;
  width: 100%;
  border: none;
  font-size: 0.85rem;
  padding: 0.75rem 1.2rem;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background 0.3s ease;
}

#cee-herbals .whatsapp-btn.order-overlay-btn:hover {
  background: #23533e;
  transform: translateY(-2px);
}

/* Centered Intro Layout and Sub-Elements overrides */
#cee-herbals .brand-intro-row-single {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

#cee-herbals .brand-intro-row-single .story-content {
  align-items: center;
  text-align: center;
  transform: none;
  opacity: 1;
  transition: none;
  padding: 0;
}

#cee-herbals .brand-intro-row-single .story-divider {
  background-color: var(--color-herbals);
  margin: 0 auto 2rem;
}

#cee-herbals .brand-intro-row-single .story-cta-wrapper {
  margin-top: 2rem;
}

#cee-herbals .brand-intro-row-single .story-cta-btn {
  background-color: var(--color-herbals);
  color: var(--color-bg);
  border: none;
}

.herbal-disclaimer-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  text-align: center;
  max-width: 480px;
  margin: 1.8rem auto 0;
}

.herbal-disclaimer-note p:last-child {
  margin-top: 0.2rem;
}

/* Products Header overrides */
#cee-herbals .products-header {
  margin-top: 6rem;
}

#cee-herbals .products-header .story-label {
  color: var(--color-herbals);
  display: block;
}

#cee-herbals .products-header .story-heading {
  display: block;
  margin-bottom: 1rem;
}

/* Accordion Outer Spacing overrides */
#cee-herbals .guide-accordion-container {
  margin-top: 6rem;
  margin-bottom: 4rem;
}

#cee-herbals .guide-rebuilt-columns {
  margin-top: 2rem;
}

#cee-herbals .guide-accordion-content .text-center {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid transparent;
}

#cee-herbals .guide-accordion-content .text-center p {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

#cee-herbals .begin-journey-btn {
  background-color: var(--color-herbals);
  color: var(--color-bg);
  text-decoration: none;
  display: inline-block;
}

/* Full Width Green Banner */
.green-banner-row {
  background-color: var(--color-herbals);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  margin-top: 5rem;
}

#cee-herbals.herbals-visible .green-banner-row {
  opacity: 1;
}

.green-banner-text {
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Testimonials Area (Cee Herbals) */
.testimonials-grid-herbals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card-herbal {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.testimonial-card-herbal.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-photo-wrapper {
  margin-bottom: 1.5rem;
}

.testimonial-circle-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem;
}

.testimonial-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Wellness Guide Rebuilt split cards styling */
.guide-container-rebuilt {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.guide-rebuilt-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.guide-rebuilt-card {
  background: var(--color-white);
  padding: 3.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  flex-direction: column;
}

.guide-rebuilt-title {
  color: var(--color-herbals) !important;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guide-list-rebuilt {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-list-rebuilt li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text);
}

.guide-list-rebuilt li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-primary);
  font-size: 0.95rem;
}
/* Cee Herbals Accordion Guide */
.guide-accordion-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(45, 106, 79, 0.15); /* Forest Green color for borders */
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.guide-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.guide-accordion-trigger:hover {
  background: rgba(45, 106, 79, 0.03);
}

.guide-accordion-trigger span {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.guide-accordion-trigger svg.accordion-arrow {
  color: var(--color-herbals);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-accordion-container.active .guide-accordion-trigger svg.accordion-arrow {
  transform: rotate(180deg);
}

.guide-accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.guide-accordion-container.active .guide-accordion-body {
  opacity: 1;
}

.guide-accordion-content {
  padding: 0 2.5rem 2.5rem;
}

/* Payment Overlay Modal Styles */
.payment-overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 21, 18, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.payment-overlay-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.payment-modal-container {
  background-color: var(--color-bg);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(201, 168, 76, 0.05);
  border-radius: 12px;
  width: 90%;
  max-width: 550px;
  padding: 3rem 2.5rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.payment-overlay-backdrop.open .payment-modal-container {
  transform: translateY(0);
}

.payment-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
  transition: color 0.25s ease;
}

.payment-modal-close:hover {
  color: var(--color-primary);
}

.payment-modal-heading {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-modal-details {
  background-color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.payment-selected-product, .payment-selected-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.selected-value {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.payment-price-select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  background-color: var(--color-bg);
  color: var(--color-text);
  outline: none;
  cursor: pointer;
}

.payment-price-select:focus {
  border-color: var(--color-primary);
}

.bank-details-box {
  background-color: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bank-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.bank-label {
  color: var(--color-text-muted);
}

.bank-value {
  font-weight: 600;
  color: var(--color-text);
}

.payment-instruction {
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.form-group input, .form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
}

.payment-submit-btn {
  background-color: var(--color-herbals);
  color: var(--color-bg);
  border: none;
  padding: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
  margin-top: 0.5rem;
  width: 100%;
}

.payment-submit-btn:hover {
  background-color: #23533e;
  transform: translateY(-2px);
}

.return-to-products-btn {
  background-color: var(--color-primary) !important;
  color: var(--color-text) !important;
  transition: background-color 0.25s ease, transform 0.25s ease !important;
}

.return-to-products-btn:hover {
  background-color: #b29440 !important;
  transform: translateY(-2px);
}

/* Cee Sparkles */
#cee-sparkles {
  background-color: #FAF4F5; /* subtle rose white background tint */
}
#cee-sparkles .brand-tag {
  color: var(--color-sparkles);
}
#cee-sparkles .product-tag {
  background: rgba(128, 0, 32, 0.08);
  color: var(--color-sparkles);
}
#cee-sparkles .product-buy-btn {
  color: var(--color-sparkles);
}
#cee-sparkles .guide-badge {
  background: var(--color-sparkles);
}
#cee-sparkles .whatsapp-btn {
  background: var(--color-sparkles);
}
#cee-sparkles .whatsapp-btn:hover {
  background: #600018;
}
#cee-sparkles .guide-list li::before {
  color: var(--color-sparkles);
}

/* Cee Sparkles Full Collection CTA */
.sparkles-cta-section {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.sparkles-cta-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-style: italic;
  color: #2C2C2C; /* Deep Charcoal */
  margin-bottom: 1.5rem;
}

.sparkles-cta-btn {
  display: inline-block;
  background-color: #800020; /* Rich Burgundy */
  color: var(--color-bg) !important; /* Cream White text */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Wide letter spacing */
  padding: 1rem 2.2rem; /* Generous padding */
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sparkles-cta-btn:hover {
  background-color: #600018; /* Darker Burgundy */
  transform: translateY(-2px);
}

/* Cee Beauty Glasses */
#cee-beauty-glasses {
  background-color: #F4F6F9; /* subtle navy white background tint */
}
#cee-beauty-glasses .brand-tag {
  color: var(--color-glasses);
}
#cee-beauty-glasses .product-tag {
  background: rgba(27, 42, 74, 0.08);
  color: var(--color-glasses);
}
#cee-beauty-glasses .product-buy-btn {
  color: var(--color-glasses);
}
#cee-beauty-glasses .guide-badge {
  background: var(--color-glasses);
}
#cee-beauty-glasses .whatsapp-btn {
  background: var(--color-glasses);
}
#cee-beauty-glasses .whatsapp-btn:hover {
  background: #111b30;
}
#cee-beauty-glasses .guide-list li::before {
  color: var(--color-glasses);
}

/* Cee Beauty Glasses Full Collection CTA */
.glasses-cta-section {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.glasses-cta-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-style: italic;
  color: #2C2C2C; /* Deep Charcoal */
  margin-bottom: 1.5rem;
}

.glasses-cta-btn {
  display: inline-block;
  background-color: #1B2A4A; /* Deep Navy */
  color: var(--color-bg) !important; /* Cream White text */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Wide letter spacing */
  padding: 1rem 2.2rem; /* Generous padding */
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.glasses-cta-btn:hover {
  background-color: #111B30; /* Darker Navy */
  transform: translateY(-2px);
}

/* --- TESTIMONIALS SECTION --- */
#testimonials {
  background-color: #FAF7F2;
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  
  opacity: 1;
  transform: none;
}

.testimonials-heading {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.8rem;
  
  opacity: 1;
  transform: none;
}

.testimonials-subheading {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  
  opacity: 1;
  transform: none;
}

.testimonials-divider {
  display: none !important;
}

#testimonials.testimonials-visible .testimonials-divider {
  display: none !important;
}

/* CAROUSEL CONTAINER */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1120px; /* Viewport width 964px + padding 120px + margin */
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  opacity: 1;
  transform: none;
}

/* testimonials carousel-wrapper visible cleaned up */

.carousel-viewport {
  width: 100%;
  max-width: 964px; /* 3 cards of 300px + 2 gaps of 32px */
  overflow: hidden;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 32px;
  width: max-content;
}

/* CAROUSEL CARDS */
.carousel-card {
  flex: 0 0 300px;
  width: 300px;
  height: 400px;
  background: var(--color-white);
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  padding: 0 !important;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card components */
.customer-photo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  background-color: #FAF7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.customer-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-photo-circle img.zoom-after-face {
  object-position: right top;
}

.customer-photo-circle img.zoom-red-abaya {
  object-position: center 20%;
}

.customer-photo-circle img.zoom-chioma {
  width: 550%;
  height: auto;
  max-width: none;
  position: absolute;
  top: 1%;
  left: 2%;
}

.customer-photo-circle img.zoom-jewelry {
  object-position: center 75%;
}

.customer-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.product-purchased {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.star-rating {
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  line-height: 1;
}

.carousel-card .testimonial-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(44, 44, 44, 0.85); /* 85% opacity */
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6; /* Prevents overflow inside the card */
  -webkit-box-orient: vertical;
}

/* ARROW BUTTONS */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white, #ffffff);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}

.arrow-btn svg {
  fill: currentColor;
  transition: transform 0.2s ease;
}

.arrow-btn:hover {
  background-color: var(--color-primary);
  color: #FAF7F2; /* Soft Cream background */
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.arrow-btn:active svg {
  transform: scale(0.9);
}

.prev-arrow {
  left: 8px;
}

.next-arrow {
  right: 8px;
}

/* MOBILE RESPONSIVE TESTIMONIALS styles */
@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 0;
  }
  
  .carousel-viewport {
    max-width: 100vw;
    width: 100vw;
  }

  .carousel-card {
    flex: 0 0 100vw;
    width: 100vw;
    height: 420px;
    padding: 0 !important;
  }
  
  .carousel-card .testimonial-text {
    -webkit-line-clamp: 7; /* Allows one more line on taller mobile card */
  }

  .arrow-btn {
    display: none !important;
  }
}

/* --- SHIPPING & LOGISTICS SECTION --- */
#shipping {
  background-color: #FAF8F5;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.shipping-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  margin-bottom: 5rem;
}

/* Flow connector line on desktop */
.shipping-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-primary) 20%, var(--color-primary) 80%, transparent);
  z-index: 1;
}

.shipping-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.shipping-step:hover .step-num-circle {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.2);
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.5;
}

.shipping-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.shipping-card {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}

.shipping-card h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.shipping-card h4 svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.shipping-card p {
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.shipping-card span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.shipping-note {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.05);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
}

.shipping-note p {
  font-size: 0.95rem;
  color: #8c722e;
  font-weight: 500;
}

.shipping-cta-container {
  margin-top: 5rem;
  text-align: center;
}

.shipping-cta-text {
  font-family: var(--font-title);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.shipping-cta-btn {
  background-color: var(--color-primary); /* #C9A84C */
  color: #2C2C2C;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.shipping-cta-btn:hover {
  background-color: #b29440;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 168, 76, 0.25);
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.cta-text {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.final-cta-section .whatsapp-btn {
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.final-cta-section .whatsapp-btn:hover {
  background: #f7f5f0;
  color: #000000;
  transform: translateY(-4px);
}

.final-cta-section .whatsapp-btn svg {
  fill: #25D366; /* WhatsApp Green */
}

/* --- CONTACT SECTION --- */
#contact {
  background: var(--color-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.contact-intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.03);
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-text-box h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-text-box p, 
.contact-text-box a {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.contact-text-box a:hover {
  color: var(--color-primary);
}

.contact-socials-wrapper {
  margin-top: 3.5rem;
  text-align: center;
}

.social-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}

.social-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #2C2C2C;
  margin-bottom: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-map-panel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(201, 168, 76, 0.1);
  aspect-ratio: 1/1;
  background-color: var(--color-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
}

.map-accent-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.03);
  z-index: 1;
}

.map-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.map-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.map-headline {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.map-location-tag {
  background: var(--color-white);
  padding: 1.2rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
}

.map-location-tag h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
}

.map-location-tag p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

/* --- FOOTER --- */
footer {
  background: #2C2C2C !important;
  color: #FFFFFF !important;
  padding: 6rem 0 3rem;
  font-size: 0.9rem;
  border-top: none !important;
}

footer h4,
footer h5,
.footer-socials-wrapper .social-title {
  color: var(--color-primary) !important; /* Champagne Gold #C9A84C */
}

footer p,
.footer-tagline,
.footer-socials-wrapper .social-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
}

footer a,
.footer-links-list a,
.footer-contact-line a,
.footer-bottom-links a,
.footer-policy-link,
.footer-policy-divider {
  color: #FFFFFF !important;
}

footer a:hover,
.footer-links-list a:hover,
.footer-contact-line a:hover,
.footer-bottom-links a:hover,
.footer-policy-link:hover {
  color: var(--color-primary) !important;
}

.footer-socials-wrapper .social-btn {
  background: transparent !important;
  color: #FFFFFF !important;
  border-color: rgba(201, 168, 76, 0.4) !important;
}

.footer-socials-wrapper .social-btn:hover {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-brand-col h4 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-links-col h5, 
.footer-contact-col h5 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0;
}

.footer-links-col h5::after, 
.footer-contact-col h5::after {
  display: none !important;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-contact-line svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-line a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: none;
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* --- ANIMATIONS --- */
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

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

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(45, 106, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 106, 79, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE DESIGN (MOBILE-FIRST OUTLINE) --- */
@media (max-width: 1024px) {
  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .story-decorative-box {
    display: none;
  }
  
  .brand-grid, 
  .brand-section.reverse .brand-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Removed old testimonials grid responsive layout */
  
  .shipping-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .shipping-flow::before {
    display: none; /* Hide line when grid wraps */
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-map-panel {
    aspect-ratio: 16/9;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  /* Mobile Menu navigation */
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2001; /* Keep above overlay */
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg); /* Soft Cream White #FAF7F2 */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 2.2rem;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    z-index: 2000;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu .nav-link {
    display: inline-block;
    font-family: var(--font-title); /* Serif font */
    font-size: 1.8rem; /* Large and easy to tap */
    font-weight: 700;
    color: var(--color-text) !important; /* Deep Charcoal #2C2C2C */
    letter-spacing: 0.05em;
    padding: 0.8rem 2rem;
    width: auto;
  }
  
  .nav-link::after {
    display: none; /* Hide hover line on mobile menu */
  }
  
  .menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile CTA stretches to full width */
  .hero-cta-btn {
    display: block;
    width: 100%;
  }
  
  .hero-section {
    padding: 0 0 6vh 5%;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center top;
    transform-origin: center top;
  }

  .hero-content-left {
    padding-right: 1.5rem;
  }
  
  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .story-header,
  .story-body-content {
    padding: 0;
  }

  .story-cta-btn {
    display: block;
    width: 100%;
  }

  .story-image-container {
    height: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 48%);
    gap: 10px;
    justify-content: center;
  }
  
  .product-card {
    width: 100%;
  }
  
  .products-grid .product-card:last-child:nth-child(odd) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 48%;
  }
  
  .product-image-container,
  .herbal-card .product-image-container {
    aspect-ratio: auto;
    height: 150px !important;
  }
  
  .product-image-container img,
  .herbal-card .product-image-container img {
    height: 150px !important;
  }
  
  .product-details {
    padding: 1rem 0.8rem !important;
  }
  
  .product-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .product-desc {
    font-size: 0.78rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .product-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-top: 0.8rem;
    width: 100%;
    margin-top: auto;
  }
  
  .product-buy-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  #cee-sparkles .product-buy-btn {
    background: var(--color-sparkles);
    color: var(--color-bg) !important;
  }
  
  #cee-sparkles .product-buy-btn:hover {
    background: #600018;
  }
  
  #cee-beauty-glasses .product-buy-btn {
    background: var(--color-glasses);
    color: var(--color-bg) !important;
  }
  
  #cee-beauty-glasses .product-buy-btn:hover {
    background: #111b30;
  }

  /* Custom mobile adjustments for Cee Herbals card details to prevent overflow */
  #cee-herbals .product-desc {
    font-size: 0.76rem;
    line-height: 1.45;
    margin-bottom: 0.8rem;
  }
  
  .bundle-accordion-box {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .bundle-box-label {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }
  
  .bundle-sub-label {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
  
  .bundle-accordion .accordion-title {
    font-size: 0.76rem !important;
  }
  
  .bundle-accordion .accordion-content {
    font-size: 0.72rem !important;
  }
  
  #cee-herbals .combo-note {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .accordion-header {
    padding: 1.5rem 1.2rem;
  }
  
  .accordion-content,
  .guide-accordion-content {
    padding: 0 1.2rem 2rem;
  }

  .product-tag,
  .guide-badge,
  .best-value-badge,
  .testimonial-circle-photo {
    font-size: 0.75rem !important;
  }
  
  /* Removed old testimonials grid responsive layout mobile */
  
  .guide-rebuilt-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .guide-rebuilt-card {
    padding: 2.5rem 2rem;
  }
  
  .shipping-flow {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem 1rem !important;
  }
  
  .shipping-step .step-num-circle {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
  }

  .shipping-step .step-title {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  .shipping-step .step-desc {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    padding: 0 0.2rem !important;
  }
  
  .shipping-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .shipping-card {
    padding: 2rem;
  }
  
  .contact-map-panel {
    aspect-ratio: 1/1;
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-brand-col {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .story-content {
    padding: 2rem 1rem;
  }
  
  .whatsapp-btn {
    padding: 1rem 1.8rem;
    font-size: 0.85rem;
  }
}

/* Custom adjustments for Cee Sparkles and Cee Beauty Glasses product images to prevent cropping */
#cee-sparkles .product-image-container,
#cee-beauty-glasses .product-image-container {
  background: #ffffff;
  padding: 0.6rem;
}

#cee-sparkles .product-image-container img,
#cee-beauty-glasses .product-image-container img {
  object-fit: contain;
}

/* Custom positioning for Cee Sparkles and Cee Beauty Glasses founder main banner images */
#cee-sparkles .brand-media-frame img {
  object-position: center 12% !important;
}

#cee-beauty-glasses .brand-media-frame img {
  object-position: center 7% !important;
}/* --- LEGAL PAGES CUSTOM STYLES & FOOTER POLICY LINKS --- */
.footer-policy-links {
  margin-left: 1.5rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-policy-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: var(--color-primary);
}

.footer-policy-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  user-select: none;
}

.legal-section {
  background-color: #FAF7F2; /* Cream White matching herbals/testimonials */
  min-height: calc(100vh - 300px);
  padding: 160px 0 80px 0; /* Space for fixed header */
  display: flex;
  align-items: center;
}

.legal-content-box {
  background: var(--color-white, #ffffff);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 3.5rem 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.legal-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 3rem;
  text-align: justify;
}

.legal-btn-wrapper {
  text-align: center;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background-color: var(--color-primary);
  color: #FAF7F2 !important;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.legal-back-btn:hover {
  background-color: #a38536; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
  color: #FAF7F2 !important;
}

@media (max-width: 768px) {
  .footer-policy-links {
    margin-left: 0;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .legal-section {
    padding-top: 120px;
    padding-bottom: 3rem;
  }
  .legal-content-box {
    padding: 2.5rem 2rem;
  }
  .legal-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .legal-text {
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: left;
    margin-bottom: 2rem;
  }
}


/* --- SITE-WIDE SNAP REVEAL ANIMATIONS --- */
section:not(.active),
footer:not(.active),
header:not(.active),
.product-card:not(.active),
h1:not(.active), h2:not(.active), h3:not(.active), h4:not(.active), h5:not(.active), h6:not(.active),
img:not(.active),
.story-cta-btn:not(.active),
.whatsapp-btn:not(.active),
.order-overlay-btn:not(.active),
.product-buy-btn:not(.active),
.shipping-cta-btn:not(.active),
.accordion-header:not(.active),
.guide-accordion-trigger:not(.active) {
  opacity: 0;
  transform: translateY(20px);
}

section,
footer,
header,
h1, h2, h3, h4, h5, h6,
img,
.story-cta-btn,
.whatsapp-btn,
.order-overlay-btn,
.product-buy-btn,
.shipping-cta-btn,
.accordion-header,
.guide-accordion-trigger {
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

/* --- DISTRIBUTOR SECTION --- */
#distributor {
  background-color: var(--color-bg);
  border-top: none;
  border-bottom: none;
}

.distributor-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.distributor-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.05);
  margin-top: 1rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: var(--color-bg);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: rgba(201, 168, 76, 0.1);
}

.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}

.checkbox-container .checkbox-checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  margin-left: 0.5rem;
}

.distributor-submit-btn {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg) !important;
  background-color: var(--color-primary);
  border: none;
  border-radius: 4px;
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.distributor-submit-btn:hover {
  background-color: #a38536;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

@media (max-width: 768px) {
  .distributor-form {
    padding: 2rem 1.5rem;
  }
}

/* --- FOOTER SOCIALS WRAPPER --- */
.footer-socials-wrapper {
  margin-top: 2rem;
}

.footer-socials-wrapper .social-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-align: left;
}

.footer-socials-wrapper .social-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  text-align: left;
}

.footer-socials-wrapper .social-links {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .footer-socials-wrapper .social-title,
  .footer-socials-wrapper .social-subtitle {
    text-align: center;
  }
  .footer-socials-wrapper .social-links {
    justify-content: center;
  }
}

