/* ============================================================
   DREAM GREEN â€” Design System & Styles
   A hand-crafted botanical gifting boutique
   NOTE: Google Fonts loaded via <link> tags in HTML head
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* Colour Palette */
  --sage:         #8FAF8A;
  --sage-light:   #a8c4a3;
  --sage-dark:    #6e8e69;
  --cream:        #FAF6F0;
  --cream-dark:   #f0ebe2;
  --terracotta:   #C4846A;
  --terracotta-light: #d9a08a;
  --terracotta-dark:  #a86b52;
  --deep-green:   #2D4A3E;
  --deep-green-light: #3a6052;
  --charcoal:     #3D3635;
  --charcoal-light: #5a5553;
  --white:        #FFFFFF;
  --black:        #1a1714;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --nav-height: 80px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 74, 62, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 74, 62, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 74, 62, 0.12);
  --shadow-card: 0 2px 16px rgba(45, 74, 62, 0.07);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.7s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  outline: none;
}

ul, ol {
  list-style: none;
}

input, textarea {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

::selection {
  background-color: var(--sage-light);
  color: var(--deep-green);
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 175, 138, 0.35);
}

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

.btn--outline:hover {
  background-color: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 132, 106, 0.3);
}

.btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn--white {
  background-color: var(--white);
  color: var(--deep-green);
}

.btn--white:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--duration-slow) var(--ease-out), 
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--duration-slow) var(--ease-out), 
              transform var(--duration-slow) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--duration-slow) var(--ease-out), 
              transform var(--duration-slow) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 1;
  transform: scale(1);
  transition: opacity var(--duration-slow) var(--ease-out), 
              transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }


/* ============================================================
   1. NAVIGATION BAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(45, 74, 62, 0.08);
  transition: background-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              backdrop-filter var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              width var(--duration-normal) var(--ease-out),
              top var(--duration-normal) var(--ease-out);
}

/* HOME PAGE HERO RULES REMOVED - Using standard glassmorphism navbar for visibility on light hero */

.navbar.scrolled,
body.has-hero .navbar.scrolled,
body.has-hero .navbar {
  /* Constant high-contrast glass style */
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(25px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
  box-shadow: 0 10px 40px rgba(45, 74, 62, 0.12) !important;
  border-color: rgba(143, 175, 138, 0.2) !important;
  top: 1rem !important;
}

/* Force dark colors permanently on all elements */
.navbar .navbar__logo,
.navbar .navbar__logo-text,
.navbar .navbar__link,
body.has-hero .navbar .navbar__logo,
body.has-hero .navbar .navbar__logo-text,
body.has-hero .navbar .navbar__link {
  color: var(--deep-green) !important;
}

.navbar .navbar__icon-btn,
body.has-hero .navbar .navbar__icon-btn {
  color: var(--charcoal) !important;
}

.navbar .navbar__icon-btn svg,
body.has-hero .navbar .navbar__icon-btn svg {
  stroke: var(--charcoal) !important;
}

.navbar .navbar__hamburger span,
body.has-hero .navbar .navbar__hamburger span {
  background-color: var(--charcoal) !important;
}

/* Explicitly return to dark colors when scrolled even on Hero page */
body.has-hero .navbar.scrolled .navbar__logo,
body.has-hero .navbar.scrolled .navbar__logo-text {
  color: var(--deep-green);
}

body.has-hero .navbar.scrolled .navbar__links a {
  color: var(--charcoal);
}

body.has-hero .navbar.scrolled .navbar__icon-btn svg {
  stroke: var(--deep-green);
}

body.has-hero .navbar.scrolled .navbar__hamburger span {
  background-color: var(--charcoal);
}

/* Base Page Padding to account for floating nav */
main {
  padding-top: 1.5rem;
}

body:not(.has-hero) main {
  padding-top: calc(var(--nav-height) + 2rem);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-green);
  z-index: 2100; /* Above mobile-nav */
}

.navbar__logo svg {
  width: 28px;
  height: 28px;
  fill: var(--sage);
  transition: transform var(--duration-normal) var(--ease-out);
}

.navbar__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-out);
}

.navbar__logo:hover .navbar__logo-img {
  transform: rotate(-12deg) scale(1.1);
}

