/* ==========================================================================
   Pary — Fresh Clean Beauty Redesign
   Inspired by: The image reference — vibrant fresh green, white, clean beauty
   ========================================================================== */

/* 1. Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Cairo:wght@300;400;600;700&family=Noto+Sans+Arabic:wght@300;400;600;700&display=swap');

/* 2. Design Tokens */
:root {
  /* === LUXURY BOTANICAL PALETTE (Light, Warm Cream & Sage) === */
  --green-900:   #152817;   /* Deep forest ink */
  --green-800:   #234026;   /* Rich forest */
  --green-700:   #345C38;   /* Deep foliage */
  --green-600:   #4A7C4F;   /* Brand primary green */
  --green-500:   #5D9663;   /* Mid-tone botanical sage */
  --green-400:   #7AA87F;   /* Soft sage */
  --green-300:   #A5C3A9;   /* Muted eucalyptus */
  --green-200:   #CDE0CF;   /* Very soft green */
  --green-100:   #EAF2EB;   /* Mist green */
  --green-50:    #F5FAF6;   /* Softest green tint */

  --white:       #FFFFFF;
  --off-white:   #FAF6F0;   /* Premium warm alabaster cream */
  --light-bg:    #F4EFEB;   /* Sand clay background */
  --warm-gray:   #F5F5F3;   /* Linen gray */
  --border:      #ECE6DC;   /* Muted luxury border */
  --border-md:   #D6CDBC;   /* Medium border */

  --text-dark:   #152817;   /* Deep forest ink for high contrast */
  --text-body:   #2C422F;   /* Muted olive-green-black for readability */
  --text-mid:    #4A624E;   /* Medium botanical */
  --text-light:  #708D74;   /* Muted green-gray */
  --text-ghost:  #9BB49F;   /* Muted placeholder */

  --gold:        #C5A059;   /* Sophisticated champagne gold */
  --gold-light:  #DEC492;   /* Light warm gold */
  --gold-bg:     #FAF5EB;   /* Pale gold tint background */

  --red:         #D66B6B;   /* Elegant muted red */

  /* Typography */
  --serif:   'Playfair Display', 'DM Serif Display', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;
  --sans2:   'DM Sans', system-ui, sans-serif;
  --arabic:  'Cairo', 'Noto Sans Arabic', sans-serif;

  /* Spacing */
  --s-xs:  4px;
  --s-sm:  8px;
  --s-md:  16px;
  --s-lg:  24px;
  --s-xl:  40px;
  --s-2xl: 64px;
  --s-3xl: 96px;
  --s-4xl: 128px;

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(31, 48, 33, 0.04);
  --shadow-sm:   0 3px 12px rgba(31, 48, 33, 0.06);
  --shadow-md:   0 12px 32px rgba(31, 48, 33, 0.08);
  --shadow-lg:   0 24px 64px rgba(31, 48, 33, 0.12);
  --shadow-card: 0 4px 20px rgba(31, 48, 33, 0.05);

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-pill: 9999px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 1, 0.5, 1); /* Luxury ease-out */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           all 0.35s var(--ease);
  --t-slow:      all 0.6s var(--ease);
}

/* 3. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lang-ar { font-family: var(--arabic) !important; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* 4. Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

@media (min-width: 1024px) { .container { padding: 0 var(--s-2xl); } }

section { padding: var(--s-3xl) 0; position: relative; }

/* 5. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 400;
}

.section-label, .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-600);
  margin-bottom: var(--s-md);
}

.section-label::before, .section-badge::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  display: inline-block;
}

body.lang-ar .section-label, body.lang-ar .section-badge { letter-spacing: 0; }
body.lang-ar .section-label::before, body.lang-ar .section-badge::before { order: 1; }

.section-label--white, .section-badge--white { color: rgba(255,255,255,0.7); }
.section-label--white::before, .section-badge--white::before { background: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  line-height: 1.15;
  margin-bottom: var(--s-xl);
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--green-600);
}

.section-title--white { color: white; }
.section-title--white em { color: var(--green-300); }

.text-center { text-align: center; }
.text-center .section-title { margin-left: auto; margin-right: auto; max-width: 600px; }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-pill);
  transition: var(--t);
  white-space: nowrap;
}

body.lang-ar .btn { letter-spacing: 0; }

.btn-primary {
  background: var(--green-600);
  color: white;
  box-shadow: 0 4px 20px rgba(78, 155, 76, 0.35);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78, 155, 76, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}
.btn-secondary:hover {
  background: var(--green-600);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: white;
  color: var(--green-700);
  border-color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--green-600);
  padding: 0;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { color: var(--green-700); gap: 14px; }

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: var(--t);
}

/* ==========================================================================
   SECTION 2: Navigation (KEEP as-is, just restyle)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  transition: var(--t-slow);
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(31, 48, 33, 0.04);
  border-bottom: 1px solid rgba(236, 230, 220, 0.7);
  padding: 14px 0;
}

/* White text mode when header is transparent at the top (Left side only) */
.main-header:not(.scrolled):not(.header-solid) .logo-icon { stroke: var(--white); }
.main-header:not(.scrolled):not(.header-solid) .logo-text { color: var(--white); }
.main-header:not(.scrolled):not(.header-solid) .logo-text span { color: var(--white); }
.main-header:not(.scrolled):not(.header-solid) .nav-link { color: rgba(255, 255, 255, 0.85); }
.main-header:not(.scrolled):not(.header-solid) .nav-link:hover, 
.main-header:not(.scrolled):not(.header-solid) .nav-link.active { color: var(--white); }
.main-header:not(.scrolled):not(.header-solid) .nav-link::after { background: var(--white); }
/* Right side icons maintain their default dark green color since they sit on the white background */

.main-header.header-solid {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; }

.logo-img {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-img--dark {
  display: none;
}

.main-header:not(.scrolled):not(.header-solid) .logo-img--light {
  display: none;
}

.main-header:not(.scrolled):not(.header-solid) .logo-img--dark {
  display: block;
}

.main-header.scrolled .logo-img--light,
.main-header.header-solid .logo-img--light {
  display: block;
}

.main-header.scrolled .logo-img--dark,
.main-header.header-solid .logo-img--dark {
  display: none;
}

@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }
  .footer-logo-img {
    height: 38px;
  }
}

.logo-icon {
  width: 28px;
  height: 28px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.8;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.logo-text span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 2px;
}

/* Desktop Nav */
.nav-menu { display: none; }

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--s-xl);
  }
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 0;
  position: relative;
  transition: var(--t);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}

.nav-link:hover, .nav-link.active { 
  color: var(--text-dark); 
}

.nav-link:hover::after, .nav-link.active::after { 
  transform: translateX(-50%) scale(1); 
}

/* Header Actions */
.header-actions { 
  display: flex; 
  align-items: center; 
  gap: var(--s-md); 
}

.action-btn {
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: var(--t);
  position: relative;
  border: 1px solid transparent;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border);
  color: var(--text-dark);
}

.action-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: white;
  font-size: 8px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
  padding: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.lang-btn {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--text-light);
  transition: var(--t);
}

.lang-btn.active {
  background: var(--green-600);
  color: white;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 12px;
  cursor: pointer;
  z-index: 110;
}

@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.mobile-menu-toggle span {
  width: 100%;
  height: 1.5px;
  background: var(--green-700);
  transition: var(--t);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.25px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--green-900);
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--t-slow);
}

.mobile-nav.active { opacity: 1; pointer-events: auto; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-lg);
  margin-bottom: var(--s-2xl);
}

.mobile-nav-link {
  color: rgba(255,255,255,0.85);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  font-style: italic;
  transition: var(--t);
}

.mobile-nav-link:hover { color: var(--green-300); }

/* ==========================================================================
   SECTION 3: HERO — Diagonal Split with Portrait
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  /* CSS gradient split — no extra wrappers needed */
  background: linear-gradient(105deg, var(--green-900) 54%, var(--off-white) 54%);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

/* Subtle texture grain on the dark side */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(74,124,79,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 20%,  rgba(197,160,89,0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Gold accent line on the diagonal */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 54%;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(197,160,89,0.5) 20%,
    rgba(197,160,89,0.8) 50%,
    rgba(197,160,89,0.5) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
  transform: skewX(-8deg);
  transform-origin: top;
}

@media (max-width: 1023px) {
  .hero-section {
    background: var(--green-900);
    flex-direction: column;
  }
  .hero-section::after { display: none; }
}

.hero-noise { display: none; }

/* Grid: left text col slightly wider than right image col */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
    padding-bottom: 0;
    align-items: stretch;
  }
}

/* ── LEFT: text panel ── */
.hero-content {
  padding: 40px 56px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 130px 64px 80px 0;
    min-height: 100vh;
  }
}

@media (max-width: 1023px) {
  .hero-content {
    padding: 0 24px 48px;
    align-items: center;
    text-align: center;
  }
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.3);
  color: var(--gold-light);
  padding: 6px 16px 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* Large editorial headline */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.5vw, 5.25rem);
  line-height: 1.04;
  font-weight: 400;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.025em;
  max-width: 560px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-weight: 400;
  margin-top: 6px;
}

/* Thin decorative rule under title */
.hero-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 28px;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 400px;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Gold primary button on dark bg */
.hero-content .btn-primary {
  background: var(--gold);
  color: var(--green-900);
  border-color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hero-content .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(197,160,89,0.4);
  color: var(--green-900);
}
.hero-content .btn-secondary {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  background: transparent;
}
.hero-content .btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Trust row */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.hero-trust-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 3;
  flex-shrink: 0;
}

/* ── RIGHT: portrait image panel ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 48px 0 0 64px;
  overflow: visible;  /* allow image to bleed out of bounds */
}

@media (min-width: 1024px) {
  .hero-visual {
    min-height: 100vh;
    padding: 0 0 0 56px;
    align-items: flex-end;
    overflow: visible;
  }
}

@media (max-width: 1023px) {
  .hero-visual {
    padding: 0 24px;
    justify-content: center;
    align-items: center;
  }
}

/* Large decorative ring behind the portrait */
.hero-img-backdrop {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1.5px solid rgba(197,160,89,0.3);
  border-radius: 50%;
  bottom: 60px;
  left: 50%;
  transform: translateX(-40%);
  z-index: 0;
  pointer-events: none;
}

.hero-img-backdrop::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 50%;
}

/* The tall portrait photo — overflows top of the container */
.hero-skincare-img {
  width: auto;
  max-width: 100%;
  height: 90vh;
  max-height: 820px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
  z-index: 2;
  /* Pull upward beyond the hero section top edge */
  margin-top: -60px;
  box-shadow:
    -24px 0 80px rgba(21,40,23,0.25),
    0 -16px 60px rgba(21,40,23,0.08);
  transition: transform 1s var(--ease);
}

@media (max-width: 1023px) {
  .hero-skincare-img {
    height: 60vw;
    max-height: 400px;
    border-radius: var(--r-xl);
    margin-top: 0;
  }
}

.hero-visual:hover .hero-skincare-img {
  transform: translateY(-6px);
}

/* Floating glassmorphism stat cards */
.hero-float-card {
  display: none;
  position: absolute;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: 0 20px 60px rgba(21,40,23,0.12);
  align-items: center;
  gap: 14px;
  z-index: 6;
}

@media (min-width: 1024px) {
  .hero-float-card { display: flex; }
}

.hero-float-card--1 {
  bottom: 200px;
  left: 0px;
  animation: float-card 5s ease-in-out infinite alternate;
}

.hero-float-card--2 {
  top: 140px;
  right: -24px;
  animation: float-card 7s ease-in-out 1.2s infinite alternate;
}

@keyframes float-card {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.hfc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bg), rgba(197,160,89,0.1));
  border: 1px solid rgba(197,160,89,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hfc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.hfc-text { display: flex; flex-direction: column; gap: 2px; }
.hfc-label { font-size: 9px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.hfc-value { font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); font-family: var(--serif); }






/* ==========================================================================
   SECTION 3.5: Marquee Trust Ticker
   ========================================================================== */
.marquee-section {
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-section:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--off-white);
  text-transform: none;
  font-style: italic;
  white-space: nowrap;
  font-family: var(--serif);
}

.marquee-dot {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  font-style: normal;
}

/* ==========================================================================
   SECTION 4: Stats Bar — Premium Minimal Showcase
   ========================================================================== */
.stats-section {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid rgba(197,160,89,0.15);
  border-bottom: 1px solid rgba(197,160,89,0.15);
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px var(--s-lg);
}