.footer__logo-img {
  height: 32px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--sage);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--sage-dark);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.navbar__icon-btn {
  position: relative;
  background: none;
  color: var(--charcoal);
  font-size: 1.15rem;
  padding: 0.4rem;
  transition: color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.navbar__icon-btn:hover {
  color: var(--sage-dark);
  transform: scale(1.1);
}

.navbar__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__cta {
  padding: 0.55rem 1.3rem;
  font-size: 0.82rem;
}

/* Hide background when scrolled on has-hero pages unless menu is open */
.navbar.menu-open {
  background-color: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  z-index: 2500 !important; /* Move above mobile-nav to allow closing */
}

.navbar.menu-open .navbar__logo-text {
  color: var(--charcoal) !important;
}

.navbar.menu-open .navbar__hamburger span {
  background-color: var(--charcoal) !important;
}

.navbar.menu-open .navbar__icon-btn svg {
  stroke: var(--charcoal) !important;
}

/* Mobile Menu Toggle */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
  z-index: 2100; /* Above mobile-nav */
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px) translateX(6px);
  background-color: var(--sage-dark); /* Color change for better visibility */
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px) translateX(6px);
  background-color: var(--sage-dark);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--cream);
  z-index: 2000; /* Higher than navbar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem; /* Tighter gap */
  padding-top: 80px; /* Space for the floating close button */
  transition: right var(--duration-slow) var(--ease-out);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.15rem; /* Smaller as requested */
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--duration-fast) var(--ease-out);
  padding: 0.4rem 0;
}

.mobile-nav .btn {
  margin-top: 1rem;
  width: auto;
  min-width: 200px;
  justify-content: center;
}

.mobile-nav a:not(.btn):hover {
  color: var(--sage);
}


/* ============================================================
   2. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.hero__img-static {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 20px 80px rgba(45, 74, 62, 0.12);
  transition: transform var(--duration-slow) var(--ease-out);
}

.hero__inner:hover .hero__img-static {
  transform: translateY(-8px) scale(1.02);
}

@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
    text-align: center;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__content {
    order: 2;
  }

  .hero__image {
    order: 1;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .hero__buttons {
    justify-content: center;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,175,138,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Note: Old hero::after (the orange blob) is replaced by the dark overlay above */

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--sage-light);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(143, 175, 138, 0.2);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 650px;
}

@media (max-width: 991px) {
  .hero__image {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .hero__image {
    min-height: 280px;
  }
}

.hero__image-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
}

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

.hero__image-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(143, 175, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero__image-badge-text {
  font-size: 0.82rem;
}

.hero__image-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.hero__image-badge-text span {
  color: var(--charcoal-light);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   3. TRUST BAR
   ============================================================ */
.trust-bar {
  padding: var(--space-lg) 0;
  background-color: var(--white);
  border-top: 1px solid rgba(45, 74, 62, 0.06);
  border-bottom: 1px solid rgba(45, 74, 62, 0.06);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.trust-bar__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(143, 175, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-bar__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.trust-bar__text span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--charcoal-light);
}


/* ============================================================
   4. FEATURED COLLECTIONS
   ============================================================ */
.collections {
  padding: var(--space-3xl) 0;
  background-color: var(--cream);
}

.collections__header {
  margin-bottom: var(--space-xl);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow-card);
}

.collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.collection-card:hover .collection-card__image {
  transform: scale(1.08);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 74, 62, 0.75) 0%, rgba(45, 74, 62, 0.05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--duration-normal) var(--ease-out);
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(45, 74, 62, 0.85) 0%, rgba(45, 74, 62, 0.15) 60%);
}

.collection-card__emoji {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.collection-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.collection-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.collection-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--duration-normal) var(--ease-out);
}

.collection-card:hover .collection-card__link {
  gap: 0.6rem;
}


/* ============================================================
   5. HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, rgba(143, 175, 138, 0.08) 0%, rgba(196, 132, 106, 0.06) 100%);
  position: relative;
}

.how-it-works__header {
  margin-bottom: var(--space-xl);
}

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

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--sage-light), var(--terracotta-light));
  opacity: 0.4;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step__desc {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}


/* ============================================================
   6. BESTSELLERS / FEATURED PRODUCTS
   ============================================================ */