@media (min-width: 768px) {
  .stats-grid { 
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  text-align: center;
  padding: var(--s-lg);
  position: relative;
  transition: var(--t);
}

@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.3), transparent);
  }
  
  [dir="rtl"] .stat-item:not(:last-child)::after {
    right: auto;
    left: 0;
  }
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.stat-suffix {
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   SECTION 5: Categories (KEEP — user wants to keep this)
   ========================================================================== */
.categories-section {
  background: var(--off-white);
  padding: 120px 0;
  position: relative;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 640px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  /* Create asymmetric staggering effect */
  .category-card:nth-child(even) {
    transform: translateY(60px);
  }
}

.category-card {
  position: relative;
  /* Arched frame */
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  aspect-ratio: 1 / 1.4;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  background: var(--white);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(21,40,23,0.12);
}

@media (min-width: 1024px) {
  /* Combine hover with staggered offset */
  .category-card:nth-child(even):hover {
    transform: translateY(52px) scale(1.02);
  }
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .category-card-img {
  transform: scale(1.08);
}

/* Glassmorphism label container that slides up */
.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(21,40,23,0.95) 0%, rgba(21,40,23,0.7) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px 24px;
  color: white;
  text-align: center;
  /* Start slightly hidden */
  transform: translateY(16px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .category-card-overlay {
  transform: translateY(0);
}

.category-name {
  font-size: 1.75rem;
  font-family: var(--serif);
  color: white;
  margin-bottom: 6px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.category-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}

.category-cta {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease 0.1s;
}

.category-card:hover .category-cta { 
  transform: translateY(0); 
  opacity: 1; 
}

/* ==========================================================================
   SECTION 6: Brand Philosophy — Overlapping Luxury Layout
   ========================================================================== */
.philosophy-section {
  background: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .philosophy-inner { 
    grid-template-columns: 5fr 7fr; 
    gap: 0;
  }
}

/* Image half */
.philosophy-img-half {
  position: relative;
  z-index: 1;
}

/* Gold ring backdrop for philosophy */
.philosophy-img-half::before {
  content: '';
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(197,160,89,0.3);
  border-radius: 50%;
  top: -20px;
  left: -20px;
  z-index: -1;
}

.philosophy-img-half::after {
  content: '';
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 50%;
  top: 4px;
  left: 4px;
  z-index: -1;
}

.philosophy-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 20px 40px rgba(21,40,23,0.08);
}

.philosophy-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 20px 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  text-align: center;
  border: 1px solid rgba(197,160,89,0.2);
}

.philosophy-badge-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.philosophy-badge-txt {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Content half - Overlapping */
.philosophy-content-half {
  background: var(--off-white);
  padding: 48px 32px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid rgba(197,160,89,0.1);
}

@media (min-width: 1024px) {
  .philosophy-content-half { 
    padding: 80px 72px; 
    margin-left: -80px; /* Force overlap */
    margin-top: 60px;
  }
}

/* Elegant Drop Cap for the first paragraph */
.philosophy-desc {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 24px;
}

.philosophy-desc::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 4px;
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 400;
}

.philosophy-desc-secondary {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
}

/* Ingredient mini-list */
.philosophy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.philosophy-tag {
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--gold-dark);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 7: Commitments — Minimalist Line-Art
   ========================================================================== */
.commitments-section {
  background: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid rgba(197,160,89,0.15);
}

.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}

@media (min-width: 640px) {
  .commitments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .commitments-grid { 
    grid-template-columns: repeat(5, 1fr); 
    gap: 24px;
  }
}

.commitment-card {
  background: transparent;
  padding: 16px;
  text-align: center;
  transition: transform 0.4s ease;
  cursor: default;
}

.commitment-card:hover {
  transform: translateY(-5px);
}

.commitment-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: transform 0.4s ease;
}

.commitment-card:hover .commitment-icon-wrapper {
  transform: scale(1.1);
  color: var(--green-900);
}

.commitment-icon-wrapper svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1; /* Thin elegant line art */
}

.commitment-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.commitment-desc {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ==========================================================================
   SECTION 7.5: Ingredient Spotlight (The Herbarium)
   ========================================================================== */
.herbarium-section {
  background: var(--green-900);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.herbarium-header {
  text-align: center;
  margin-bottom: 60px;
}

.herbarium-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 24px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.herbarium-scroll-container::-webkit-scrollbar {
  display: none;
}

.herbarium-track {
  display: flex;
  gap: 32px;
  width: max-content;
  margin: 0 auto;
}

.herbarium-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.herbarium-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.herbarium-img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.herbarium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.herbarium-card:hover .herbarium-img {
  transform: scale(1.05);
}

.herbarium-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.herbarium-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.herbarium-origin {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.herbarium-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   SECTION 8: Products — Clean White Grid
   ========================================================================== */
.products-section {
  background: var(--white);
  padding: var(--s-3xl) 0;
}

/* Filter Tabs */
.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--s-2xl);
}

.filter-tab {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--text-mid);
  background: transparent;
  transition: all 0.4s ease;
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-tab.active {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
}

@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product Card — Luxury Editorial */
.product-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(21,40,23,0.08);
  border-color: rgba(197,160,89,0.15);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

.product-badge.bestseller { color: var(--gold); border: 1px solid var(--gold); }
.product-badge.new { color: var(--green-900); border: 1px solid var(--green-900); }
.product-badge.organic { color: var(--green-700); border: 1px solid rgba(74,124,79,0.4); }

/* Product image with 4:5 portrait ratio */
.product-img-wrapper {
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.product-card-img {
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
}

.product-card:hover .product-card-img { 
  transform: scale(1.08) translateY(-4px); 
}

/* Quick add hover - Luxury style sliding from bottom */
.product-card-cta-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 6;
  cursor: pointer;
  border: none;
}

.product-card:hover .product-card-cta-hover { 
  transform: translateY(0); 
}

/* Product info */
.product-info {
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--s-md);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--s-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-mid);
}

.rating-stars { display: flex; gap: 1px; }
.rating-stars svg { width: 11px; height: 11px; fill: var(--gold); stroke: none; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-md);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.product-price {
  font-family: var(--sans);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.add-to-cart-btn {
  background: var(--white);
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  border: 1px solid var(--border);
}

.add-to-cart-btn:hover {
  background: var(--green-900);
  color: white;
  border-color: var(--green-900);
  transform: scale(1.08);
}

.add-to-cart-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ==========================================================================
   SECTION 9: Testimonials — Luxury Light Carousel
   ========================================================================== */
.testimonials-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-3xl) 0;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-section .section-title { color: var(--text-dark); }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-label::before { background: var(--gold); }

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--s-sm);
}

@media (min-width: 768px) { .testimonial-slide { min-width: 50%; } }

.testimonial-card {
  background: transparent;
  border: none;
  padding: 40px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  position: relative;
  text-align: center;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--sans2);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--s-xl);
  flex-grow: 1;
}

.testimonial-author-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
  margin-top: auto;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 400;
  font-family: var(--serif);
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.author-meta { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 0.9375rem; color: var(--text-dark); }
.author-city { font-size: 0.8rem; color: var(--gold); font-weight: 500; }

/* Rating stars in testimonials */
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s-md);
}

.testi-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  stroke: none;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  margin-top: var(--s-2xl);
  position: relative;
  z-index: 5;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: var(--t);
}

.carousel-btn:hover {
  background: var(--green-900);
  color: white;
  border-color: var(--green-900);
}

.carousel-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-md);
  transition: var(--t);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  background: var(--gold);
  border-radius: 4px;
}

/* ==========================================================================
   SECTION 10: Journal / Blog — Minimal Cards
   ========================================================================== */
.journal-section {
  background: var(--off-white);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
}

@media (min-width: 768px) { .journal-grid { grid-template-columns: repeat(3, 1fr); } }

.journal-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.journal-card:hover { transform: translateY(-8px); }
.journal-card:hover .journal-card-img { transform: scale(1.08); }

.journal-img-wrapper { 
  height: 300px; 
  overflow: hidden; 
  position: relative; 
  border-radius: 200px 200px 0 0;
}

.journal-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }

.journal-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-700);
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.journal-card-info {
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.journal-meta { font-size: 0.75rem; color: var(--text-ghost); margin-bottom: var(--s-sm); font-weight: 500; }

.journal-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: var(--s-md);
  color: var(--text-dark);
  flex-grow: 1;
}

.read-more-link {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: var(--t);
}

.read-more-link:hover { gap: 14px; color: var(--green-700); }
.read-more-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: var(--t); }

/* ==========================================================================
   SECTION 11: Newsletter — Minimalist Dark
   ========================================================================== */
.newsletter-section {
  background: var(--green-900);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.newsletter-deco-left, .newsletter-deco-right {
  display: none; /* Hide old decos */
}

.newsletter-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.newsletter-icon { 
  width: 48px; 
  height: 48px; 
  margin: 0 auto 32px; 
  stroke: var(--gold); 
  fill: none; 
  stroke-width: 1; 
}

.newsletter-title { 
  color: var(--white); 
  font-size: clamp(2rem, 5vw, 3rem); 
  margin-bottom: 16px; 
  font-family: var(--serif);
  font-weight: 400;
}

.newsletter-subtitle { 
  font-size: 1rem; 
  color: rgba(255,255,255,0.7); 
  margin-bottom: 48px; 
  line-height: 1.75; 
  font-family: var(--sans);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
    gap: 32px;
    align-items: flex-end;
    justify-content: center;
  }
}

.newsletter-input {
  width: 100%;
  max-width: 400px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 12px 0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.newsletter-btn {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: var(--r-pill);
  padding: 12px 32px;
  transition: all 0.4s ease;
}

.newsletter-btn:hover {
  background: var(--gold);
  color: var(--green-900);
}

.newsletter-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-style: italic; }

/* ==========================================================================
   SECTION 12: Footer — Luxury Dark
   ========================================================================== */
.main-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
  padding-bottom: 40px;
  font-size: 0.875rem;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px 40px;
  margin-bottom: 80px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand-col { display: flex; flex-direction: column; gap: 24px; }

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-icon { stroke: var(--gold); }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text span { color: var(--gold); }

.footer-tagline { color: rgba(255,255,255,0.6); max-width: 300px; line-height: 1.75; font-size: 0.875rem; }

.social-links { display: flex; gap: 16px; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.social-btn:hover { 
  background: var(--gold); 
  color: var(--green-900); 
  transform: translateY(-4px); 
}
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col-title {
  color: var(--white);
  font-size: 0.75rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.footer-links { display: flex; flex-direction: column; gap: 16px; }

.footer-link { color: rgba(255,255,255,0.6); transition: all 0.3s ease; }
.footer-link:hover { color: var(--gold); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
}

@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-legal-links { display: flex; gap: 24px; align-items: center; }
.footer-legal-link {
  color: #ffffff !important;
  opacity: 0.95;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}
.footer-legal-link:hover {
  opacity: 1;
  color: var(--gold) !important;
  text-decoration: underline;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes float { 0% { transform: translateY(0); } 100% { transform: translateY(-14px); } }
@keyframes float-badge { 0% { transform: translateY(0); } 100% { transform: translateY(-7px); } }

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */
@media (max-width: 640px) {
  section { padding: var(--s-2xl) 0; }
  .newsletter-section { padding: var(--s-3xl) 0; }
}

/* ==========================================================================
   SECTION 13: SHOPPING CART DRAWER
   ========================================================================== */

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 31, 16, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Cart Drawer Panel */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(100%);
}

.cart-drawer.active {
  transform: translateX(0);
}

/* RTL Slide-out Support */
html[dir="rtl"] .cart-drawer,
body.lang-ar .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

html[dir="rtl"] .cart-drawer.active,
body.lang-ar .cart-drawer.active {
  transform: translateX(0);
}

/* Cart Header */
.cart-drawer-header {
  padding: var(--s-lg) var(--s-xl);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--warm-gray);
}

.cart-drawer-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
}

.cart-title-icon {
  width: 20px;
  height: 20px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2;
}

.cart-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--t);
  background: rgba(0,0,0,0.03);
}

.cart-close:hover {
  background: var(--green-100);
  color: var(--green-700);
}

.cart-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

/* Shipping Promo & Progress Bar */
.cart-shipping-promo {
  padding: var(--s-md) var(--s-xl);
  background: var(--green-50);
  border-bottom: 1px solid var(--border);
}

.cart-progress-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.4;
}

.progress-remaining {
  color: var(--green-600);
  font-weight: 700;
}

.cart-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--border-md);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.cart-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
  border-radius: var(--r-pill);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cart Scrollable Items */
.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: var(--s-md) var(--s-xl);
}

/* Empty State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--s-3xl) 0;
  text-align: center;
  color: var(--text-light);
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  stroke: var(--text-ghost);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: var(--s-md);
}

.cart-empty-text {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Cart Item Row */
.cart-item-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: var(--s-md);
  padding: var(--s-lg) 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--warm-gray);
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.cart-item-unit-price {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  margin-top: 6px;
}