.bestsellers {
  padding: var(--space-3xl) 0;
  background-color: var(--cream);
}

.bestsellers__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: 1rem;
}

.bestsellers__view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--duration-normal) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.bestsellers__view-all:hover {
  gap: 0.6rem;
  color: var(--sage);
}

.bestsellers__scroll-wrapper {
  position: relative;
}

.bestsellers__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.bestsellers__track::-webkit-scrollbar {
  display: none;
}

.bestsellers__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  z-index: 10;
  transition: all var(--duration-fast) var(--ease-out);
}

.bestsellers__arrow:hover {
  background-color: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.bestsellers__arrow--left {
  left: -22px;
}

.bestsellers__arrow--right {
  right: -22px;
}

/* Product Card */
.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

/* In horizontal scroll (bestsellers), fix width */
.bestsellers__track .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

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

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--cream);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--sage);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-card__discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(196, 132, 106, 0.3);
}

.product-card__info {
  padding: 1.25rem;
}

.product-card__meta {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.product-card__rating span {
  color: var(--charcoal-light);
  font-size: 0.78rem;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.product-card__price-group {
  display: flex;
  flex-direction: column;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-card__original-price {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
  margin-left: 0;
  font-weight: 500;
  opacity: 0.7;
}

.product-card__add-btn {
  background-color: var(--sage);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.product-card__add-btn:hover {
  background-color: var(--sage-dark);
  transform: scale(1.05);
}


/* ============================================================
   7. PERSONALIZATION SECTION
   ============================================================ */
.personalization {
  padding: var(--space-3xl) 0;
  background-color: var(--white);
}

.personalization__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.personalization__content {
  max-width: 480px;
}

.personalization__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.personalization__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: var(--space-md);
}

.personalization__extras {
  margin-bottom: var(--space-lg);
}

.personalization__extras li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.35rem 0;
}

.personalization__extras li span {
  font-size: 1.2rem;
}

.personalization__image {
  display: flex;
  justify-content: center;
}

.personalization__image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-3xl) 0;
  background-color: var(--cream);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-light), transparent);
}

.testimonials__header {
  margin-bottom: var(--space-xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--sage-light);
  opacity: 0.5;
  margin-bottom: -0.5rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card__stars {
  color: var(--terracotta);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--charcoal-light);
}


/* ============================================================
   9. ABOUT US SNIPPET
   ============================================================ */
.about-snippet {
  position: relative;
  padding: var(--space-3xl) 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-snippet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 74, 62, 0.82) 0%, rgba(61, 54, 53, 0.75) 100%);
}

.about-snippet__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-snippet__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.about-snippet__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
}


/* ============================================================
   10. NEWSLETTER
   ============================================================ */
.newsletter {
  padding: var(--space-3xl) 0;
  background-color: var(--deep-green);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 175, 138, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.newsletter__subtitle {
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: transparent;
  color: var(--cream);
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
}

.newsletter__input::placeholder {
  color: rgba(250, 246, 240, 0.45);
}

.newsletter__submit {
  background-color: var(--terracotta);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-out);
}

.newsletter__submit:hover {
  background-color: var(--terracotta-dark);
  transform: scale(1.03);
}

.newsletter__fine-print {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.4);
}

.newsletter__success {
  display: none;
  color: var(--sage-light);
  font-size: 1rem;
  padding: 1rem;
}

.newsletter__success.show {
  display: block;
  animation: fadeInUp 0.5s var(--ease-out);
}

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


/* ============================================================
   11. BLOG TEASER
   ============================================================ */
.blog-teaser {
  padding: var(--space-3xl) 0;
  background-color: var(--white);
}

.blog-teaser__header {
  margin-bottom: var(--space-xl);
}

.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card__image-wrap img {
  transform: scale(1.06);
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark) !important;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--duration-normal) var(--ease-out);
}

.blog-card:hover .blog-card__link {
  gap: 0.6rem;
}


.container--narrow {
  max-width: 500px;
  margin: 0 auto;
}

.auth-page {
  background-color: var(--cream);
}

/* ============================================================
   11. AUTH & ACCOUNT PAGES
   ============================================================ */
.auth-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
}

.auth-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.auth-card__subtitle {
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}

.auth-card__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 74, 62, 0.08);
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