/* Quantity Selector */
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-md);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: white;
}

.quantity-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--t);
}

.quantity-btn:hover {
  background: var(--green-100);
  color: var(--green-700);
}

.quantity-btn svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 3;
}

.qty-val {
  font-size: 0.8125rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--text-dark);
}

.cart-item-remove {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: var(--t);
}

.cart-item-remove:hover {
  opacity: 1;
  text-decoration: underline;
}

.cart-item-price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

/* Cart Drawer Footer */
.cart-drawer-footer {
  padding: var(--s-xl);
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
}

.cart-summary-row:first-of-type {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 6px;
}

/* ==========================================================================
   2D CARD LIFT & BOTANICAL GLOW HOVER EFFECTS (HIGH PERFORMANCE)
   ========================================================================== */

.product-card, .category-card, .journal-card {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-300);
  box-shadow: 0 12px 30px rgba(78, 155, 76, 0.12); /* Subtle hardware-accelerated botanical glow */
}

.category-card:hover {
  box-shadow: 0 12px 32px rgba(78, 155, 76, 0.16);
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(78, 155, 76, 0.1);
}

/* Product Card Skeleton Shimmer Loader */
.product-card-skeleton {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  height: 440px;
}

.pcs-img {
  width: 100%;
  height: 220px;
  border-radius: var(--r-md);
}

.pcs-meta {
  width: 30%;
  height: 10px;
}

.pcs-title {
  width: 75%;
  height: 20px;
}

.pcs-desc {
  width: 90%;
  height: 12px;
}

.pcs-rating {
  width: 40%;
  height: 12px;
}

.pcs-price {
  width: 50%;
  height: 22px;
  margin-top: auto;
}

/* ==========================================================================
   BOTANICAL DECORATIVE LEAF PLACEMENTS (HIGH PERFORMANCE 2D)
   ========================================================================== */

.hero-section, .about-section, .products-section, .journal-section {
  position: relative;
  overflow: hidden; /* Prevents decorative leaves from causing horizontal page scrolling */
}

.botanical-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--green-300);
  opacity: 0.05;
  user-select: none;
  transition: opacity 0.3s ease;
}

/* Responsive layout adjustments for decorations */
@media (max-width: 767px) {
  .botanical-decor {
    opacity: 0.03; /* Lower opacity on mobile to maintain high contrast */
  }
}

/* Specific placements & rotation angles */
.decor-leaf-1 {
  top: 8%;
  right: -40px;
  width: 180px;
  height: 180px;
  transform: rotate(45deg);
}

.decor-leaf-2 {
  bottom: 8%;
  left: -30px;
  width: 140px;
  height: 140px;
  transform: rotate(-35deg);
}

.decor-leaf-3 {
  top: 4%;
  left: -50px;
  width: 170px;
  height: 170px;
  transform: rotate(20deg);
}

.decor-leaf-4 {
  bottom: 6%;
  right: -40px;
  width: 160px;
  height: 160px;
  transform: rotate(-50deg);
}

/* ==========================================================================
   PRODUCT DETAILS PAGE LAYOUT & COMPONENTS
   ========================================================================== */

.product-details-page {
  padding: 90px 0 60px 0;
  background-color: var(--bg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--s-xl);
}

.breadcrumb-link {
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--green-300);
}

.breadcrumb-separator {
  color: var(--border);
  user-select: none;
}

.breadcrumb-active {
  color: var(--text-dark);
  font-weight: 500;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left Column: Image Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.product-main-image-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 500px;
  position: relative;
}

@media (max-width: 576px) {
  .product-main-image-card {
    height: 350px;
    padding: 15px;
  }
}

.product-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}

.product-thumbnail-btn {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-sm);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-thumbnail-btn:hover {
  border-color: var(--green-200);
}

.product-thumbnail-btn.active {
  border-color: var(--green-300);
  box-shadow: 0 0 0 2px rgba(78, 155, 76, 0.15);
}

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

/* Right Column: Info & Buy Options */
.product-meta-info {
  display: flex;
  flex-direction: column;
}

.product-detail-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: var(--s-sm);
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--s-md);
  font-family: var(--serif);
}

@media (max-width: 576px) {
  .product-detail-title {
    font-size: 1.85rem;
  }
}

.product-detail-rating-row {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-bottom: var(--s-lg);
}

.product-detail-stars {
  display: flex;
  gap: 2px;
}

.product-detail-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold); /* warm gold stars */
}

.product-detail-reviews-link {
  font-size: 0.8125rem;
  color: var(--text-mid);
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 600;
}

.product-detail-reviews-link:hover {
  color: var(--gold);
}

.product-detail-price {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--s-lg);
  font-family: var(--serif);
}

.product-detail-short-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: var(--s-xl);
}

.product-detail-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-xs);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-700);
  background-color: rgba(93, 150, 99, 0.08);
  border: 1px solid rgba(93, 150, 99, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: var(--s-xl);
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-detail-stock-badge svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

/* Buy Box: Qty Selector and CTA Button */
.product-detail-buy-box {
  display: flex;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

@media (max-width: 480px) {
  .product-detail-buy-box {
    flex-direction: column;
  }
}

.product-detail-qty {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px;
  height: 54px;
}

.product-detail-qty-btn {
  background: none;
  border: none;
  width: 38px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: color 0.2s ease;
}

.product-detail-qty-btn:hover {
  color: var(--gold);
}

.product-detail-qty-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.product-detail-qty-val {
  width: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
  user-select: none;
}

.product-detail-add-btn {
  flex: 1;
  height: 54px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  background: var(--green-900);
  color: white;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(21, 40, 23, 0.15);
}

.product-detail-add-btn:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 40, 23, 0.25);
}

.product-detail-add-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Accordion Component */
.specs-accordion {
  border-top: 1px solid var(--border);
  margin-top: var(--s-lg);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: var(--s-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accordion-header:hover {
  color: var(--gold);
}

.accordion-icon {
  transition: transform 0.4s var(--ease);
  color: var(--text-light);
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accordion-content-inner {
  padding-bottom: var(--s-lg);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
}

.accordion-content-inner p {
  margin-bottom: var(--s-md);
}

.accordion-content-inner p:last-child {
  margin-bottom: 0;
}

.accordion-ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--s-sm);
}

.ingredient-pill {
  font-size: 0.75rem;
  background-color: var(--off-white);
  color: var(--text-mid);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
}

/* Reviews Section */
.product-reviews-section {
  padding: var(--s-3xl) 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.reviews-summary-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xs);
}