/* Auth Form Specifics */
.auth-form {
  display: flex;
  flex-direction: column;
}

.auth-form .btn {
  margin-top: 1.5rem;
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--charcoal-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(45, 74, 62, 0.08);
}

.auth-divider::before {
  margin-right: 1rem;
}

.auth-divider::after {
  margin-left: 1rem;
}

/* Google Button */
.btn--google {
  background-color: var(--white);
  color: var(--charcoal);
  border: 1px solid #dadce0;
  box-shadow: none;
  font-weight: 500;
}

.btn--google:hover {
  background-color: #f8f9fa;
  border-color: #d2e3fc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn--google svg {
  width: 18px;
  height: 18px;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 74, 62, 0.1);
  background-color: #fcfcfb;
  font-size: 0.95rem;
  transition: all var(--duration-fast) var(--ease-out);
  color: var(--charcoal);
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--sage);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(143, 175, 138, 0.1);
}

.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.account-sidebar {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-nav-item {
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--duration-fast);
  color: var(--charcoal-light);
}

.account-nav-item:hover {
  color: var(--sage);
  background-color: rgba(143, 175, 138, 0.05);
}

.account-nav-item.active {
  color: var(--white);
  background-color: var(--sage);
}

.account-tab__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 74, 62, 0.06);
}

.order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 74, 62, 0.04);
}

.order-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-card__date {
  font-weight: 600;
  color: var(--charcoal);
}