.reviews-summary-score {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: var(--s-xs);
}

.reviews-summary-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--s-sm);
}

.reviews-summary-stars svg {
  width: 24px;
  height: 24px;
  fill: #E5A93B;
}

.reviews-summary-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Individual Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
}

.review-row {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--s-xl);
}

.review-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-row-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s-sm);
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-200), var(--green-300));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: var(--s-xs);
}

.verified-badge {
  color: var(--green-300);
  display: flex;
  align-items: center;
}

.verified-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s-xs);
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #E5A93B;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-medium);
}

/* Related Products Section */
.related-products-section {
  padding: 80px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
[dir="rtl"] #toast-container { right: auto; left: 24px; }

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 360px;
  pointer-events: all;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s var(--ease);
  border-left: 4px solid var(--green-500);
}
[dir="rtl"] .toast { transform: translateX(-110%); border-left: none; border-right: 4px solid var(--green-500); }
.toast--visible { transform: translateX(0); opacity: 1; }
.toast--hiding { transform: translateX(110%); opacity: 0; }
[dir="rtl"] .toast--hiding { transform: translateX(-110%); }
.toast--wishlist { border-left-color: #e74c7c; }
[dir="rtl"] .toast--wishlist { border-left: none; border-right-color: #e74c7c; }
.toast--info { border-left-color: var(--text-mid); }
.toast--error { border-left-color: var(--red); }

.toast-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-600); }
.toast--wishlist .toast-icon { color: #e74c7c; }
.toast--info .toast-icon { color: var(--text-mid); }
.toast--error .toast-icon { color: var(--red); }
.toast-msg { font-size: 0.875rem; font-weight: 500; color: var(--text-dark); flex: 1; }
.toast-close { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: var(--text-ghost); flex-shrink: 0; border-radius: 50%; transition: var(--t); }
.toast-close:hover { background: var(--green-100); color: var(--text-dark); }
.toast-close svg { width: 12px; height: 12px; }

/* ==========================================================================
   WISHLIST DRAWER
   ========================================================================== */
.wishlist-overlay {
  position: fixed; inset: 0;
  background: rgba(17, 31, 16, 0.5);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(4px);
}
.wishlist-overlay.active { opacity: 1; pointer-events: all; }

.wishlist-drawer {
  position: fixed; top: 0; left: -420px; width: 420px; height: 100dvh;
  background: var(--white); z-index: 301;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: left 0.4s var(--ease);
}
.wishlist-drawer.active { left: 0; }
[dir="rtl"] .wishlist-drawer { left: auto; right: -420px; transition: right 0.4s var(--ease); }
[dir="rtl"] .wishlist-drawer.active { right: 0; }

.wishlist-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.wishlist-drawer-title { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.25rem; color: var(--text-dark); }
.wishlist-title-icon { width: 22px; height: 22px; fill: #e74c7c; stroke: #e74c7c; stroke-width: 1.5; }
.wishlist-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--t); color: var(--text-body); }
.wishlist-close:hover { background: var(--green-100); }
.wishlist-close svg { width: 18px; height: 18px; }

.wishlist-drawer-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }

.wishlist-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; text-align: center; color: var(--text-light); padding: 40px; }
.wishlist-empty-state p { font-size: 1rem; font-weight: 500; color: var(--text-mid); }

.wishlist-item-row { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--t); }
.wishlist-item-row:hover { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.wishlist-item-img-wrap { flex-shrink: 0; width: 70px; height: 70px; border-radius: var(--r-sm); overflow: hidden; background: var(--light-bg); }
.wishlist-item-img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-item-details { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.wishlist-item-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-item-price { font-size: 0.9375rem; font-weight: 700; color: var(--green-700); }
.wishlist-item-actions { display: flex; gap: 8px; }
.wishlist-move-to-cart { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 600; color: var(--green-700); padding: 5px 10px; border: 1.5px solid var(--green-500); border-radius: var(--r-pill); transition: var(--t); }
.wishlist-move-to-cart:hover { background: var(--green-600); color: var(--white); }
.wishlist-remove-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; color: var(--text-ghost); border: 1.5px solid var(--border); transition: var(--t); }
.wishlist-remove-btn:hover { background: #fff0f0; color: var(--red); border-color: var(--red); }

/* Wishlist heart button on cards */
.wishlist-heart-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t); color: var(--text-ghost);
}
[dir="rtl"] .wishlist-heart-btn { right: auto; left: 10px; }
.wishlist-heart-btn:hover { background: white; color: #e74c7c; transform: scale(1.1); }
.wishlist-heart-btn.wishlisted { color: #e74c7c; background: #fff0f7; }
.wishlist-heart-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.wishlist-heart-btn.wishlisted svg { fill: #e74c7c; }

/* Product page wishlist heart */
.product-wishlist-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-ghost); transition: var(--t);
  flex-shrink: 0;
}
.product-wishlist-btn:hover { border-color: #e74c7c; color: #e74c7c; background: #fff0f7; }
.product-wishlist-btn.wishlisted { color: #e74c7c; border-color: #e74c7c; background: #fff0f7; }
.product-wishlist-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.product-wishlist-btn.wishlisted svg { fill: #e74c7c; }

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(17, 31, 16, 0.75);
  backdrop-filter: blur(12px) saturate(1.4);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8vh; padding-inline: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.search-overlay.active { opacity: 1; pointer-events: all; }

.search-panel {
  width: 100%; max-width: 640px;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(-20px) scale(0.97);
  transition: transform 0.35s var(--ease-spring), opacity 0.3s var(--ease);
  opacity: 0;
}
.search-overlay.active .search-panel { transform: translateY(0) scale(1); opacity: 1; }

.search-form { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.search-form-icon { color: var(--text-mid); flex-shrink: 0; }
.search-form-icon svg { width: 20px; height: 20px; }
.search-input { flex: 1; font-size: 1.0625rem; color: var(--text-dark); background: none; font-family: var(--sans); }
.search-input::placeholder { color: var(--text-ghost); }
.search-input:focus { outline: none; }
.search-overlay-close { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--green-100); color: var(--text-mid); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; transition: var(--t); flex-shrink: 0; }
.search-overlay-close:hover { background: var(--green-200); color: var(--text-dark); }

.search-results { max-height: 56vh; overflow-y: auto; padding: 12px; }
.search-results-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); padding: 4px 8px 10px; }
.search-result-item { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: var(--r-md); transition: var(--t); }
.search-result-item:hover { background: var(--green-50); }
.search-result-img { width: 50px; height: 50px; border-radius: var(--r-sm); object-fit: cover; background: var(--light-bg); flex-shrink: 0; }
.search-result-info { flex: 1; }
.search-result-cat { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-600); }
.search-result-name { font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); }
.search-result-name mark { background: var(--green-200); border-radius: 3px; padding: 0 2px; color: var(--green-800); }
.search-result-price { font-weight: 700; color: var(--green-700); font-size: 0.9375rem; flex-shrink: 0; }
.search-no-results { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 40px 20px; color: var(--text-light); text-align: center; }
.search-no-results p { font-size: 0.9375rem; font-weight: 500; color: var(--text-mid); }

/* Wishlist counter badge in header */
.wishlist-count {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #e74c7c; color: white;
  font-size: 0.6rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-600);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(78,155,76,0.4);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-spring), background 0.2s var(--ease);
}
#back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-to-top:hover { background: var(--green-700); transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; }
[dir="rtl"] #back-to-top { right: auto; left: 28px; }

/* ==========================================================================
   PAGE TRANSITIONS
   ========================================================================== */
#page-transition {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--green-600);
  pointer-events: none; opacity: 1;
  transition: opacity 0.4s var(--ease);
}
body.page-loaded #page-transition { opacity: 0; }
#page-transition.active { opacity: 1; pointer-events: all; }

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
#cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 5000;
  background: rgba(17, 31, 16, 0.96);
  backdrop-filter: blur(20px);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-spring);
}
#cookie-consent.visible { transform: translateY(0); }

.cookie-text { flex: 1; min-width: 200px; font-size: 0.875rem; line-height: 1.5; }
.cookie-text strong { color: var(--green-400); }
.cookie-text a { color: var(--green-300); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 22px; border-radius: var(--r-pill);
  background: var(--green-500); color: white;
  font-size: 0.875rem; font-weight: 700;
  transition: var(--t);
}
.cookie-accept:hover { background: var(--green-400); }
.cookie-decline {
  padding: 10px 16px; border-radius: var(--r-pill);
  background: transparent; color: rgba(255,255,255,0.6);
  font-size: 0.875rem; border: 1px solid rgba(255,255,255,0.2);
  transition: var(--t);
}
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* ==========================================================================
   IMAGE LIGHTBOX
   ========================================================================== */
.img-lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.img-lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border-radius: var(--r-md);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-spring);
}
.img-lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white; display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 20px; height: 20px; }
/* Cursor hint on product main img */
.product-main-img { cursor: zoom-in; }

/* ==========================================================================
   COUNTDOWN PROMO BANNER (Product Page)
   ========================================================================== */