.order-card__id {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-card__status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-card__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-card__items {
  font-size: 0.95rem;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.order-card__total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

/* Status Badges */
.badge-pending { background-color: #fef3c7; color: #92400e; }
.badge-confirmed { background-color: #d1fae5; color: #065f46; }
.badge-shipping { background-color: #dbeafe; color: #1e40af; }
.badge-delivered { background-color: var(--sage-light); color: var(--sage-dark); }
.badge-cancelled { background-color: #fee2e2; color: #991b1b; }


/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  background-color: var(--deep-green);
  padding: var(--space-xl) 0 0;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer__logo svg {
  width: 24px;
  height: 24px;
  fill: var(--sage-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--space-xl);
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--sage);
  color: var(--sage-light);
  background-color: rgba(143, 175, 138, 0.1);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__links a:hover {
  color: var(--sage-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.6);
  margin-bottom: 0.75rem;
}

.footer__contact-item span:first-child {
  flex-shrink: 0;
}

.footer__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #25D366;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__whatsapp-btn:hover {
  background-color: #1ebe5b;
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.4);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__legal a:hover {
  color: var(--sage-light);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__logo svg {
  width: 24px;
  height: 24px;
  fill: var(--sage-light);
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content {
    max-width: 600px;
    margin: 0 auto;
    order: 1;
  }
  
  .hero__image {
    order: 2;
  }
  
  .hero__image img {
    max-width: 400px;
  }
  
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .hero__image-badge {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  @keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }
  
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps::before {
    display: none;
  }
  
  .personalization__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .personalization__content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .personalization__extras {
    display: inline-block;
    text-align: left;
  }
  
  .personalization__image {
    order: -1;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablets & Mobile Navigation Stability */
@media (max-width: 1024px) {
  .navbar {
    top: 1rem;
  }
  
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  }
  
  .navbar__inner {
    padding: 0 1.25rem !important;
  }
  
  .navbar.scrolled .navbar__logo-text {
    color: var(--deep-green) !important;
  }
  
  .navbar .navbar__icon-btn svg,
  .navbar.scrolled .navbar__icon-btn svg {
    stroke: var(--charcoal) !important;
  }
  
  .navbar .navbar__hamburger span,
  .navbar.scrolled .navbar__hamburger span {
    background-color: var(--charcoal) !important;
  }
  
  .navbar__links,
  .navbar__cta {
    display: none;
  }
  
  .navbar__hamburger {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: var(--space-xl);
  }
  
  .hero__scroll-indicator {
    display: none;
  }
  
  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  
  .hero__image img {
    max-width: 300px;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .collections__grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bestsellers__track .product-card {
    flex: 0 0 260px;
  }
  
  .bestsellers__arrow {
    display: none;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .blog-teaser__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter__form {
    flex-direction: column;
    border-radius: var(--radius-md);
    gap: 0.5rem;
    padding: 0.75rem;
  }
  
  .newsletter__input {
    text-align: center;
  }
  
  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail__qty-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    align-items: stretch !important;
  }

  .qty-selector {
    flex-shrink: 0 !important;
  }

  .product-detail__add-btn {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0 0.75rem !important;
    font-size: 0.82rem !important;
    height: 42px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  .qty-btn, .qty-input {
    height: 42px !important;
  }

  .about-snippet {
    background-attachment: scroll;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .trust-bar__grid {
    grid-template-columns: 1fr;
  }
  
  .trust-bar__item {
    justify-content: flex-start;
    padding: 0.25rem 1rem;
  }
}


/* ============================================================
   PAGE HEADER (shared across inner pages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-height) + 3rem) 0 2rem;
  background-color: var(--cream);
}

.page-header__breadcrumb {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-header__breadcrumb a {
  color: var(--sage-dark);
  font-weight: 500;
}

.page-header__breadcrumb a:hover {
  color: var(--sage);
}

.page-header__breadcrumb span {
  color: var(--charcoal-light);
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.page-header__subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 560px;
  line-height: 1.7;
}


/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.shop__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(45, 74, 62, 0.08);
}

.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--charcoal) !important;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease-out);
}

.filter-option span {
  color: var(--charcoal) !important;
}

.filter-option:hover {
  background-color: rgba(143, 175, 138, 0.06);
}

.filter-option input[type="radio"] {
  accent-color: var(--sage);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-select {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 1px solid rgba(45, 74, 62, 0.12);
  border-radius: var(--radius-sm);
  background-color: var(--cream);
  color: var(--charcoal);
  cursor: pointer;
  outline: none;
}

.filter-select:focus {
  border-color: var(--sage);
}

.shop__results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--charcoal);
  font-weight: 500;
}

.shop__filter-toggle {
  display: none;
  background: var(--white);
  border: 1px solid rgba(45, 74, 62, 0.12);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.shop__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--charcoal-light);
}

.shop__empty a {
  color: var(--sage-dark);
  font-weight: 600;
}

/* Product card additions (original price strikethrough) */
.product-card__original-price {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
  margin-left: 0.4rem;
}


/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail__image-main {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.product-detail__image-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
}

.product-detail__image {
  position: relative;
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-detail__rating {
  color: var(--terracotta);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-detail__rating span {
  color: var(--charcoal-light);
  font-size: 0.85rem;
  margin-left: 0.3rem;
}

.product-detail__price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-detail__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-detail__original-price {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
}

.product-detail__savings {
  background-color: rgba(143, 175, 138, 0.12);
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.product-detail__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-detail__meta-item {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  background-color: var(--cream);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}

.product-detail__meta-item strong {
  color: var(--charcoal);
}

.product-detail__qty-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(45, 74, 62, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background-color: var(--cream);
  color: var(--charcoal);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration-fast) var(--ease-out);
}

.qty-btn:hover {
  background-color: var(--sage-light);
  color: var(--white);
}

.qty-input, .qty-display {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.product-detail__add-btn {
  flex: 1;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.product-detail__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: var(--cream);
  border-radius: var(--radius-md);
}

.product-detail__trust div {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  padding: 0.2rem 0;
}

.product-detail__care {
  margin-bottom: 1.5rem;
}

.product-detail__care h3,
.product-detail__features h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.product-detail__care-item {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  padding: 0.3rem 0;
  line-height: 1.6;
}

.product-detail__features ul {
  list-style: none;
}

.product-detail__features li {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  padding: 0.3rem 0;
  line-height: 1.6;
}


/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.cart-empty__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.cart-empty p {
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

.cart-items__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.cart-clear-btn {
  background: none;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease-out);
}

.cart-clear-btn:hover {
  background-color: rgba(196, 132, 106, 0.08);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.cart-item:hover {
  box-shadow: var(--shadow-md);
}

.cart-item__image {
  flex-shrink: 0;
}

.cart-item__image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item__details {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.2rem;
}

.cart-item__name:hover {
  color: var(--sage-dark);
}

.cart-item__meta {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  margin-bottom: 0.3rem;
}

.cart-item__price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-item__subtotal {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  min-width: 60px;
  text-align: right;
}

.cart-item__remove {
  background: none;
  color: var(--charcoal-light);
  font-size: 1rem;
  padding: 0.3rem;
  border-radius: 50%;
  transition: all var(--duration-fast) var(--ease-out);
}

.cart-item__remove:hover {
  background-color: rgba(196, 132, 106, 0.1);
  color: var(--terracotta);
}

/* Cart Summary */
.cart-summary {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.cart-summary__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

.cart-summary__total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}

.cart-summary__savings {
  color: var(--sage-dark);
}

.cart-summary__free {
  color: var(--sage-dark);
  font-weight: 600;
}

.cart-summary__hint {
  font-size: 0.78rem;
  color: var(--terracotta);
  margin-top: 0.25rem;
}

.cart-summary__divider {
  height: 1px;
  background: rgba(45, 74, 62, 0.1);
  margin: 0.75rem 0;
}

.cart-summary__checkout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 1rem;
  font-size: 1rem;
}

.cart-summary__continue {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--sage-dark);
  font-weight: 500;
}

.cart-summary__continue:hover {
  color: var(--sage);
}

.cart-summary__badges {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(45, 74, 62, 0.08);
}

.cart-summary__badges div {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  padding: 0.25rem 0;
}

/* Summary card used in cart and checkout */
.cart-summary,
.checkout__summary {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}


/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.checkout__section {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.checkout__section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.checkout__note {
  background-color: rgba(143, 175, 138, 0.08);
  border-left: 3px solid var(--sage);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  border: 1px solid rgba(45, 74, 62, 0.3);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--charcoal);
  transition: border-color var(--duration-fast) var(--ease-out);
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  margin-top: 0.2rem;
}

/* Payment Options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(45, 74, 62, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.payment-option:hover {
  border-color: var(--sage-light);
  background-color: rgba(143, 175, 138, 0.03);
}

.payment-option input[type="radio"] {
  accent-color: var(--sage);
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
}

.payment-option__content {
  display: flex;
  flex-direction: column;
}

.payment-option__content strong {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.payment-option__content span {
  font-size: 0.78rem;
  color: var(--charcoal-light);
}

.checkout-actions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 74, 62, 0.08);
}

.checkout__place-order {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-note {
  font-size: 0.82rem;
  color: var(--charcoal);
  text-align: center;
  margin-top: 1rem;
}

/* Checkout Summary Items */
.checkout__summary-items {
  margin-bottom: 1rem;
}

.checkout__summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.checkout__summary-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.checkout__summary-item-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

.checkout__summary-item-qty {
  font-size: 0.75rem;
  color: var(--charcoal-light);
}

.checkout__summary-item-price {
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Order Confirmation */
.order-confirmation {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.order-confirmation__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.order-confirmation__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.order-confirmation__text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}

.order-confirmation__details {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: left;
  margin-bottom: 2rem;
}

.order-confirmation__detail {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

.order-confirmation__detail strong {
  color: var(--charcoal);
}

.order-confirmation__next-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.order-confirmation__next-steps h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.order-confirmation__step {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  padding: 0.4rem 0;
}

.order-confirmation__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article__header {
  margin-bottom: 2rem;
}

.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0.75rem 0;
}

.blog-article__meta {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.blog-article__hero {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.blog-article__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-article__body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.blog-article__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 0.75rem;
}

.blog-article__body p {
  margin-bottom: 1.25rem;
}

.blog-article__cta {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0 2rem;
}

.blog-article__cta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.blog-article__cta p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.blog-article__back {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 2rem;
}

.blog-article__back:hover {
  color: var(--sage);
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
  background-color: var(--white);
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--sage);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--sage-dark);
  font-weight: 600;
}


/* ============================================================
   ABOUT CONTENT
   ============================================================ */
.about-content {
  padding: 1rem 0;
  color: var(--charcoal);
}

.about-content p, 
.about-content div {
  color: var(--charcoal);
}

.about-info-block h3 {
  font-size: 1.1rem;
}


/* ============================================================
   RESPONSIVE â€” New Pages
   ============================================================ */
@media (max-width: 1024px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
  }
  
  .product-detail__image-main img {
    max-width: 500px;
    margin: 0 auto;
  }

  .cart-page__layout,
  .checkout__layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout__summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .shop__layout {
    grid-template-columns: 1fr;
  }

  .shop__sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    z-index: 998;
    border-radius: 0;
    overflow-y: auto;
    padding-top: calc(var(--nav-height) + 1rem);
    transition: left var(--duration-slow) var(--ease-out);
  }

  .shop__sidebar.open {
    left: 0;
  }

  .shop__filter-toggle {
    display: block;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item__controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(45, 74, 62, 0.06);
  }

  .product-detail__trust {
    grid-template-columns: 1fr;
  }

  .product-detail__qty-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail__add-btn {
    width: 100%;
    justify-content: center;
  }

  /* NAVBAR MOBILE FIX — Restore Floating Pill Capsule on Phone */
  .navbar {
    top: 1rem !important;
    width: calc(100% - 2rem) !important;
    max-width: none !important;
    border-radius: 100px !important;
    height: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(45, 74, 62, 0.08) !important;
  }

  .navbar__inner {
    padding: 0 1.25rem !important;
  }

  .navbar__logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .navbar__logo-text {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: var(--deep-green) !important;
    white-space: nowrap !important;
  }

  .navbar__link {
    font-size: 0.85rem !important;
    color: var(--deep-green) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .navbar__icon-btn {
    color: var(--charcoal) !important;
  }

  .navbar__icon-btn svg {
    stroke: var(--charcoal) !important;
  }

  .navbar__cart-count {
    background-color: var(--sage) !important;
    color: var(--white) !important;
  }

  .navbar__hamburger span {
    background-color: var(--charcoal) !important;
  }

  .hero {
    padding-top: 110px !important;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
    margin-bottom: 1.5rem !important;
  }

  .hero__buttons {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero__buttons .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero__scroll-indicator {
    display: none !important; /* Hide on mobile to save space */
  }

  /* Ensure page headers don't hide behind mobile nav */
  .section:first-of-type,
  .shop-header,
  .blog-header,
  .auth-header,
  .account-header {
    padding-top: 120px !important;
  }
}


/* ============================================================
   PRELOADER & BOTANICAL LOADER
   ============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s var(--ease-in-out), visibility 0.8s var(--ease-in-out);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader {
  width: 100px;
  height: 50px;
  border-radius: 100px 100px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: var(--shadow-md);
}

.loader:before {
  content: "";
  position: absolute;
  inset: 0 0 -100%;
  background: 
    radial-gradient(farthest-side, var(--terracotta) 80%, #0000) left 70% top 20%/12px 12px,
    radial-gradient(farthest-side, var(--deep-green) 92%, #0000) left 65% bottom 19%/10px 10px,
    radial-gradient(farthest-side, var(--sage) 92%, #0000) left 70% bottom 20%/12px 12px,
    linear-gradient(var(--sage-light) 50%, var(--deep-green) 0);
  background-repeat: no-repeat;
  animation: plant-rotate 2.5s infinite var(--ease-in-out);
}

.loader-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  animation: pulse-text 2s infinite ease-in-out;
}

@keyframes plant-rotate {
  0%, 15% { transform: rotate(0); }
  35%, 65% { transform: rotate(.5turn); }
  85%, 100% { transform: rotate(1turn); }
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
/* ============================================================
   AUTHENTICATION & ACCOUNT PAGES
   ============================================================ */
.auth-page {
  background-color: var(--cream);
}

.auth-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.auth-card__header {
  margin-bottom: 2.5rem;
}

.auth-card__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.auth-card__subtitle {
  color: var(--charcoal-light);
  font-size: 1rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.auth-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.auth-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
}

.auth-form input:focus {
  border-color: var(--sage);
  outline: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--charcoal-light);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--cream-dark);
}

.auth-divider:not(:empty)::before {
  margin-right: 1rem;
}

.auth-divider:not(:empty)::after {
  margin-left: 1rem;
}

.btn--google {
  background-color: white;
  border: 1px solid var(--cream-dark);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn--google svg {
  width: 18px;
  height: 18px;
}

.auth-card__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.auth-card__footer p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.auth-card__footer a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive Auth */
@media (max-width: 640px) {
  .auth-card {
    padding: 2rem 1.5rem;
    box-shadow: none;
    background: transparent;
  }
}