.countdown-promo-bar {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: white;
  padding: 12px 20px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 18px;
  border: 1px solid var(--green-600);
}
.countdown-promo-badge {
  background: rgba(255,255,255,0.15);
  color: var(--green-200); font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: var(--r-pill);
  flex-shrink: 0;
}
.countdown-promo-text { font-size: 0.875rem; flex: 1; opacity: 0.9; }
.countdown-timer { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.countdown-unit { text-align: center; }
.countdown-unit span:first-child {
  display: block; font-family: var(--serif); font-size: 1.375rem; font-weight: 700; line-height: 1;
}
.countdown-unit .cd-label { font-size: 0.5625rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.countdown-sep { font-size: 1.2rem; font-weight: 700; opacity: 0.6; margin-bottom: 8px; }

/* ==========================================================================
   TRUST BADGES STRIP (Product Page)
   ========================================================================== */
.trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  padding: 14px 18px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-md);
  margin-top: 18px;
}
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--text-mid); padding: 0 10px; }
.trust-badge:not(:last-child) { border-right: 1px solid var(--green-200); }
[dir="rtl"] .trust-badge:not(:last-child) { border-right: none; border-left: 1px solid var(--green-200); }
.trust-badge svg { width: 16px; height: 16px; stroke: var(--green-600); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ==========================================================================
   SOCIAL SHARING (Product Page)
   ========================================================================== */
.social-share-strip {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  flex-wrap: wrap;
}
.social-share-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }
.social-share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); border: 1.5px solid var(--border);
  color: var(--text-mid);
}
.social-share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-share-btn--whatsapp:hover { background: #25D366; border-color: #25D366; color: white; }
.social-share-btn--facebook:hover { background: #1877F2; border-color: #1877F2; color: white; }
.social-share-btn--copy:hover { background: var(--green-100); border-color: var(--green-300); color: var(--green-700); }
.social-share-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================================================
   STICKY MOBILE BUY BAR (Product Page)
   ========================================================================== */
#sticky-buy-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(30,70,30,0.1);
  display: none; align-items: center; gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-spring);
}
#sticky-buy-bar.visible { transform: translateY(0); }
@media (max-width: 767px) { #sticky-buy-bar { display: flex; } }

.sticky-bar-info { flex: 1; }
.sticky-bar-name { font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.sticky-bar-price { font-size: 1.0625rem; font-weight: 800; color: var(--green-700); }
.sticky-add-btn { flex-shrink: 0; padding: 13px 22px; border-radius: var(--r-pill); background: var(--green-600); color: white; font-weight: 700; font-size: 0.9375rem; display: flex; align-items: center; gap: 8px; transition: var(--t); }
.sticky-add-btn:hover { background: var(--green-700); }
.sticky-add-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ==========================================================================
   PRODUCT IMG WRAPPER NEEDS RELATIVE POSITIONING FOR HEART
   ========================================================================== */
.product-img-wrapper { position: relative; }

/* Fix buy box to accommodate wishlist heart button */
.product-detail-buy-box { flex-wrap: nowrap !important; align-items: center !important; }
@media (max-width: 480px) { .product-detail-buy-box { flex-wrap: wrap !important; } }

/* ==========================================================================
   HOMEPAGE REDESIGN — New Components
   ========================================================================== */

/* ─── Promo Banner ──────────────────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(90deg, #1a3a2a 0%, #2d5a3d 50%, #1a3a2a 100%);
  color: var(--gold-light, #d4a853);
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 0.5s ease;
}
.promo-banner a { color: var(--gold-light, #d4a853); text-decoration: underline; }
.promo-banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold-light, #d4a853);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.promo-banner-close:hover { opacity: 1; }

/* ─── Trust Strip ───────────────────────────────────────────────────────── */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border-light, #e8e8e4);
  border-bottom: 1px solid var(--border-light, #e8e8e4);
  padding: 1.5rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-right: 1px solid var(--border-light, #e8e8e4);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0f7f4, #e0f0e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main, #1a1a1a);
}
.trust-item-sub {
  font-size: 0.78rem;
  color: var(--text-light, #666);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-light, #e8e8e4); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
}

/* ─── New Hero Section ──────────────────────────────────────────────────── */
.hero-v2 {
  min-height: 90vh;
  background: linear-gradient(135deg, #0d2418 0%, #1a3a2a 40%, #2d5a3d 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-v2-left {
  padding: 6rem 4rem 6rem 8%;
  position: relative;
  z-index: 2;
}
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--gold-light, #d4a853);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-v2-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero-v2-title em {
  font-style: italic;
  color: var(--gold-light, #d4a853);
}
.hero-v2-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-v2-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }
.hero-v2-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-v2-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}
.hero-v2-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-light, #d4a853);
  fill: none;
  flex-shrink: 0;
}

/* Hero Right — Deal Card */
.hero-v2-right {
  padding: 4rem 8% 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.deal-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.deal-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #c5a880, #d4a853);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.deal-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s ease-in-out infinite;
}
.deal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.05);
}
.deal-img-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 3rem;
}
.deal-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deal-price {
  color: var(--gold-light, #d4a853);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.deal-countdown {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.deal-countdown-block {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 54px;
}
.deal-countdown-num {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.deal-countdown-lbl {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.2rem;
}
.deal-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #c5a880, #d4a853);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.deal-cta:hover { filter: brightness(1.1); transform: translateY(-2px); }
@media (max-width: 900px) {
  .hero-v2 { grid-template-columns: 1fr; min-height: auto; }
  .hero-v2-left { padding: 4rem 1.5rem 2rem; }
  .hero-v2-right { padding: 0 1.5rem 4rem; }
  .deal-card { max-width: 100%; }
}

/* ─── New Categories ────────────────────────────────────────────────────── */
.categories-v2 {
  padding: 4rem 0;
  background: var(--bg-main, #f9f8f5);
}
.categories-v2-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.categories-v2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cat-v2-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--text-main);
}
.cat-v2-card:hover {
  border-color: var(--gold, #c5a880);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.2);
}
.cat-v2-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: transform 0.25s;
}
.cat-v2-card:hover .cat-v2-icon { transform: scale(1.15) rotate(5deg); }
.cat-v2-name {
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-main);
}
.cat-v2-count {
  font-size: 0.75rem;
  color: var(--text-light);
}
@media (max-width: 900px) {
  .categories-v2-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .categories-v2-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Product Badges ────────────────────────────────────────────────────── */
.badge-bestseller {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(90deg, #c5a880, #d4a853);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(197, 168, 128, 0.4);
}
.badge-nouveau {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2d5a3d;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
}

/* ─── Testimonials Revamp ───────────────────────────────────────────────── */
.testimonials-v2 {
  padding: 5rem 0;
  background: #fff;
}
.testimonials-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}
.testimonial-v2-card {
  background: var(--bg-main, #f9f8f5);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border-light, #e8e8e4);
  transition: all 0.25s;
}
.testimonial-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: var(--gold, #c5a880);
}
.tv2-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.tv2-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold, #c5a880);
  stroke: var(--gold, #c5a880);
}
.tv2-text {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.tv2-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tv2-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5a3d, #4a8c5c);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tv2-name { font-weight: 700; font-size: 0.9rem; color: var(--text-main); }
.tv2-product { font-size: 0.78rem; color: var(--text-light); margin-top: 0.1rem; }
@media (max-width: 900px) {
  .testimonials-v2-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-v2-grid { grid-template-columns: 1fr; }
}

/* ─── WhatsApp Floating Button ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 0.875rem 1.5rem 0.875rem 1.25rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float-label { white-space: nowrap; }
.whatsapp-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff4444;
  border: 2px solid #fff;
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 600px) {
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
  .whatsapp-float-label { display: none; }
}

/* ─── Deal of the Day Countdown (JS-powered) ────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ==========================================================================
   Boutique Page Styles
   ========================================================================== */
.boutique-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }
.boutique-sidebar {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 100px;
}
.filter-section { margin-bottom: 2rem; }
.filter-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; border-bottom: 1px solid var(--border-light); padding-bottom: 0.5rem; color: var(--text-ghost); }
.filter-options { display: flex; flex-direction: column; gap: 0.6rem; }
.filter-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.95rem; color: var(--text-main); transition: color 0.2s; }
.filter-label:hover { color: var(--green-700); }
.filter-label input[type='radio'] { accent-color: var(--green-700); }
.price-range input[type='range'] { width: 100%; accent-color: var(--green-700); }
.boutique-main { min-height: 500px; }
/* Boutique uses 3-column grid (sidebar takes the 4th space) */
.boutique-main .products-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .boutique-main .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .boutique-grid { grid-template-columns: 1fr; gap: 1rem; }
  .mobile-filter-toggle { display: flex !important; }
  .boutique-sidebar { display: none; background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 2rem; position: static; }
  .boutique-sidebar.active { display: block; }
  .boutique-main .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .boutique-main .products-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Express Order Form Styles
   ========================================================================== */
.express-order-box {
  background: var(--white);
  border: 2px solid var(--green-200);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(78, 155, 76, 0.05);
}
.express-order-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-800);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}
.express-order-header svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
}
.express-order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.express-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.express-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-ghost);
}
.express-field input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s;
}
.express-field input:focus {
  border-color: var(--green-600);
  outline: none;
  box-shadow: 0 0 0 3px rgba(78, 155, 76, 0.1);
}
.express-field input.input-error {
  border-color: var(--red);
  background-color: #fffafb;
}
.express-field input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.express-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin: 0.5rem 0;
}
.express-qty-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-ghost);
}
.express-qty-row .product-detail-qty {
  margin: 0;
}
.express-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.express-total-row strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-800);
}
.express-submit-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-700);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.express-submit-btn:hover {
  background: var(--green-800);
}
.express-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-ghost);
  margin-top: 0.25rem;
}

/* Hide cart buttons since we use direct express order */
.action-btn[aria-label="Panier"], 
.action-btn.cart-btn-toggle,
.cart-drawer, 
.cart-overlay {
  display: none !important;
}
