/* ================================================================
   GAEA SCENTS — Main Stylesheet
   Brand: Mauve luxury candle store
   Fonts: Playfair Display (display) · Inter (body)
================================================================ */

/* ----------------------------------------------------------------
   1. CSS DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  /* ── Brand Accent ─────────────────────────────── */
  --clr-ember:        #9B5B7A;
  --clr-ember-dark:   #7A4560;
  --clr-ember-light:  #C4899F;
  --clr-ember-pale:   #FAF0F5;
  --clr-ember-glow:   rgba(155,91,122,0.15);

  /* ── Warm Blush System (primary lights) ──────── */
  --clr-blush:        #FAE8DF;   /* Haven & Hue — dominant page bg */
  --clr-blush-mid:    #F5DDD3;
  --clr-blush-deep:   #EAC8BC;
  --clr-rose:         #D4958A;
  --clr-peach:        #E8B89A;

  /* ── Gold / Amber ─────────────────────────────── */
  --clr-gold:         #C4862A;
  --clr-gold-light:   #E8B84B;
  --clr-gold-pale:    #FDF3E0;
  --clr-gold-glow:    rgba(196,134,42,0.18);

  /* ── Creams & Ivories ─────────────────────────── */
  --clr-white:        #FFFCF9;
  --clr-cream:        #FDF6EC;
  --clr-ivory:        #FAF2E4;
  --clr-parchment:    #F0E4D4;
  --clr-linen:        #E4D4C0;

  /* ── Dark / Ink (warm espresso, never cold) ───── */
  --clr-ink:          #2D1A0E;
  --clr-espresso:     #3D2215;
  --clr-umber:        #5A3828;
  --clr-muted:        #8A6858;
  --clr-muted-light:  #B09888;

  /* ── Section Darks ───────────────────────────── */
  --clr-char:         #1E1008;
  --clr-char-mid:     #2D1A0E;

  /* ── Lavender Touch (Spirit Rituals-inspired) ── */
  --clr-lavender:     #C4B0D8;
  --clr-lavender-pale:#F0EAFA;   /* alternate section bg */
  --clr-lavender-mid: #9B88B8;
  --clr-purple-hl:    #7B5EA7;   /* headline purple (Spirit Rituals text colour) */

  /* ── Brand-specific craft palette ───────────── */
  --clr-beeswax:      #C4862A;   /* warm amber — candle wax, golden light */
  --clr-beeswax-pale: #F5E8C8;   /* pale beeswax */
  --clr-sage-craft:   #5A7A5A;   /* botanical sage green */
  --clr-sage-light:   #8BA98E;
  --clr-umber-warm:   #8B4513;   /* burnt umber — earth, clay */
  --clr-ivory-warm:   #F5F0E8;   /* warm ivory — replaces cold lavender-pale */

  /* ── Compat aliases ──────────────────────────── */
  --clr-mauve:        var(--clr-ember);
  --clr-mauve-dark:   var(--clr-ember-dark);
  --clr-mauve-light:  var(--clr-ember-light);
  --clr-mauve-pale:   var(--clr-ember-pale);
  --clr-dark:         var(--clr-char);
  --clr-charcoal:     var(--clr-umber);
  --clr-forest:       var(--clr-espresso);
  --clr-forest-mid:   var(--clr-umber);
  --clr-wax:          var(--clr-blush);
  --clr-sand:         var(--clr-linen);
  --clr-light-text:   var(--clr-cream);
  --clr-sage:         #6B8C6E;
  --clr-amber:        var(--clr-gold);
  --clr-ink-mid:      var(--clr-umber);

  /* ── Typography ─────────────────────────────── */
  --ff-serif:    'Playfair Display', 'Georgia', serif;
  --ff-sans:     'Inter', 'Helvetica Neue', sans-serif;
  --ff-script:   'Playfair Display', serif;
  --font-display: var(--ff-serif);
  --font-body:    var(--ff-sans);

  /* ── Spacing ─────────────────────────────────── */
  --section-py:  clamp(80px, 10vw, 140px);
  --container:   1280px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --radius-pill: 999px;
  --radius-full: 999px;

  /* ── Spacing tokens ─────────────────────────── */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  80px;
  --sp-2xl: 120px;

  /* ── Transitions ─────────────────────────────── */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;

  /* ── Shadows ─────────────────────────────────── */
  --shadow-sm:   0 2px 12px rgba(45,26,14,0.08);
  --shadow-md:   0 8px 32px rgba(45,26,14,0.12);
  --shadow-lg:   0 20px 60px rgba(45,26,14,0.16);
  --shadow-glow: 0 0 40px rgba(155,91,122,0.25);
  --shadow-gold: 0 8px 32px rgba(196,134,42,0.20);

  /* ── Layout ──────────────────────────────────── */
  --max-width: 1280px;
  --header-h:  96px;
}

/* ── Sparkle decorative elements ──────────────── */
.sparkle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: sparkle-pulse 3s ease-in-out infinite;
}
.sparkle svg { width: 100%; height: 100%; }

@keyframes sparkle-pulse {
  0%, 100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1.1) rotate(15deg); }
}

/* ── Geometric circle backdrop ────────────────── */
.circle-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Floating blob shape ───────────────────────── */
.blob-deco {
  position: absolute;
  pointer-events: none;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blob-drift 8s ease-in-out infinite alternate;
}

@keyframes blob-drift {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translate(0, 0) rotate(0deg); }
  33%  { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; transform: translate(10px, -15px) rotate(5deg); }
  66%  { border-radius: 55% 45% 60% 40% / 45% 55% 50% 50%; transform: translate(-8px, 10px) rotate(-3deg); }
  100% { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; transform: translate(5px, -8px) rotate(8deg); }
}

/* ── Oval image frame (Haven & Hue style) ─────── */
.oval-frame {
  border-radius: 50% / 40%;
  overflow: hidden;
  display: block;
}

/* ── Section label (eyebrow) ──────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-ember);
  margin-bottom: 18px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-sans);
    font-weight: 400;
    color: var(--clr-ink);
    background: var(--clr-blush);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

input, textarea, select {
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--clr-linen);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 100%;
    background: #fff;
    color: var(--clr-dark);
    transition: border-color var(--t-base), box-shadow var(--t-base);
    outline: none;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--clr-mauve);
    box-shadow: 0 0 0 3px rgba(155,91,122,0.12);
}

::selection { background: var(--clr-mauve-pale); color: var(--clr-dark); }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--clr-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; font-weight: 500; }
h5 { font-size: 16px; font-weight: 500; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.display-italic { font-style: italic; }

/* ----------------------------------------------------------------
   4. LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

.section { padding: var(--sp-xl) 0; }
.section-sm { padding: var(--sp-lg) 0; }

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header .eyebrow {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-ember);
    margin-bottom: 18px;
}

.section-header h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--clr-ink);
    margin-bottom: 0.5em;
}

.section-header p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--clr-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Newsletter section keeps dark background — light text overrides */
.gs-newsletter-section .section-header h2,
.gs-newsletter-section h2 {
    color: var(--clr-cream);
}
.gs-newsletter-section p {
    color: rgba(253,246,242,0.72);
}
.gs-newsletter-section .eyebrow {
    color: var(--clr-ember-light);
}

/* Ingredients section — now light, use purple headline */
.gs-ingredients-section .section-header h2,
.gs-ingredients-section .gs-ingredients-header h2 {
    color: var(--clr-purple-hl);
}
.gs-ingredients-section .section-header p,
.gs-ingredients-section .gs-ingredients-header p {
    color: var(--clr-muted);
}
.gs-ingredients-section .eyebrow {
    color: var(--clr-ember);
}

/* Custom CTA — now amber warm section, dark text */
.gs-custom-cta-section .section-header h2 { color: var(--clr-ink); }
.gs-custom-cta-section .section-header p   { color: var(--clr-muted); }
.gs-custom-cta-section .eyebrow            { color: var(--clr-mauve-light, #C4829A); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   5. BUTTONS
---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--clr-ember), var(--clr-ember-dark));
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(155,91,122,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(155,91,122,0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.55);
    color: var(--clr-ink);
    border: 1.5px solid rgba(45,26,14,0.18);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.82);
    border-color: rgba(45,26,14,0.30);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-ember);
    border: 1.5px solid var(--clr-ember);
}
.btn-outline:hover {
    background: var(--clr-ember);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--clr-dark);
    color: var(--clr-light-text);
    border: 1.5px solid var(--clr-dark);
}
.btn-dark:hover {
    background: var(--clr-charcoal);
    border-color: var(--clr-charcoal);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--clr-cream);
    color: var(--clr-ink);
    border: 1.5px solid var(--clr-cream);
}
.btn-light:hover {
    background: var(--clr-white);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-lg { padding: 18px 44px; font-size: 0.9rem; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-base), gap var(--t-base);
}
.link-arrow::after { content: none; }
.link-arrow:hover { border-color: var(--clr-mauve); gap: 10px; }

/* ----------------------------------------------------------------
   6. SITE HEADER
---------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    transform: translateY(0);
    transition: background var(--t-slow), box-shadow var(--t-slow),
                transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Hide-on-scroll-down / show-on-scroll-up ─── */
.site-header.nav-hidden {
    transform: translateY(-100%);
}
/* Always show when mobile menu is open */
body.menu-open .site-header.nav-hidden {
    transform: translateY(0);
}

.site-header.scrolled {
    background: rgba(250,249,245,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.site-header.hero-mode { background: transparent; }
/* Hero is now light — nav stays dark, no white override */
.site-header.hero-mode:not(.scrolled) .site-nav a,
.site-header.hero-mode:not(.scrolled) .header-actions button,
.site-header.hero-mode:not(.scrolled) .header-actions a { color: var(--clr-dark); }
.site-header.hero-mode:not(.scrolled) .site-logo img { filter: none; }

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.site-logo-img {
    height: 88px;
    width: 88px;
    display: block;
    transition: opacity var(--t-base), transform var(--t-base);
}
.site-logo:hover .site-logo-img {
    opacity: 0.82;
    transform: scale(1.04);
}

/* Footer logo */
.footer-logo img {
    height: 64px;
    width: 64px;
    display: block;
    transition: opacity var(--t-base);
}
.footer-logo:hover img { opacity: 0.8; }

/* Nav */
.site-nav { display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-dark);
    padding: 4px 0;
    position: relative;
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-mauve);
    transition: width var(--t-base);
}
.nav-list > li > a:hover::after,
.nav-list > li.current-menu-item > a::after { width: 100%; }

/* Dropdown */
.sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base), transform var(--t-base);
    transform: translateX(-50%) translateY(-8px);
    border-top: 2px solid var(--clr-mauve);
}

.nav-list > li:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--clr-charcoal);
    transition: color var(--t-fast), padding-left var(--t-fast);
}
.sub-menu li a:hover { color: var(--clr-mauve); padding-left: 26px; }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search-btn { display: none; }

.header-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--clr-dark);
    transition: color var(--t-fast);
    position: relative;
}
.header-cart:hover { color: var(--clr-mauve); }

/* Account / login button (shown only when GAEA_ACCOUNTS_ENABLED) */
.header-account {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 6px;
    color: var(--clr-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color var(--t-fast);
}
.header-account:hover { color: var(--clr-mauve); }
.header-account-label { line-height: 1; }
@media (max-width: 600px) {
    .header-account-label { display: none; }   /* icon only on small screens */
}

/* ── Login / Sign up pages ─────────────────────────────────────── */
.auth-page { background: var(--clr-blush, #F7EDE8); }
.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: 0 24px 60px rgba(45,31,40,0.10);
    text-align: center;
}
.auth-card > .eyebrow { display: block; }
.auth-card h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 400; margin: 4px 0 0; }
.auth-card .divider { margin: 16px auto 26px; }
.auth-form { text-align: left; }
.auth-form .form-row { margin-bottom: 18px; display: flex; flex-direction: column; }
.auth-form label { font-size: 13px; font-weight: 500; margin-bottom: 7px; color: var(--clr-charcoal, #2D1F28); }
.auth-form .required { color: var(--clr-mauve); }
.auth-form .input-text {
    width: 100%; padding: 13px 16px; font-size: 14px;
    border: 1.5px solid var(--clr-lavender, #E5DCE8); border-radius: var(--radius-sm);
    background: #fff; transition: border-color var(--t-base);
}
.auth-form .input-text:focus { border-color: var(--clr-mauve); outline: none; box-shadow: none; }
.auth-form-row-inline { flex-direction: row; align-items: center; justify-content: space-between; }
.auth-remember { display: inline-flex; align-items: center; gap: 7px; font-weight: 400; font-size: 13px; margin: 0; }
.auth-remember input { width: auto; }
.auth-lost { font-size: 13px; color: var(--clr-mauve); }
.auth-submit { width: 100%; justify-content: center; margin-top: 6px; }
.auth-switch { margin-top: 22px; font-size: 14px; color: var(--clr-muted); text-align: center; }
.auth-switch a { color: var(--clr-mauve); font-weight: 500; }
.auth-note { font-size: 13px; color: var(--clr-muted); margin-bottom: 18px; }
.search-overlay { display: none !important; }

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--clr-mauve);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--t-base);
}
.cart-count.has-items { opacity: 1; transform: scale(1); }

/* Menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
}
.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--clr-dark);
    transition: all var(--t-base);
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 82%;
    max-width: 340px;
    height: 100dvh;
    background: var(--clr-white);
    z-index: 1100;
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.38s ease;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0 40px;
    box-shadow: none;
    border-right: 1px solid var(--clr-linen);
}
.mobile-nav.open {
    left: 0;
    box-shadow: 12px 0 48px rgba(45,26,14,0.18);
}

/* Mobile nav header bar with logo + close */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--clr-linen);
    background: var(--clr-white);
    position: sticky;
    top: 0;
    z-index: 2;
}
.mobile-nav-logo img {
    height: 64px;
    width: 64px;
    display: block;
}
.mobile-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-linen);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-muted);
    transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
    background: transparent;
}
.mobile-nav-close:hover {
    border-color: var(--clr-ember);
    color: var(--clr-ember);
    background: var(--clr-ember-pale);
}

/* Staggered list item entrance animation */
.mobile-nav.open .mobile-nav-list li {
    animation: slideInLeft 0.35s ease both;
}
.mobile-nav.open .mobile-nav-list li:nth-child(1) { animation-delay: 0.06s; }
.mobile-nav.open .mobile-nav-list li:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav.open .mobile-nav-list li:nth-child(3) { animation-delay: 0.14s; }
.mobile-nav.open .mobile-nav-list li:nth-child(4) { animation-delay: 0.18s; }
.mobile-nav.open .mobile-nav-list li:nth-child(5) { animation-delay: 0.22s; }
.mobile-nav.open .mobile-nav-list li:nth-child(6) { animation-delay: 0.26s; }
.mobile-nav.open .mobile-nav-list li:nth-child(7) { animation-delay: 0.30s; }
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45,31,40,0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-slow);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-list { padding: 16px 24px 0; }
.mobile-nav-list li { border-bottom: 1px solid var(--clr-linen); }
.mobile-nav-list li a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--clr-dark);
}
.mobile-nav-list li a:hover { color: var(--clr-mauve); }
.mobile-expand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 1px;
}
.mobile-nav-list .has-sub ul {
    padding: 0 0 8px 16px;
    display: none;
}
.mobile-nav-list .has-sub.open ul { display: block; }
.mobile-nav-list .has-sub ul li { border: none; }
.mobile-nav-list .has-sub ul li a { font-size: 13px; padding: 8px 0; color: var(--clr-muted); }

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250,248,246,0.97);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
}
.search-overlay.open { opacity: 1; pointer-events: auto; }

.search-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 32px;
    color: var(--clr-muted);
    line-height: 1;
}
.search-close:hover { color: var(--clr-dark); }

.search-inner { width: 100%; max-width: 600px; padding: 0 24px; }
.search-inner .search-field {
    font-size: 22px;
    padding: 16px 20px;
    border: none;
    border-bottom: 2px solid var(--clr-linen);
    border-radius: 0;
    background: transparent;
    width: 100%;
}
.search-inner .search-field:focus {
    border-bottom-color: var(--clr-mauve);
    box-shadow: none;
}

/* ----------------------------------------------------------------
   7. HERO SECTION
---------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--clr-blush);
    /* Reserve space below the fixed nav at the TOP of the section */
    padding-top: var(--header-h);
    box-sizing: border-box;
    /* Use block layout — hero-content handles its own centering */
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background-image is set inline by front-page.php, and only when
       assets/images/hero.jpg exists — hardcoding it here 404'd on every view. */
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    will-change: transform;
    opacity: 0.18;   /* very subtle — tinted over the blush */
}
.hero-bg.loaded { transform: scale(1); }

/* Soft warm overlay — keeps the blush feel even if hero.jpg loads */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(250,232,223,0.82) 0%,
        rgba(250,232,223,0.60) 50%,
        rgba(245,210,196,0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--clr-ink);
    /* Fill the padded hero area and center children vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 820px;
    padding: 40px 24px 60px;
    /* Never let content start above this div's top edge */
    min-height: calc(100vh - var(--header-h));
}

.hero-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-ember);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 300;
    color: var(--clr-ink);
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--clr-ember);
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 300;
    color: var(--clr-muted);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease 0.8s forwards;
    position: relative;
    z-index: 5;
    padding-bottom: 32px;
}

/* Scroll indicator */
.hero-scroll {
    display: none;
}
.hero-scroll-line {
    display: none;
}
.hero-scroll-line::after {
    display: none;
}

/* ----------------------------------------------------------------
   8. TRUST BAR
---------------------------------------------------------------- */
.trust-bar {
    background: linear-gradient(90deg, #C4861A 0%, #D99B2C 50%, #C4861A 100%);
    padding: 14px 0;
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.12);
    white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

.trust-item svg { color: rgba(255,255,255,0.95); flex-shrink: 0; }

.trust-item span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 768px) {
    .trust-bar-inner { flex-wrap: wrap; gap: 0; }
    .trust-item { padding: 10px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 50%; justify-content: center; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
}

/* ----------------------------------------------------------------
   9. COLLECTIONS GRID
---------------------------------------------------------------- */
.collections-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: clamp(400px, 46vw, 540px);   /* capped — cells fill this, images never expand it */
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--clr-linen);
}

/* Big feature cell fills the whole left column (both rows) */
.collection-card--big {
    grid-column: 1;
    grid-row: 1 / 3;
}

.collection-card-img {
    position: absolute;   /* fill the card without contributing to its height */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* CSS gradient placeholder when no image */
.collection-card:nth-child(1) { background: linear-gradient(135deg, #C9899F, #9B5B7A); }
.collection-card:nth-child(2) { background: linear-gradient(135deg, #A8B5A2, #6B7D65); }
.collection-card:nth-child(3) { background: linear-gradient(135deg, #E8DCCA, #C4A882); }

.collection-card:hover .collection-card-img { transform: scale(1.06); }

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,31,40,0.75) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background var(--t-slow);
}

.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(45,31,40,0.85) 0%, rgba(45,31,40,0.1) 55%);
}

.collection-card-body {}

.collection-card-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-mauve-light);
    margin-bottom: 6px;
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.collection-card-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.collection-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-plum, #2D1F28);
    background: rgba(255,255,255,0.95);
    padding: 11px 22px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(45,31,40,0.18);
    transition: transform var(--t-base), background var(--t-base);
}
.collection-card-link::after { content: none; }
.collection-card:hover .collection-card-link { transform: translateY(-2px); background: #fff; }

/* Slightly larger type on the big feature cell */
.collection-card--big .collection-card-title { font-size: clamp(28px, 3vw, 40px); }
.collection-card--big .collection-card-overlay { padding: 40px; }

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: auto;
    }
    .collection-card--big { grid-column: auto; grid-row: auto; }
    .collection-card { aspect-ratio: 4/3; }
    .collection-card--big { aspect-ratio: 3/4; }
}

/* ----------------------------------------------------------------
   10. PRODUCT CARDS
---------------------------------------------------------------- */
.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
}

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

.product-card-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--clr-parchment);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--clr-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.product-card-badge.sale       { background: var(--clr-mauve); }
.product-card-badge.sold-out   { background: var(--clr-muted); }
.product-card-badge.bestseller { background: var(--clr-amber); }

.product-card-body {
    padding: 18px 20px 20px;
}

.product-card-collection {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    margin-bottom: 6px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--clr-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}
.product-card-title a { transition: color var(--t-fast); }
.product-card-title a:hover { color: var(--clr-mauve); }

.product-card-scent {
    font-size: 12px;
    color: var(--clr-muted);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-card-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-dark);
}

.product-card-price del {
    font-size: 13px;
    color: var(--clr-muted);
    font-weight: 300;
    margin-right: 4px;
}

.product-card-atc {
    background: var(--clr-dark);
    color: #fff;
    border: 1.5px solid var(--clr-dark);
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
    white-space: nowrap;
}
.product-card-atc:hover {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   11. BESTSELLERS SECTION
---------------------------------------------------------------- */
.bestsellers-section { background: var(--clr-wax); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.section-cta { text-align: center; margin-top: var(--sp-lg); }

/* ----------------------------------------------------------------
   12. ABOUT TEASER SECTION
---------------------------------------------------------------- */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
    overflow: hidden;
    align-items: stretch;
}
.about-teaser-image,
.about-teaser-content,
.gs-about-brand-panel { height: 100%; }

.about-teaser-image {
    position: relative;
    overflow: hidden;
    background: var(--clr-espresso);
    /* Fallback gradient */
    background: linear-gradient(150deg, #2A1A14 0%, #3D2030 40%, #1A1014 100%);
}
.about-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-teaser:hover .about-teaser-image img { transform: scale(1.04); }

.about-teaser-content {
    background: var(--clr-parchment);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 8vw, 96px);
}

.about-teaser-content .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    margin-bottom: 16px;
    display: block;
}

.about-teaser-content h2 { margin-bottom: 20px; }

.about-teaser-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-charcoal);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .about-teaser { grid-template-columns: 1fr; }
    .about-teaser-image { height: 320px; }
    .about-teaser-content { padding: 48px 24px; }
}

/* ----------------------------------------------------------------
   13. INSTAGRAM SECTION
---------------------------------------------------------------- */
.instagram-section { background: #fff; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.instagram-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--clr-linen);
    position: relative;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(155,91,122,0.6);
    opacity: 0;
    transition: opacity var(--t-base);
    display: flex;
    align-items: center;
    justify-content: center;
}
.instagram-item:hover img { transform: scale(1.08); opacity: 0.85; }
.instagram-item:hover::after { opacity: 1; }

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.instagram-handle {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--clr-mauve);
}

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

/* ----------------------------------------------------------------
   14. NEWSLETTER SECTION (footer)
---------------------------------------------------------------- */
.footer-newsletter {
    background: var(--clr-mauve-pale);
    padding: var(--sp-xl) 0;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    color: var(--clr-dark);
    margin-bottom: 10px;
}
.newsletter-text p {
    font-size: 15px;
    color: var(--clr-muted);
    margin: 0;
}

.newsletter-field {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--clr-lavender);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
    transition: border-color var(--t-base);
}
.newsletter-field:focus-within { border-color: var(--clr-mauve); }

.newsletter-field input {
    border: none;
    border-radius: 0;
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    font-size: 14px;
}
.newsletter-field input:focus { box-shadow: none; }

.newsletter-field button {
    padding: 14px 28px;
    background: var(--clr-mauve);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background var(--t-base);
    flex-shrink: 0;
}
.newsletter-field button:hover { background: var(--clr-mauve-dark); }

.newsletter-note { font-size: 12px; color: var(--clr-muted); }

.newsletter-msg {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}
.newsletter-msg.success { color: #2e7d32; }
.newsletter-msg.error   { color: #c62828; }

@media (max-width: 768px) {
    .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ----------------------------------------------------------------
   15. SITE FOOTER
---------------------------------------------------------------- */
.footer-main {
    background: var(--clr-dark);
    padding: var(--sp-xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo img { height: 108px; width: 108px; margin-bottom: 20px; transition: opacity var(--t-base); }
.footer-logo:hover img { opacity: 0.8; }

.footer-tagline {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--t-base);
}
.footer-social a:hover {
    border-color: var(--clr-mauve-light);
    color: var(--clr-mauve-light);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--clr-mauve-light); }

.footer-bottom {
    /* was rgba(0,0,0,0.2) — transparent, so it showed the light page through as grey.
       Solid dark, a touch deeper than the footer (#1E1008), for a clean continuous bar. */
    background: #160B04;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.80);
    text-align: center;
    margin: 0;
    letter-spacing: 0.4px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ----------------------------------------------------------------
   16. PAGE HEADER (inner pages)
---------------------------------------------------------------- */
.page-header {
    padding: calc(var(--header-h) + 60px) 0 60px;
    background: var(--clr-parchment);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--clr-mauve-pale);
    opacity: 0.6;
}

.page-header .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    display: block;
    margin-bottom: 12px;
}

.page-header h1 { margin-bottom: 14px; }

.page-header p {
    font-size: 17px;
    color: var(--clr-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* Breadcrumb */
.gaea-breadcrumb {
    padding: 12px 0;
    font-size: 12px;
    color: var(--clr-muted);
    letter-spacing: 0.5px;
}
.gaea-breadcrumb a { color: var(--clr-mauve); }
.gaea-breadcrumb a:hover { text-decoration: underline; }

/* Single product: breadcrumb is the first element on the page —
   clear the fixed header or it renders underneath it. */
.single-product .gaea-breadcrumb {
    padding-top: calc(var(--header-h) + 16px);
}

/* ----------------------------------------------------------------
   17. ABOUT PAGE
---------------------------------------------------------------- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    margin-top: var(--header-h);
}

.about-hero-image {
    background: linear-gradient(135deg, #D9CEDE, #9B5B7A);
    overflow: hidden;
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.about-hero-content {
    background: var(--clr-parchment);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 8vw, 96px);
}

/* Our Story — "How It All Began" two-column (craft photo + text) */
.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.about-story-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(45,26,14,0.16), 0 4px 14px rgba(45,26,14,0.08);
    aspect-ratio: 4 / 3;
}
.about-story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story-text .divider { margin-left: 0; }
@media (max-width: 768px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-story-text { text-align: center; }
    .about-story-text .divider { margin-left: auto; }
}

.about-values {
    background: var(--clr-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-mauve-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--clr-mauve);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-image { height: 300px; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   18. FAQ PAGE
---------------------------------------------------------------- */
.faq-section { max-width: 800px; margin: 0 auto; }

.faq-category { margin-bottom: var(--sp-lg); }

.faq-category-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--clr-linen);
    margin-bottom: 4px;
}

.faq-item { border-bottom: 1px solid var(--clr-linen); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-dark);
    transition: color var(--t-fast);
    width: 100%;
    text-align: left;
}
.faq-question:hover { color: var(--clr-mauve); }

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--clr-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-muted);
    transition: all var(--t-base);
}
.faq-item.open .faq-icon {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 15px;
    color: var(--clr-charcoal);
    line-height: 1.8;
    padding: 0 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding var(--t-base);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ----------------------------------------------------------------
   19. CONTACT PAGE
---------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info { }

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--clr-muted); margin-bottom: 36px; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--clr-mauve-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-mauve);
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-dark);
    margin-bottom: 4px;
}
.contact-detail-text a, .contact-detail-text span {
    font-size: 15px;
    color: var(--clr-charcoal);
    transition: color var(--t-fast);
}
.contact-detail-text a:hover { color: var(--clr-mauve); }

.contact-form-wrap { }

.form-row { margin-bottom: 20px; }

.form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-charcoal);
    margin-bottom: 8px;
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-msg {
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}
.form-msg.success { color: #2e7d32; }
.form-msg.error   { color: #c62828; }

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

/* ----------------------------------------------------------------
   20. CUSTOM ORDERS PAGE
---------------------------------------------------------------- */
.custom-orders-intro { max-width: 680px; }

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: var(--sp-xl);
}

.use-case-card {
    background: #fff;
    border: 1.5px solid var(--clr-linen);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.use-case-card:hover {
    border-color: var(--clr-mauve-light);
    box-shadow: var(--shadow-sm);
}

.use-case-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.use-case-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--clr-dark);
}
.use-case-card p {
    font-size: 13px;
    color: var(--clr-muted);
    margin: 0;
}

.how-it-works {
    background: var(--clr-parchment);
    border-radius: var(--radius-md);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-xl);
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: var(--sp-md);
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--clr-mauve);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}
.step-text p { font-size: 13px; color: var(--clr-muted); margin: 0; }

.custom-order-form-wrap {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--sp-lg);
    box-shadow: var(--shadow-sm);
}

.custom-order-form-wrap h3 { margin-bottom: var(--sp-md); }

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-list { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .use-cases-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   21. WOOCOMMERCE — SHOP ARCHIVE
---------------------------------------------------------------- */
.woo-main { padding-top: var(--header-h); }

.shop-header {
    background: var(--clr-parchment);
    padding: 60px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.shop-header::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--clr-mauve-pale);
    opacity: 0.5;
}
.shop-header h1 { margin-bottom: 10px; }
.shop-header p { font-size: 16px; color: var(--clr-muted); max-width: 480px; margin: 0 auto; }

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-linen);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.shop-result-count {
    font-size: 13px;
    color: var(--clr-muted);
}

.woocommerce-ordering select {
    width: auto;
    padding: 10px 36px 10px 14px;
    font-size: 13px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6870' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    appearance: none;
    cursor: pointer;
}

.shop-category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0 28px;
}

.category-filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--clr-linen);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-charcoal);
    background: #fff;
    transition: all var(--t-base);
    cursor: pointer;
}
.category-filter-btn:hover,
.category-filter-btn.active {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    color: #fff;
}

/* WooCommerce resets for our grid */
.woocommerce ul.products {
    margin: 0; padding: 0; list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.woocommerce ul.products li.product { margin: 0 !important; float: none !important; width: auto !important; }

/* WooCommerce ships a legacy float clearfix (woocommerce-layout.css):
       .woocommerce ul.products::before, ::after { content: " "; display: table; }
   Harmless while the list floated. But this list is a CSS grid, and a grid turns
   those pseudo-elements into real grid items — ::before claims cell 1, shoving every
   card one column right and wrapping the last onto a row of its own. */
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; }

/* WooCommerce's loop rule `.woocommerce ul.products li.product a img { height: auto }`
   (0,3,4) out-specifies our `.product-card-image img { height: 100% }` (0,1,1), so the
   image sat at its intrinsic height inside the 4:5 box and left a band of dead space
   below it. Homepage bestsellers escape this — they aren't inside ul.products — which
   is why only shop/category cards were affected. Match WooCommerce's specificity. */
.woocommerce ul.products li.product .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Override WooCommerce's own column classes — we always use our 4-col grid */
.woocommerce ul.products.columns-1,
.woocommerce ul.products.columns-2,
.woocommerce ul.products.columns-3,
.woocommerce ul.products.columns-4,
.woocommerce ul.products.columns-5 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] { grid-template-columns: 1fr; }
}

/* WooCommerce pagination */
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    padding: var(--sp-lg) 0 var(--sp-xl);
}
.woocommerce-pagination ul {
    display: flex;
    gap: 6px;
    align-items: center;
}
.woocommerce-pagination ul li { list-style: none; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--clr-linen);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-charcoal);
    transition: all var(--t-base);
}
.woocommerce-pagination ul li a:hover {
    border-color: var(--clr-mauve);
    color: var(--clr-mauve);
}
.woocommerce-pagination ul li span.current {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    color: #fff;
}

/* ----------------------------------------------------------------
   22. WOOCOMMERCE — SINGLE PRODUCT
---------------------------------------------------------------- */
.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: calc(var(--header-h) + 40px) 0 var(--sp-xl);
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.gallery-main {
    aspect-ratio: 1/1;
    background: var(--clr-parchment);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-thumb {
    aspect-ratio: 1/1;
    background: var(--clr-parchment);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--t-base);
}
.gallery-thumb.active { border-color: var(--clr-mauve); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.product-info {}

.product-collection-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    margin-bottom: 10px;
    display: block;
}

.product-info h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 8px;
    line-height: 1.1;
}

.product-scent-story {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--clr-mauve-light);
}

.product-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.product-price {
    font-size: 28px;
    font-weight: 500;
    color: var(--clr-dark);
}

.product-price del {
    font-size: 18px;
    color: var(--clr-muted);
    font-weight: 300;
}

.product-price ins {
    text-decoration: none;
    color: var(--clr-mauve);
}

.product-sale-badge {
    background: var(--clr-mauve);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

/* Scent notes */
.scent-notes {
    background: var(--clr-parchment);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
}

.scent-notes-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    margin-bottom: 16px;
}

.scent-note-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}
.scent-note-row:last-child { margin-bottom: 0; }

.scent-note-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-muted);
    min-width: 52px;
    padding-top: 2px;
}

.scent-note-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}
.scent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-mauve-light);
}
.scent-dot.filled { background: var(--clr-mauve); }

.scent-note-value { font-size: 14px; color: var(--clr-charcoal); padding-top: 2px; }

/* Product meta details */
.product-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.product-detail-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    align-items: center;
}
.product-detail-item svg { color: var(--clr-mauve); flex-shrink: 0; }
.product-detail-item strong { color: var(--clr-dark); margin-right: 4px; }
.product-detail-item span { color: var(--clr-muted); }

/* Variant selector */
.product-variants { margin-bottom: 28px; }
.product-variants label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.variant-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--clr-linen);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--clr-charcoal);
    background: #fff;
    cursor: pointer;
    transition: all var(--t-base);
}
.variant-btn:hover { border-color: var(--clr-mauve); color: var(--clr-mauve); }
.variant-btn.active {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    color: #fff;
}

/* ATC section */
.product-atc-section {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: stretch;
}

.quantity-input-wrap {
    display: flex;
    border: 1.5px solid var(--clr-linen);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.qty-btn {
    width: 40px;
    background: transparent;
    color: var(--clr-dark);
    font-size: 18px;
    transition: background var(--t-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--clr-parchment); }
.qty-input {
    width: 52px;
    border: none;
    border-left: 1px solid var(--clr-linen);
    border-right: 1px solid var(--clr-linen);
    border-radius: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
}
.qty-input:focus { box-shadow: none; border-left-color: var(--clr-mauve); border-right-color: var(--clr-mauve); }

.btn-atc { flex: 1; justify-content: center; font-size: 13px; padding: 14px 24px; }

/* Product accordion tabs */
.product-tabs { margin-top: 32px; border-top: 1px solid var(--clr-linen); }

.product-tab-item { border-bottom: 1px solid var(--clr-linen); }
.product-tab-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-dark);
    cursor: pointer;
    text-align: left;
    transition: color var(--t-fast);
}
.product-tab-btn:hover { color: var(--clr-mauve); }
.product-tab-btn svg { transition: transform var(--t-base); }
.product-tab-item.open .product-tab-btn svg { transform: rotate(180deg); }

.product-tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.product-tab-item.open .product-tab-content { max-height: 600px; }
.product-tab-content-inner { padding: 4px 0 20px; font-size: 14px; color: var(--clr-charcoal); line-height: 1.8; }
.product-tab-content-inner ul { list-style: disc; padding-left: 20px; }
.product-tab-content-inner li { margin-bottom: 6px; }

@media (max-width: 900px) {
    .single-product-layout { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery { position: static; }
}

/* Related products */
.related-products { padding: var(--sp-xl) 0; background: var(--clr-parchment); }

/* ----------------------------------------------------------------
   23. WOOCOMMERCE — CART & CHECKOUT (basic overrides)
---------------------------------------------------------------- */
.woocommerce-cart-form table { width: 100%; border-collapse: collapse; }
.woocommerce-cart-form .cart th {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-linen);
}
.woocommerce-cart-form .cart td { padding: 20px 0; border-bottom: 1px solid var(--clr-linen); vertical-align: middle; }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--clr-mauve) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 14px 28px !important;
    transition: background var(--t-base) !important;
    border: none !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--clr-mauve-dark) !important;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
    border-top-color: var(--clr-mauve) !important;
}

/* ----------------------------------------------------------------
   24. ANIMATIONS
---------------------------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollLine {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* Scroll-triggered reveal — GSAP handles entrance animation.
   CSS sets natural visible state; .visible class is added by JS
   immediately so GSAP can take over per-element timing. */
.reveal {
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
/* No-JS safety: show everything if JS is disabled */
.no-js .reveal,
.no-js .gs-cat-card,
.no-js .gs-ingredient,
.no-js .gs-step { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------------------------------
   25. UTILITY / MISC
---------------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.text-center { text-align: center; }
.text-mauve  { color: var(--clr-mauve); }
.bg-parchment { background: var(--clr-parchment); }
.bg-sand     { background: var(--clr-sand); }
.bg-dark     { background: var(--clr-dark); color: var(--clr-light-text); }

.divider {
    width: 48px;
    height: 1px;
    background: var(--clr-mauve);
    margin: 20px auto;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(155,91,122,0.2);
    border-top-color: var(--clr-mauve);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* WooCommerce notices */
.woocommerce-error, .woocommerce-message, .woocommerce-info {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
}
.woocommerce-error { background: #fdecea; color: #c62828; border: 1px solid #ffcdd2; }
.woocommerce-message { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.woocommerce-info { background: var(--clr-mauve-pale); color: var(--clr-mauve-dark); border: 1px solid var(--clr-lavender); }

/* Mobile global adjustments */
@media (max-width: 768px) {
    :root {
        --sp-xl: 56px;
        --sp-2xl: 80px;
    }

    .header-inner { grid-template-columns: auto auto auto; }
    .site-nav { display: none; }
    .menu-toggle { display: flex; }

    .hero-actions { flex-direction: column; align-items: center; }

    .single-product-layout { padding-top: calc(var(--header-h) + 20px); }

    .custom-order-form-wrap { padding: var(--sp-md); }
}

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

/* ================================================================
   26. WHATSAPP FLOATING BUTTON
================================================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    padding: 12px 20px 12px 14px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform var(--t-base), box-shadow var(--t-base), padding var(--t-base);
    overflow: hidden;
    max-width: 56px;        /* collapsed — icon only */
    white-space: nowrap;
}

.wa-float:hover {
    max-width: 220px;       /* expand to show label */
    padding-right: 24px;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.wa-float-icon { flex-shrink: 0; }

.wa-float-label {
    opacity: 0;
    transition: opacity var(--t-base) 0.05s;
    overflow: hidden;
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* Pulse ring */
.wa-float-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: #25D366;
    animation: waPulse 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 480px) {
    .wa-float { bottom: 20px; right: 20px; padding: 14px; border-radius: 50%; max-width: none; }
    .wa-float-label { display: none; }
    .wa-float:hover { max-width: none; transform: translateY(-2px); }
}

/* ================================================================
   27. ORDER TRACKING PAGE
================================================================ */
.track-section { background: var(--clr-parchment); min-height: 60vh; }

.track-wrap {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Form card */
.track-form-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

.track-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.track-field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-charcoal);
    margin-bottom: 8px;
}

.track-field-hint {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--clr-muted);
}

.track-order-input {
    display: flex;
    border: 1px solid var(--clr-linen);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.track-order-input:focus-within {
    border-color: var(--clr-mauve);
    box-shadow: 0 0 0 3px rgba(155,91,122,0.12);
}

.track-prefix {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: var(--clr-parchment);
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-mauve);
    border-right: 1px solid var(--clr-linen);
    flex-shrink: 0;
    user-select: none;
}

.track-order-input input {
    border: none;
    border-radius: 0;
    flex: 1;
    min-width: 0;
}
.track-order-input input:focus { box-shadow: none; }

.track-submit { white-space: nowrap; align-self: end; }

.track-error {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #fdecea;
    border: 1px solid #ffcdd2;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: #c62828;
}

@media (max-width: 640px) {
    .track-form-card { padding: 24px 20px; }
    .track-form-fields { grid-template-columns: 1fr; }
    .track-submit { width: 100%; justify-content: center; }
}

/* Result card */
.track-result {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.track-result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px 24px;
    border-bottom: 1px solid var(--clr-linen);
    flex-wrap: wrap;
}

.track-result-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 4px;
}

.track-result-id {
    font-size: 28px;
    color: var(--clr-mauve);
    margin: 0;
}

.track-result-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.track-result-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-dark);
}

/* Status badge */
.track-status-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--clr-linen);
}

.track-status-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.track-status-badge strong { display: block; font-size: 16px; font-weight: 500; color: var(--clr-dark); margin-bottom: 4px; }
.track-status-badge p { font-size: 14px; color: var(--clr-muted); margin: 0; }

.track-status-completed  { background: #f0faf0; }
.track-status-shipped    { background: var(--clr-mauve-pale); }
.track-status-cancelled  { background: #fdecea; }
.track-status-refunded   { background: #fff8e1; }

/* Timeline */
.track-timeline {
    display: flex;
    align-items: flex-start;
    padding: 28px 32px;
    border-bottom: 1px solid var(--clr-linen);
    overflow-x: auto;
    gap: 0;
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 80px;
}

.track-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--clr-linen);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: all var(--t-base);
}

.track-step--done .track-step-dot {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    color: #fff;
}

.track-step--active .track-step-dot {
    border-color: var(--clr-mauve);
    box-shadow: 0 0 0 4px var(--clr-mauve-pale);
}

.track-step-pulse {
    width: 10px;
    height: 10px;
    background: var(--clr-mauve);
    border-radius: 50%;
    animation: trackPulse 1.5s ease infinite;
}

@keyframes trackPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.3); opacity: 0.7; }
}

.track-step-line {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--clr-linen);
    z-index: 0;
}

.track-step--done + .track-step .track-step-line,
.track-step--done .track-step-line {
    background: var(--clr-mauve);
}

.track-step-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-top: 10px;
    text-align: center;
    line-height: 1.3;
}

.track-step--done .track-step-label,
.track-step--active .track-step-label { color: var(--clr-dark); }

/* Shipping info */
.track-shipping-info {
    padding: 20px 32px;
    background: var(--clr-mauve-pale);
    border-bottom: 1px solid var(--clr-linen);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.track-shipping-row { display: flex; gap: 32px; flex-wrap: wrap; }

.track-id-mono {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    background: rgba(155,91,122,0.1);
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
}

.track-note {
    padding: 16px 32px;
    font-size: 13px;
    color: var(--clr-muted);
    border-bottom: 1px solid var(--clr-linen);
    font-style: italic;
}

/* Items */
.track-items { padding: 24px 32px; border-bottom: 1px solid var(--clr-linen); }
.track-items-heading {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 16px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-linen);
}
.track-item:last-child { border-bottom: none; }

.track-item-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--clr-parchment); }
.track-item-img img { width: 100%; height: 100%; object-fit: cover; }

.track-item-details { flex: 1; }
.track-item-name { display: block; font-size: 14px; font-weight: 500; color: var(--clr-dark); }
.track-item-qty  { display: block; font-size: 12px; color: var(--clr-muted); margin-top: 2px; }

.track-item-total { font-size: 15px; font-weight: 500; color: var(--clr-dark); }

/* Address */
.track-address { padding: 20px 32px; border-bottom: 1px solid var(--clr-linen); }
.track-address address { font-size: 14px; color: var(--clr-charcoal); font-style: normal; line-height: 1.7; }

/* Help */
.track-help {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.track-help p { font-size: 13px; color: var(--clr-muted); margin: 0; }

/* Hint (empty state) */
.track-hint {
    text-align: center;
    padding: 40px 24px;
    background: var(--clr-mauve-pale);
    border-radius: var(--radius-md);
}
.track-hint-icon { font-size: 36px; margin-bottom: 12px; }
.track-hint p { font-size: 15px; color: var(--clr-charcoal); margin: 0; }

/* ================================================================
   28. ORDER THANK-YOU PAGE
================================================================ */
.gaea-thankyou {
    text-align: center;
    padding: var(--sp-xl) 24px;
    max-width: 560px;
    margin: 0 auto;
}

.gaea-thankyou-icon { font-size: 48px; margin-bottom: 16px; }
.gaea-thankyou h2 { margin-bottom: 12px; }
.gaea-thankyou > p { color: var(--clr-muted); margin-bottom: 28px; }

.gaea-order-id-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--clr-mauve-pale);
    border: 2px dashed var(--clr-mauve-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 0 auto 24px;
    max-width: 280px;
}

.gaea-order-id-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-muted);
}

.gaea-order-id-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--clr-mauve);
    letter-spacing: 2px;
    line-height: 1;
}

.gaea-copy-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-mauve);
    border: 1px solid var(--clr-mauve-light);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    background: transparent;
    cursor: pointer;
    transition: all var(--t-base);
}
.gaea-copy-btn:hover { background: var(--clr-mauve); color: #fff; }

/* ================================================================
   29. RESPONSIVE OVERRIDES & DESIGN REFRESH
   Comprehensive fix for all breakpoints + visual polish
================================================================ */

/* ── DESIGN ENHANCEMENTS (all sizes) ─────────────────────────── */

/* Subtle card border for definition */
.product-card {
    border: 1px solid rgba(229,221,212,0.5);
    box-shadow: 0 2px 16px rgba(45,31,40,0.05);
}
.product-card:hover {
    box-shadow: 0 12px 40px rgba(45,31,40,0.13);
    transform: translateY(-5px);
}

/* Section backgrounds — Warm Bloom alternation */
.bestsellers-section {
    background: var(--clr-blush-mid);
}
.footer-newsletter {
    background: linear-gradient(135deg, #EDE0E8 0%, var(--clr-mauve-pale) 100%);
}

/* Better page header  */
.page-header {
    background: linear-gradient(135deg, var(--clr-parchment) 0%, #EDE0E8 100%);
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(155,91,122,0.07);
    pointer-events: none;
}

/* Collection card — smoother scale */
.collection-card-img {
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.collection-card:hover .collection-card-img { transform: scale(1.06); }

/* Better use-case cards */
.use-case-card:hover {
    border-color: var(--clr-mauve);
    box-shadow: 0 8px 24px rgba(155,91,122,0.12);
    transform: translateY(-3px);
}

/* Refined product price */
.product-card-price { font-weight: 400; }

/* Value cards */
.value-card { border: 1px solid rgba(229,221,212,0.4); }

/* Shop header accent */
.shop-header {
    background: linear-gradient(135deg, var(--clr-parchment) 0%, #EDE0E8 60%, var(--clr-parchment) 100%);
}

/* Better scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-cream); }
::-webkit-scrollbar-thumb { background: var(--clr-lavender); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-mauve-light); }

/* ── LARGE DESKTOP (≤1400px) ──────────────────────────────────── */
@media (max-width: 1400px) {
    .container { padding: 0 32px; }
}

/* ── TABLET (≤1024px) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Header: show hamburger on tablet */
    .site-nav    { display: none; }
    .menu-toggle { display: flex; }
    .header-inner { grid-template-columns: auto 1fr auto; }

    /* Collections: 2 columns */
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .collection-card { aspect-ratio: 4/3; }

    /* About */
    .about-hero { grid-template-columns: 1fr; min-height: auto; }
    .about-hero-image { height: 400px; }
    .about-hero-content { padding: clamp(36px, 5vw, 72px); }

    /* Values */
    .values-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

    /* Custom orders steps */
    .steps-list { grid-template-columns: 1fr; gap: 20px; }
    .use-cases-grid { grid-template-columns: repeat(3, 1fr); }

    /* Single product already handled at 900px */

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }

    /* Products grid */
    .products-grid { grid-template-columns: repeat(3, 1fr); }

    /* Woo products */
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ── LARGE MOBILE (≤768px) ───────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --sp-xl:   44px;
        --sp-2xl:  64px;
        --sp-lg:   32px;
        --section-py: 44px;
        --header-h: 80px;
    }

    .container { padding: 0 18px; }

    /* Typography */
    h1 { font-size: clamp(28px, 8vw, 44px); }
    h2 { font-size: clamp(22px, 6vw, 34px); }
    h3 { font-size: clamp(18px, 5vw, 26px); }

    /* Header */
    .header-inner { padding: 0 16px; grid-template-columns: auto 1fr auto; gap: 12px; }
    .site-logo { justify-self: start; }
    .site-logo-img { height: 68px; width: 68px; }
    --header-h: 80px;

    /* Category cards: 1 column on mobile, horizontal layout kept */
    .gs-categories-grid { grid-template-columns: 1fr; }

    /* Testimonials: 1 column on mobile */
    .gs-testimonials-grid { grid-template-columns: 1fr; }

    /* Process steps: vertical on mobile */
    .gs-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .gs-step-connector { display: none; }
    .gs-step { max-width: 100%; width: 100%; padding: 0; }

    /* Hero */
    .hero, .gs-hero { min-height: 100svh; min-height: 100vh; }
    .hero-content {
        padding: 32px 18px 48px;
        min-height: calc(100vh - var(--header-h));
    }
    .hero-title { font-size: clamp(34px, 9vw, 58px); line-height: 1.08; }
    .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    /* Hide botanical decorations on small screens */
    .hero-leaf { display: none; }

    /* Trust bar: 2×2 grid */
    .trust-bar-inner { flex-wrap: wrap; }
    .trust-item {
        width: 50%;
        padding: 12px 14px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        justify-content: center;
    }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) { border-bottom: none; }

    /* Collections: 1 column on mobile */
    .collections-grid { grid-template-columns: 1fr; gap: 12px; }
    .collection-card { aspect-ratio: 16/9; min-height: 220px; }

    /* Products grid: 2 column */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Section header */
    .section-header { margin-bottom: 32px; }
    .section { padding: var(--sp-xl) 0; }

    /* About teaser */
    .about-teaser { grid-template-columns: 1fr; }
    .about-teaser-image { height: 260px; }
    .about-teaser-content { padding: 36px 18px; }

    /* About hero */
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-image { height: 280px; }
    .about-hero-content { padding: 36px 18px; }

    /* Values */
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .value-card { padding: 28px 18px; }

    /* Instagram */
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }

    /* Newsletter */
    .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-main { padding: 48px 0 40px; }

    /* Page header */
    .page-header { padding: calc(var(--header-h) + 28px) 0 36px; }

    /* Shop */
    .shop-header { padding: calc(var(--header-h) + 20px) 0 28px; }
    .shop-category-filters { padding: 16px 0 20px; gap: 8px; }
    .shop-toolbar { padding: 14px 0; margin-bottom: 24px; }

    /* Single product */
    .single-product-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: calc(var(--header-h) + 16px);
    }
    .product-gallery { position: static; }
    .scent-notes { gap: 16px; }
    .product-tab-btn { font-size: 13px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Custom orders */
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .steps-list { grid-template-columns: 1fr; gap: 16px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 16px; }
    .custom-order-form-wrap { padding: 28px 18px; }

    /* Track page */
    .track-form-card { padding: 24px 18px; }
    .track-form-fields { grid-template-columns: 1fr; gap: 14px; }

    /* FAQ */
    .faq-section { max-width: 100%; }
    .faq-question { font-size: 15px; padding: 16px 0; }
}

/* ── SMALL MOBILE (≤480px) ───────────────────────────────────── */
@media (max-width: 480px) {
    :root { --sp-xl: 36px; --sp-lg: 24px; --sp-md: 18px; }

    /* Reduce section min-heights that cause white space */
    .gs-ingredients-section { padding: 36px 0; }
    .gs-process-section { padding: 36px 0; }
    .gs-testimonials-section { padding: 36px 0; }
    .gs-custom-cta-section { padding: 48px 0; }
    .gs-newsletter-section { padding: 56px 0; }
    .gs-categories-section.section { padding: 36px 0; }
    .bestsellers-section.section { padding: 36px 0; }
    .about-teaser { min-height: unset; }
    #featured-collections.section { padding: 36px 0; }
    .section { padding: 36px 0; }

    .container { padding: 0 14px; }

    /* Trust: 1 column */
    .trust-item { width: 100%; }
    .trust-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .trust-item:nth-child(4) { border-bottom: none; }

    /* Collections: 1 column */
    .collections-grid { grid-template-columns: 1fr; }
    .collection-card { aspect-ratio: 3/2; }

    /* Products: 2 → 1 */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Footer: 2 column grid on small mobile */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-main { padding: 40px 0 28px; }
    .footer-col h4 { font-size: 11px; margin-bottom: 12px; }
    .footer-col ul li a { font-size: 13px; }
    .footer-logo img { height: 72px; width: 72px; }

    /* Values: 1 column */
    .values-grid { grid-template-columns: 1fr; }

    /* Instagram: 3 → 2 */
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }

    /* Custom orders use cases */
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Buttons: full width in forms */
    .hero-actions .btn { max-width: none; width: 100%; }

    /* Track prefix + input */
    .track-id-group {
        flex-direction: row;
    }

    /* Category filter pills: smaller */
    .category-filter-btn { padding: 8px 12px; font-size: 11px; letter-spacing: 0.5px; }

    /* Shop toolbar: stack */
    .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Newsletter: stack button */
    .newsletter-field { flex-direction: column; border-radius: var(--radius-sm); }
    .newsletter-field input { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
    .newsletter-field button {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
        padding: 14px;
        text-align: center;
    }

    /* Page header smaller */
    .page-header { padding: calc(var(--header-h) + 20px) 0 28px; }
}

/* ── VERY SMALL (≤375px) ─────────────────────────────────────── */
@media (max-width: 375px) {
    .container { padding: 0 12px; }
    .hero-title { font-size: clamp(30px, 11vw, 40px); }
    .hero-subtitle { font-size: 14px; }
    .btn { padding: 13px 20px; }
    .track-form-card { padding: 18px 14px; }
    .newsletter-text h3 { font-size: 26px; }
    .products-grid { grid-template-columns: 1fr; }
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"] { grid-template-columns: 1fr; }
}

/* ── DESKTOP: ensure desktop nav always visible ──────────────── */
@media (min-width: 1025px) {
    .site-nav    { display: flex !important; }
    .menu-toggle { display: none !important; }
    .header-inner { grid-template-columns: auto 1fr auto; }
}

/* ================================================================
   30. DESIGN SYSTEM V2 — Professional UI / New Components
================================================================ */

/* ── KEYFRAME ANIMATIONS ──────────────────────────────────────── */
@keyframes float-y {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
@keyframes float-y-sm {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}
@keyframes orb-drift {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33%  { transform: translate(40px, -30px) scale(1.1); opacity: 0.3; }
    66%  { transform: translate(-20px, 20px) scale(0.9); opacity: 0.6; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes tag-float {
    0%   { opacity: 0; transform: translateY(14px) scale(0.85); }
    18%  { opacity: 1; transform: translateY(0px) scale(1); }
    78%  { opacity: 1; transform: translateY(-10px) scale(1); }
    100% { opacity: 0; transform: translateY(-22px) scale(0.9); }
}
@keyframes shimmer-sweep {
    0%   { left: -100%; }
    100% { left: 200%; }
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.6; }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(1.15); }
}
@keyframes count-up-reveal {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes border-spin {
    to { transform: rotate(360deg); }
}

/* ── HERO ENHANCEMENTS ────────────────────────────────────────── */
.gs-hero {
    position: relative;
    overflow: hidden;
    background: var(--clr-blush);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-top: var(--header-h);
    box-sizing: border-box;
}

/* ── ANIMATED HERO CANDLE ─────────────────────────────────────── */
/* Hero creative — real product photograph on the right (replaces the old candle SVG) */
.hero-creative {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    width: clamp(180px, 22vw, 340px);
    aspect-ratio: 866 / 1300;
    z-index: 2;
    pointer-events: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(45,26,14,0.24), 0 6px 18px rgba(45,26,14,0.12);
    animation: hero-creative-float 7s ease-in-out infinite;
}
.hero-creative img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes hero-creative-float {
    0%, 100% { transform: translateY(-50%) rotate(2deg); }
    50%      { transform: translateY(calc(-50% - 12px)) rotate(2deg); }
}

/* Hide on smaller screens so it never overlaps the centered headline */
@media (max-width: 900px) {
    .hero-creative { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-creative { animation: none; }
}

/* ── BRAND-APPROPRIATE HERO DECORATIONS ───────────────────────── */
/* Warm wax glow — bottom right ambient warmth */
.hero-wax-glow {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,134,42,0.13) 0%, rgba(155,91,122,0.06) 50%, transparent 75%);
    filter: blur(50px);
    pointer-events: none;
    animation: wax-breathe 8s ease-in-out infinite;
}
@keyframes wax-breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%       { transform: scale(1.12); opacity: 1; }
}

/* Candle flame dots — tiny warm amber specks */
.hero-flame-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,134,42,0.7), rgba(155,91,122,0.3) 60%, transparent);
    pointer-events: none;
    animation: flame-flicker 3s ease-in-out infinite;
}
.hero-flame-dot-1 { width: 6px; height: 8px; top: 22%; right: 18%; animation-delay: 0s; }
.hero-flame-dot-2 { width: 4px; height: 6px; top: 55%; left: 14%; animation-delay: 1.1s; }
.hero-flame-dot-3 { width: 5px; height: 7px; bottom: 28%; right: 32%; animation-delay: 2.2s; }
@keyframes flame-flicker {
    0%, 100% { transform: scaleX(1) scaleY(1); opacity: 0.6; }
    25%       { transform: scaleX(0.85) scaleY(1.2); opacity: 0.9; }
    75%       { transform: scaleX(1.1) scaleY(0.9); opacity: 0.7; }
}

/* Botanical leaf SVGs */
.hero-leaf {
    position: absolute;
    pointer-events: none;
    animation: leaf-sway 7s ease-in-out infinite;
}
.hero-leaf-1 {
    width: 80px; height: 108px;
    top: 12%; left: 3%;
    animation-delay: 0s;
    opacity: 0.7;
}
.hero-leaf-2 {
    width: 60px; height: 82px;
    bottom: 15%; right: 4%;
    transform: rotate(150deg);
    animation-delay: 2.5s;
    opacity: 0.5;
}
@keyframes leaf-sway {
    0%, 100% { transform: rotate(0deg); }
    33%       { transform: rotate(3deg); }
    66%       { transform: rotate(-2deg); }
}
.hero-leaf-2 { animation-name: leaf-sway-r; }
@keyframes leaf-sway-r {
    0%, 100% { transform: rotate(150deg); }
    33%       { transform: rotate(153deg); }
    66%       { transform: rotate(147deg); }
}

.hero-tags {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-tag {
    position: absolute;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(155,91,122,0.18);
    color: var(--clr-ink);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(45,26,14,0.08);
    animation: tag-float 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}
/* 3 tags — left side upper, right side mid, left side lower */
.hero-tag:nth-child(1) { top: 28%; left:  5%; }
.hero-tag:nth-child(2) { top: 42%; right: 5%; left: auto; }
.hero-tag:nth-child(3) { top: 62%; left:  6%; }

.hero-badge {
    display: none; /* removed — badge was distracting on light hero */
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(155,91,122,0.28);
    color: var(--clr-ember);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(155,91,122,0.12);
}
.hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--clr-ember-light);
    border-radius: 50%;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: #9B5B7A;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--ff-serif);
    font-size: clamp(3.2rem, 7.5vw, 8rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--clr-ink);      /* dark espresso on light hero */
    margin-bottom: 0.4em;
    letter-spacing: -0.02em;
}
.hero-title em {
    font-style: italic;
    color: var(--clr-ember);    /* brand mauve */
    font-weight: 400;
    display: block;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--clr-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(155,91,122,0.18);
    color: var(--clr-ink);
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(45,26,14,0.07);
}

.hero-tags-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.hero-tags-left  { left: 3%; }
.hero-tags-right { right: 3%; }

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #9B5B7A;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
    box-shadow: 0 4px 20px rgba(155,91,122,0.35);
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer-sweep 3s ease-in-out infinite;
    animation-delay: 1s;
}
.btn-hero-primary:hover {
    background: #7A4560;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(155,91,122,0.5);
    color: #fff;
}
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.48);
    color: var(--clr-ink);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(45,26,14,0.16);
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all var(--t-base);
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.85);
    border-color: rgba(45,26,14,0.28);
    color: var(--clr-ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,26,14,0.10);
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    justify-content: center;
}
.hero-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: all var(--t-base);
}
.hero-cat-pill:hover {
    background: rgba(155,91,122,0.2);
    border-color: rgba(155,91,122,0.4);
    color: #fff;
    transform: translateY(-1px);
}

/* ── MARQUEE BAND ─────────────────────────────────────────────── */
.marquee-band {
    background: linear-gradient(90deg, var(--clr-ember-dark), var(--clr-ember), var(--clr-rose), var(--clr-ember));
    background-size: 200% 100%;
    animation: marquee-gradient 6s linear infinite;
    color: rgba(255,255,255,0.92);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
@keyframes marquee-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.marquee-track span {
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 0 20px;
}
.marquee-sep {
    color: #9B5B7A;
    font-size: 10px;
    padding: 0 8px;
    flex-shrink: 0;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* ── PRODUCT CATEGORIES GRID ──────────────────────────────────── */
.gs-categories-section {
    background: var(--clr-blush);
    position: relative;
    overflow: hidden;
}

/* Subtle blob in background */
.gs-categories-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--clr-ember-pale) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

/* Empty products fallback */
.gs-empty-products {
    text-align: center;
    padding: 80px 24px;
}
.gs-empty-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.gs-empty-products p {
    font-size: 17px;
    color: var(--clr-muted);
    margin-bottom: 24px;
}

.gs-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

/* ── Category card — light theme, on-brand colors ─────────────── */
.gs-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gs-cat-card[data-cat="candles"] { --cat-clr: #9B5B7A; --cat-bg: linear-gradient(135deg, #FAE8DF 0%, #F3D2E4 100%); --cat-border: rgba(155,91,122,0.18); }
.gs-cat-card[data-cat="soaps"]   { --cat-clr: #4A7D50; --cat-bg: linear-gradient(135deg, #F0F7EF 0%, #D9EFD8 100%); --cat-border: rgba(74,125,80,0.18); }
.gs-cat-card[data-cat="car"]     { --cat-clr: #5565A8; --cat-bg: linear-gradient(135deg, #F0EAFA 0%, #DDE4F8 100%); --cat-border: rgba(85,101,168,0.18); }
.gs-cat-card[data-cat="custom"]  { --cat-clr: #B07818; --cat-bg: linear-gradient(135deg, #FDF3E0 0%, #F8E5BB 100%); --cat-border: rgba(196,134,42,0.20); }

.gs-cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* horizontal layout: icon + text side by side */
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border: 1.5px solid var(--cat-border, rgba(155,91,122,0.15));
    box-shadow: 0 2px 16px rgba(45,26,14,0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;          /* not clickable — removed pointer */
    text-decoration: none;
    color: var(--clr-ink);
    /* Cursor flame glow uses --mx --my set by JS */
    background:
        radial-gradient(
            circle 100px at var(--mx, 50%) var(--my, 50%),
            rgba(196,134,42,0.10),
            transparent 70%
        ),
        var(--cat-bg);
}
.gs-cat-card:hover {
    border-color: var(--cat-clr);
    box-shadow: 0 4px 24px rgba(45,26,14,0.10);
    /* No transform — not clickable */
}
.gs-cat-card-glow { display: none; }

.gs-cat-card-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.gs-cat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cat-clr);
    border: 1.5px solid var(--cat-border, rgba(155,91,122,0.18));
    transition: background var(--t-base);
    box-shadow: 0 2px 10px rgba(45,26,14,0.06);
    position: relative;
    z-index: 1;
}
.gs-cat-icon svg { width: 28px; height: 28px; }
/* No scale/transform on icon hover — card is not clickable */

.gs-cat-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cat-clr);
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--cat-border, rgba(155,91,122,0.2));
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.gs-cat-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--clr-ink);
    margin-bottom: 6px;
    line-height: 1.2;
}
.gs-cat-card p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hide feature list in horizontal compact layout */
.gs-cat-features { display: none; }

.gs-cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cat-clr);
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.2s;
    border-top: none;
    padding-top: 0;
    width: auto;
}
.gs-cat-cta:hover { gap: 10px; }
.gs-cat-cta svg { transition: transform var(--t-base); }
.gs-cat-cta:hover svg { transform: translateX(4px); }

/* ── INGREDIENT SECTION ───────────────────────────────────────── */
.gs-ingredients-section {
    background: var(--clr-blush);   /* light blush peach — icons pop */
    padding: var(--sp-xl) 0 calc(var(--sp-xl) + 16px);
    position: relative;
    overflow: hidden;
}
.gs-ingredients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 500px at 10% 60%, rgba(155,91,122,0.06), transparent),
        radial-gradient(ellipse 500px 700px at 90% 10%, rgba(196,134,42,0.06), transparent);
    pointer-events: none;
}
.gs-ingredients-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123,94,167,0.05) 0%, transparent 70%);
    top: 20%; right: -50px;
    border-radius: 50%;
    pointer-events: none;
}
.gs-ingredients-header {
    text-align: center;
    margin-bottom: 64px;
}
.gs-ingredients-header .eyebrow { color: var(--clr-ember); }
.gs-ingredients-header h2 {
    color: var(--clr-purple-hl);   /* Spirit Rituals — purple headline on light bg */
}
.gs-ingredients-header p {
    color: var(--clr-muted);
    max-width: 540px;
    margin: 12px auto 0;
    font-size: 16px;
}

.gs-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.gs-ingredient {
    background: var(--clr-cream);
    border-radius: var(--radius-lg);
    padding: 44px 36px 40px;
    border-top: 3px solid var(--accent, var(--clr-ember));
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
}
/* .gs-ingredient::before removed — border-top on card itself is sufficient */
.gs-ingredient:hover {
    /* No lift — ingredient card is not a link. Warm border glow instead. */
    box-shadow: 0 0 0 2px var(--accent, var(--clr-ember)), 0 8px 28px rgba(45,26,14,0.10);
    transform: none;
}

.gs-ingredient-icon {
    width: 72px;
    height: 72px;
    background: var(--accent, var(--clr-ember));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(155,91,122,0.30);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}
.gs-ingredient-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px dashed rgba(155,91,122,0.25);
}
.gs-ingredient-icon svg { width: 32px; height: 32px; }
.gs-ingredient:hover .gs-ingredient-icon {
    box-shadow: 0 8px 24px rgba(155,91,122,0.35);
}

.gs-ingredient h4 {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-ink);
    margin-bottom: 10px;
    line-height: 1.2;
}
.gs-ingredient p {
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    color: var(--clr-umber);
    line-height: 1.65;
    margin-bottom: 20px;
}
.gs-ingredient-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent, var(--clr-ember));
    background: color-mix(in srgb, var(--accent, var(--clr-ember)) 10%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--accent, var(--clr-ember)) 25%, transparent);
    padding: 5px 14px;
    border-radius: 999px;
}

/* ── STATS BAND — removed per design decision ─────────────────── */
.gs-stats-band { display: none; }
.gs-stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='white' fill-opacity='0.08'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}
.gs-stat-number {
    display: block;
    font-family: var(--ff-serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}
.gs-stat-label {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}
.gs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.gs-stat { text-align: center; }

/* ── PROCESS SECTION ──────────────────────────────────────────── */
.gs-process-section {
    background: var(--clr-ivory-warm);   /* warm ivory — earthy, artisanal */
    position: relative;
    overflow: hidden;
}

.gs-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

/* Large decorative number behind step */
.gs-step-number {
    position: relative;
    z-index: 1;
}
.gs-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 16px;
    flex-wrap: nowrap;
}
.gs-step-number {
    font-family: var(--ff-serif);
    font-size: 64px;
    font-weight: 400;
    color: rgba(196,134,42,0.45);    /* readable amber on warm ivory background */
    line-height: 1;
    margin-bottom: -12px;
    letter-spacing: -0.02em;
}
.gs-step-icon {
    width: 72px; height: 72px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--clr-mauve);
    box-shadow: 0 4px 20px rgba(155,91,122,0.15);
    border: 2px solid var(--clr-mauve-pale);
    transition: box-shadow var(--t-base), transform var(--t-base);
}
.gs-step:hover .gs-step-icon {
    box-shadow: 0 8px 32px rgba(155,91,122,0.25);
    transform: scale(1.05);
}
.gs-step h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--clr-dark);
    margin-bottom: 12px;
}
.gs-step p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.75;
}
.gs-step-connector {
    flex-shrink: 0;
    width: 60px;
    margin-top: 100px;
    color: var(--clr-mauve-light);
    opacity: 0.5;
}
.gs-step-connector svg { width: 100%; height: 20px; }

/* ── FEATURED COLLECTIONS — warm cream section ───────────────── */
#featured-collections {
    background: var(--clr-cream);
    position: relative;
    overflow: hidden;
}
#featured-collections .section-header h2  { color: var(--clr-ink); }
#featured-collections .section-header .eyebrow { color: var(--clr-ember); }
#featured-collections .section-header p   { color: var(--clr-muted); }

/* ── ENHANCED PRODUCT CARDS ───────────────────────────────────── */
.gs-products-grid { gap: 20px; }

.product-card, .gs-product-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,26,14,0.06);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
}
.product-card:hover, .gs-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.product-card .product-image-wrap, .gs-product-card .product-image-wrap {
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.product-card img, .gs-product-card img {
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover img, .gs-product-card:hover img {
    transform: scale(1.06);
}

.gs-product-card {
    position: relative;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--clr-parchment), var(--clr-linen));
}
.product-card-image-link { display: block; height: 100%; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gs-product-card:hover .product-card-image img { transform: scale(1.06); }

.gs-product-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--clr-parchment) 0%, #EDE0E8 100%);
    color: var(--clr-mauve);
}
/* Demo cards use custom gradient backgrounds */
.gs-demo-card .gs-product-placeholder { background: var(--clr-espresso); }
.gs-placeholder-icon { font-size: 36px; filter: drop-shadow(0 4px 16px rgba(155,91,122,0.4)); }

/* Product hover overlay + view btn removed per design decision */
.gs-product-hover-overlay { display: none; }
.gs-product-view-btn { display: none; }

.product-card-notes {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--clr-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.product-card-notes svg { color: var(--clr-mauve); flex-shrink: 0; }

/* ── ABOUT TEASER ENHANCEMENTS ────────────────────────────────── */
.gs-about-teaser { position: relative; }
.gs-about-badge { display: none; } /* removed */
.gs-about-badge-hidden {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(45,31,40,0.15);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.6);
}
.gs-about-badge-line {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 4px;
}
.gs-about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-dark);
    font-style: italic;
}

/* ── NEW ABOUT BRAND PANEL — on-brand warm/earthy ─────────────── */
.gs-about-brand-panel {
    position: relative;
    background: linear-gradient(
        150deg,
        var(--clr-cream) 0%,
        var(--clr-ivory-warm) 40%,
        var(--clr-parchment) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid rgba(155,91,122,0.08);
}
/* Subtle botanical watermark background */
.gs-about-leaf-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 300px 400px at 10% 80%, rgba(90,122,90,0.06), transparent),
        radial-gradient(ellipse 200px 300px at 90% 20%, rgba(196,134,42,0.05), transparent);
    pointer-events: none;
}
.gs-about-brand-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 48px 40px;
}
.gs-about-brand-logo {
    opacity: 0.9;
    transition: opacity var(--t-base);
    filter: drop-shadow(0 4px 16px rgba(155,91,122,0.15));
}
.gs-about-brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.gs-about-brand-gaea {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--clr-ink);
    line-height: 1;
}
.gs-about-brand-scents {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.55em;
    color: var(--clr-ember);
    text-transform: uppercase;
    margin-top: 2px;
}
.gs-about-wave {
    width: 120px;
    height: 16px;
    opacity: 0.7;
}
.gs-about-brand-tagline {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: normal;
    color: var(--clr-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
}
.gs-about-brand-tagline em {
    font-style: italic;
    color: var(--clr-ember);
}
/* Brand pillars */
.gs-about-pillars {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 24px;
    background: rgba(255,255,255,0.55);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(155,91,122,0.10);
    margin-top: 8px;
    backdrop-filter: blur(4px);
}
.gs-about-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
}
.gs-about-pillar-icon { font-size: 18px; line-height: 1; }
.gs-about-pillar span:last-child {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--clr-muted);
    white-space: nowrap;
}
.gs-about-pillar-sep {
    width: 1px;
    height: 32px;
    background: rgba(155,91,122,0.15);
    flex-shrink: 0;
}
/* Update about-teaser to use the new panel */
.about-teaser-image { display: none; } /* hide old image div */
.gs-about-teaser {
    grid-template-columns: 1fr 1fr;
}
/* Override: replace about-teaser-image slot with brand-panel */
.gs-about-brand-panel { grid-area: unset; }

@media (max-width: 768px) {
    .gs-about-brand-panel { min-height: 300px; }
    .gs-about-brand-center { padding: 32px 24px; gap: 14px; }
    .gs-about-brand-gaea { font-size: 28px; }
    .gs-about-pillars { gap: 0; padding: 12px 16px; }
    .gs-about-pillar { padding: 0 10px; }
}

/* ── OLD ABOUT ART PANEL (kept for about.php page) ───────────── */
/* ── ABOUT ART PANEL — candle-inspired aesthetic ─────────────── */
.gs-about-art {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
    /* Deep warm espresso → mauve, inspired by a candle-lit room */
    background: linear-gradient(160deg,
        #1A0C08 0%,
        #2D1418 30%,
        #4A1E2C 60%,
        #6B3348 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Warm amber light pool — mimics candle glow on a surface */
.gs-about-art::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(196,134,42,0.25) 0%, transparent 70%);
    filter: blur(30px);
    animation: candle-glow 4s ease-in-out infinite;
}
/* Top wax melt halo */
.gs-about-art::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155,91,122,0.20), transparent 65%);
    filter: blur(50px);
    border-radius: 50%;
    animation: wax-breathe 9s ease-in-out infinite reverse;
}
@keyframes candle-glow {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
    50%       { transform: translateX(-50%) scaleX(1.3); opacity: 1; }
}
.gs-about-art-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.gs-about-art-orb1 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(155,91,122,0.40), transparent 70%);
    top: -40px; left: -40px;
    animation: candle-flicker-orb 6s ease-in-out infinite;
}
.gs-about-art-orb2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(196,134,42,0.25), transparent 70%);
    bottom: 0; right: -20px;
    animation: candle-flicker-orb 8s ease-in-out infinite reverse;
}
.gs-about-art-orb3 { display: none; }

@keyframes candle-flicker-orb {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    30%       { opacity: 0.9; transform: scale(1.08); }
    60%       { opacity: 0.5; transform: scale(0.95); }
}
.gs-about-art-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 24px;
}
/* Candle flame icon */
.gs-about-art-icon {
    font-size: 64px;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(196,134,42,0.8)) drop-shadow(0 0 8px rgba(155,91,122,0.6));
    animation: candle-flame 2.8s ease-in-out infinite;
    transform-origin: center bottom;
}
@keyframes candle-flame {
    0%, 100% { transform: scaleX(1) rotate(0deg); filter: drop-shadow(0 0 20px rgba(196,134,42,0.8)); }
    20%       { transform: scaleX(0.9) rotate(-1.5deg); filter: drop-shadow(0 0 28px rgba(196,134,42,1)); }
    40%       { transform: scaleX(1.05) rotate(1deg); filter: drop-shadow(0 0 16px rgba(196,134,42,0.6)); }
    70%       { transform: scaleX(0.92) rotate(-0.5deg); filter: drop-shadow(0 0 24px rgba(196,134,42,0.9)); }
}
.gs-about-art-wordmark {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.22em;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(196,134,42,0.4);
}
.gs-about-art-wordmark small {
    display: block;
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.45em;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    text-transform: uppercase;
}
.gs-about-art-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.gs-about-art-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(155,91,122,0.2);
}
.gs-about-art-ring.r1 { width: 220px; height: 220px; }
.gs-about-art-ring.r2 { width: 340px; height: 340px; border-color: rgba(155,91,122,0.12); }
.gs-about-art-ring.r3 { width: 460px; height: 460px; border-color: rgba(155,91,122,0.07); }


.gs-credentials {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--clr-linen);
    border-bottom: 1px solid var(--clr-linen);
    margin: 24px 0 28px;
}
.gs-cred { text-align: center; }
.gs-cred strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--clr-dark);
    margin-bottom: 2px;
}
.gs-cred span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-muted);
}
.gs-cred-sep { width: 1px; height: 36px; background: var(--clr-linen); }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.gs-testimonials-section {
    background: var(--clr-ivory-warm);
    position: relative;
    overflow: hidden;
}
.gs-testimonials-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(155,91,122,0.08) 0%, transparent 70%);
    bottom: -100px; left: -50px;
    border-radius: 50%;
    pointer-events: none;
}
.gs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.gs-testimonial {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155,91,122,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.gs-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.gs-testimonial::before {
    content: '"';
    font-family: var(--ff-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--clr-ember-pale);
    position: absolute;
    top: 16px;
    left: 24px;
    font-style: italic;
    pointer-events: none;
}

.gs-testimonial-stars {
    color: #C4A832;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.gs-testimonial blockquote {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    color: var(--clr-dark);
    flex: 1; /* grow to push author to bottom */
    line-height: 1.65;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}
.gs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.gs-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.gs-testimonial-author strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-dark);
}
.gs-testimonial-author span {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--clr-muted);
}

/* ── CUSTOM ORDERS CTA ────────────────────────────────────────── */
.gs-custom-cta-section {
    position: relative;
    /* Dark newsletter-style treatment (was amber) — matches the newsletter look;
       the mauve/white glow orbs below carry the same soft-glow feel. */
    background: var(--clr-char);
    padding: 96px 0;
    text-align: center;
    overflow: hidden;
    color: #fff;
}
.gs-custom-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.gs-custom-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.gs-custom-cta-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    top: -200px; left: -100px;
    animation: orb-drift 14s ease-in-out infinite;
}
.gs-custom-cta-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(155,91,122,0.20), transparent 70%);
    bottom: -150px; right: -50px;
    animation: orb-drift 10s ease-in-out infinite reverse;
}
.gs-custom-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.gs-custom-cta-inner h2 {
    color: #fff;
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 20px;
    line-height: 1.1;
}
.gs-custom-cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 36px;
}
.gs-custom-cta-uses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
/* gs-event-chip: informational tags — NOT interactive buttons */
.gs-event-chip { cursor: default !important; }

.gs-custom-cta-uses span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.88);
    cursor: default;
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
    transition: background var(--t-fast), border-color var(--t-fast);
}
/* No hover effect — chips are informational only */
.gs-custom-cta-uses span:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }

.gs-custom-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.gs-whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: #fff !important;
}
.gs-whatsapp-btn:hover {
    background: #1DAF56;
    border-color: #1DAF56;
    color: #fff !important;
}

/* ── INSTAGRAM ITEM ENHANCEMENT ──────────────────────────────── */
.gs-insta-item { position: relative; overflow: hidden; }
.gs-insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155,91,122,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gs-insta-item:hover .gs-insta-overlay { opacity: 1; }
.gs-insta-item img { transition: transform 0.5s; }
.gs-insta-item:hover img { transform: scale(1.08); }

/* ── EMPTY PRODUCTS PLACEHOLDER ──────────────────────────────── */
.gs-empty-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--clr-muted);
}
.gs-empty-icon { font-size: 48px; display: block; margin-bottom: 16px; animation: float-y 3s ease-in-out infinite; }

/* ── RESPONSIVE OVERRIDES ─────────────────────────────────────── */
@media (max-width: 1200px) {
    .gs-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gs-ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gs-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .gs-testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gs-process-steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
    .gs-step-connector { display: none; }
    .gs-step { max-width: 200px; }
}
@media (max-width: 768px) {
    .gs-categories-grid { grid-template-columns: 1fr; gap: 14px; }
    .gs-ingredients-grid { grid-template-columns: 1fr; gap: 16px; }
    .gs-stats-band { padding: 48px 0; }
    .gs-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .gs-stat-number { font-size: clamp(40px, 12vw, 64px); }
    .gs-testimonials-grid { grid-template-columns: 1fr; }
    .gs-process-steps { flex-direction: column; align-items: center; }
    .gs-about-badge { bottom: 16px; right: 16px; }
    .gs-credentials { gap: 16px; }
    .gs-custom-cta-section { padding: 64px 0; }
    .gs-custom-cta-inner h2 { font-size: clamp(30px, 8vw, 44px); }
    .hero-categories { gap: 6px; }
    .hero-cat-pill { font-size: 11px; padding: 5px 12px; }
    .hero-tags { display: none; }
}
@media (max-width: 480px) {
    .gs-categories-grid { gap: 12px; }
    .gs-cat-card { padding: 28px 20px; }
    .gs-cat-card h3 { font-size: 22px; }
    .gs-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .gs-custom-cta-actions { flex-direction: column; align-items: center; }
    .gs-custom-cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .gs-credentials { flex-direction: column; align-items: flex-start; gap: 12px; }
    .gs-cred-sep { display: none; }
}

/* ================================================================
   SWIPER — brand overrides
================================================================ */
.swiper-pagination-bullet {
    background: var(--clr-mauve);
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: opacity 0.3s, transform 0.3s;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.25);
    background: var(--clr-mauve);
}
.swiper-wrapper { align-items: stretch; }
.swiper-slide { height: auto; }

/* Bestsellers — static 4-column grid (no swiper) */
.bestsellers-static-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}
@media (max-width: 900px) {
    .bestsellers-static-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .bestsellers-static-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
/* Hide bestseller swiper if it still exists */
.bestsellers-swiper { display: none !important; }

/* Testimonials swiper */
.testimonials-swiper { padding-bottom: 48px !important; }
.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-self: stretch;
}
.testimonials-swiper .gs-testimonial {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ================================================================
   NEWSLETTER SECTION
================================================================ */
.gs-newsletter-section {
    background: var(--clr-char);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.gs-newsletter-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(155,91,122,0.15) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}
/* Newsletter sparkle positions */
.nl-sparkle {
    position: absolute;
    pointer-events: none;
}
.nl-sparkle-1 { top: 15%; left: 8%;  width: 28px; height: 28px; }
.nl-sparkle-2 { top: 20%; right: 10%; width: 20px; height: 20px; }
.nl-sparkle-3 { bottom: 25%; left: 15%; width: 22px; height: 22px; }
.nl-sparkle-4 { bottom: 15%; right: 8%; width: 32px; height: 32px; }
.gs-newsletter-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.gs-newsletter-inner .eyebrow {
    color: var(--clr-mauve-light, #C4829A);
    display: block;
    margin-bottom: 16px;
}
.gs-newsletter-inner h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.2;
}
.gs-newsletter-inner > p {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    margin-bottom: 36px;
    line-height: 1.6;
}
.gs-nl-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto 16px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(155,91,122,0.35);
    background: rgba(255,255,255,0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.gs-nl-form:focus-within {
    border-color: rgba(155,91,122,0.7);
    box-shadow: 0 0 0 4px rgba(155,91,122,0.12);
}
.gs-nl-form input {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    padding: 14px 20px;
    outline: none;
    min-width: 0;
}
.gs-nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.gs-nl-form input:focus { border: none; box-shadow: none; }
.gs-nl-form button {
    background: var(--clr-mauve);
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
    transition: background 0.25s;
    flex-shrink: 0;
}
.gs-nl-form button:hover { background: #7A4560; }
.gs-nl-note {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}
#gs-nl-msg {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    min-height: 18px;
}
#gs-nl-msg.success { color: #6fcf8a; }
#gs-nl-msg.error   { color: #f28b82; }

@media (max-width: 640px) {
    .gs-newsletter-section { padding: 72px 0; }
    .gs-nl-form { flex-direction: column; border-radius: 16px; }
    .gs-nl-form input { border-radius: 0; padding: 14px 18px; }
    .gs-nl-form button { border-radius: 0 0 16px 16px; }
}

/* ================================================================
   HERO — remove category pills on all screens (redundant)
================================================================ */
.hero-categories { display: none; }

/* ================================================================
   BRAND ANIMATIONS — Artisanal Candle / Soap / Fragrance Identity
   "The brand is artisanal, not flashy. Less is more."
================================================================ */

/* ── 1. CANDLE LIGHT PULSE — gentle amber glow on process section ── */
.gs-process-section {
    position: relative;
}
.gs-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 60% at 50% 40%,
        rgba(196,134,42,0.05) 0%,
        transparent 65%
    );
    pointer-events: none;
    animation: candle-light-pulse 6s ease-in-out infinite;
    z-index: 0;
}
@keyframes candle-light-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}
.gs-process-section .container { position: relative; z-index: 1; }

/* ── 2. WAX DRIP DIVIDER — subtle amber line drop between hero & marquee ── */
.marquee-band {
    position: relative;
}
.marquee-band::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, rgba(196,134,42,0.55), transparent);
    border-radius: 2px;
    animation: wax-drip-fall 2.5s ease-out 0.8s forwards;
}
@keyframes wax-drip-fall {
    from { height: 0; opacity: 0.8; }
    to   { height: 18px; opacity: 0; }
}

/* ── 3. POUR REVEAL — ingredients section cards reveal top→bottom ── */
.gs-ingredient {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0s; /* GSAP takes over when .visible is added */
}
.gs-ingredient.revealed {
    clip-path: inset(0 0 0% 0);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Fallback if no JS */
.no-js .gs-ingredient { clip-path: none; }

/* ── 4. SCENT WAVE — subtle horizontal wave on section eyebrows ── */
.eyebrow {
    position: relative;
    display: inline-block;
}
.eyebrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--clr-ember) 30%,
        var(--clr-beeswax) 60%,
        transparent 100%
    );
    opacity: 0.35;
}

/* ── 5. SECTION SCROLL ANCHORING — smooth scroll with header offset ── */
#collections,
.gs-ingredients-section,
.gs-process-section,
#featured-collections,
.gs-testimonials-section,
.gs-custom-cta-section,
.gs-newsletter-section {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ── 6. CANDLE CARD HOVER — ingredient cards get warm glow on hover ── */
.gs-ingredient:hover {
    background: linear-gradient(
        160deg,
        var(--clr-cream) 0%,
        rgba(245,240,232,0.8) 100%
    );
}

/* ── 7. CATEGORY CARD — beeswax icon tint on candles card ── */
.gs-cat-card[data-cat="candles"] .gs-cat-icon svg {
    filter: drop-shadow(0 0 6px rgba(196,134,42,0.3));
}
.gs-cat-card[data-cat="soaps"] .gs-cat-icon svg {
    filter: drop-shadow(0 0 6px rgba(90,122,90,0.3));
}
.gs-cat-card[data-cat="car"] .gs-cat-icon svg {
    filter: drop-shadow(0 0 6px rgba(85,101,168,0.3));
}

/* ── 8. SAGE GREEN accent on ingredient tags ── */
.gs-ingredient[style*="--accent:#6B8C6E"] .gs-ingredient-icon {
    background: var(--clr-sage-craft);
}
.gs-ingredient[style*="--accent:#4A7D50"] .gs-ingredient-icon {
    background: var(--clr-sage-craft);
}
.gs-ingredient[style*="--accent:#8B4513"] .gs-ingredient-icon,
.gs-ingredient[style*="--accent:#C4862A"] .gs-ingredient-icon {
    background: var(--clr-beeswax);
}


/* ================================================================
   ACCESSIBILITY & UX FIXES (2026-07-11)
================================================================ */

/* Skip link — hidden until keyboard-focused */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    background: var(--clr-ember, #9B5B7A);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
}
.skip-link:focus {
    left: 0;
    outline: 3px solid #fff;
    outline-offset: -6px;
}
#main-content { scroll-margin-top: calc(var(--header-h, 88px) + 10px); }

/* Visible focus ring for keyboard users (mouse clicks stay clean) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.gallery-thumb:focus-visible,
.mobile-expand:focus-visible {
    outline: 3px solid var(--clr-ember, #9B5B7A);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Newsletter fine-print — was ~1.6:1 (invisible). Lift contrast. */
.gs-nl-note,
.newsletter-note {
    color: rgba(255,255,255,0.72) !important;
}

/* "Coming Soon" filler cards (bestsellers fallback) — honest, non-purchasable */
.gs-comingsoon-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.gs-comingsoon-card .gs-product-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.gs-comingsoon-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    color: var(--clr-ember, #9B5B7A);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(45,26,14,0.12);
}
.gs-comingsoon-card:hover .gs-comingsoon-badge { background: #fff; }

/* Sold-out card CTA — muted but clearly a "View" link */
.product-card-atc--muted {
    opacity: 0.65;
    background: transparent !important;
    border: 1px solid var(--clr-ember, #9B5B7A) !important;
    color: var(--clr-ember, #9B5B7A) !important;
}

/* Respect reduced-motion: kill decorative animation/parallax/marquee */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track { animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   LIVING GARDEN — roaming butterfly + button-hover sunflowers
   Butterfly roams to random in-view letters and rests on their top
   corners. Hovering any button sprouts grass + a stem that blooms into
   a sunflower; the butterfly is summoned and its weight bends the stem.
   JS drives flight/anchoring/bend; CSS drives wings, growth, bloom.
================================================================ */

/* Interpolatable wing colours (vibrant only — no red/rose, no mauve). */
@property --gwa { syntax: '<color>'; inherits: true; initial-value: #22d3ee; }
@property --gwb { syntax: '<color>'; inherits: true; initial-value: #4f46e5; }

/* Styled for all devices (JS only creates the elements on desktop-hover or
   mobile-tap), so no hover/pointer gate here. */
@media all {

    /* ── Butterfly ── */
    .gaea-butterfly {
        position: fixed; top: 0; left: 0; width: 46px; height: 46px; margin: -23px 0 0 -23px;
        z-index: 2147483001; pointer-events: none;
        transform: translate3d(-400px, -400px, 0);
        will-change: transform;
        opacity: 1; transition: opacity 0.5s ease;
        animation: gaea-wing-color 9s ease-in-out infinite;   /* vibrant colour fade */
    }
    .gaea-butterfly.is-away { opacity: 0; }   /* parked (mobile, between taps) */
    .gaea-butterfly svg {
        display: block; width: 100%; height: 100%; overflow: visible;
        filter: drop-shadow(0 2px 3px rgba(20,16,32,0.32));
    }
    .gw-s1 { stop-color: var(--gwa); }
    .gw-s2 { stop-color: var(--gwb); }
    @keyframes gaea-wing-color {
        0%   { --gwa: #22d3ee; --gwb: #4f46e5; }  /* cyan · indigo   */
        20%  { --gwa: #3b82f6; --gwb: #06b6d4; }  /* blue · cyan     */
        40%  { --gwa: #10b981; --gwb: #3b82f6; }  /* emerald · blue  */
        60%  { --gwa: #84cc16; --gwb: #10b981; }  /* lime · emerald  */
        80%  { --gwa: #f59e0b; --gwb: #eab308; }  /* amber · gold    */
        100% { --gwa: #22d3ee; --gwb: #4f46e5; }
    }

    /* wings flap (dots live inside the groups → they flap with the wing) */
    .gaea-wing { transform-box: fill-box; will-change: transform; }
    .gaea-wing-l { transform-origin: 100% 45%; animation: gaea-wing-l 0.16s ease-in-out infinite; }
    .gaea-wing-r { transform-origin: 0% 45%;   animation: gaea-wing-r 0.16s ease-in-out infinite; }
    .gaea-butterfly.is-resting .gaea-wing-l,
    .gaea-butterfly.is-resting .gaea-wing-r { animation-duration: 2.4s; }
    @keyframes gaea-wing-l {
        0%, 100% { transform: scaleX(1)    rotate(0deg); }
        50%      { transform: scaleX(0.22) rotate(9deg); }
    }
    @keyframes gaea-wing-r {
        0%, 100% { transform: scaleX(1)    rotate(0deg); }
        50%      { transform: scaleX(0.22) rotate(-9deg); }
    }

    /* ── Button bloom: grass + stem + sunflower, anchored at a button corner ── */
    .gaea-bloom {
        position: fixed; top: 0; left: 0; width: 0; height: 0;
        z-index: 2147483000; pointer-events: none;
        transform: translate3d(-400px, -400px, 0);
        opacity: 1; transition: opacity 0.3s ease;
        will-change: transform;
    }
    .gaea-bloom.is-closing { opacity: 0; }
    .gaea-bloom > div { position: absolute; left: 0; top: 0; }        /* the plant */
    .gaea-bloom-plant { width: 0; height: 0; transform-origin: 0 0; will-change: transform; }
    .gaea-bloom-plant > div { position: absolute; left: 0; top: 0; }  /* grass / stem / flower */

    .gaea-grass {
        width: 70px; height: 28px; margin: -24px 0 0 -35px;
        transform-origin: 50% 100%; transform: scaleY(0); opacity: 0;
    }
    .gaea-grass svg { display: block; width: 100%; height: 100%; overflow: visible; }
    .gaea-bloom.is-open .gaea-grass { opacity: 1; animation: gaea-grow 0.45s cubic-bezier(.22,.8,.3,1) forwards; }

    .gaea-bloom-stem {
        width: 24px; height: 60px; margin: -58px 0 0 -12px;
        transform-origin: 50% 100%; transform: scaleY(0); opacity: 0;
    }
    .gaea-bloom-stem svg { display: block; width: 100%; height: 100%; overflow: visible; }
    .gaea-bloom.is-open .gaea-bloom-stem { opacity: 1; animation: gaea-grow 0.5s cubic-bezier(.22,.8,.3,1) forwards; }
    @keyframes gaea-grow { 0% { transform: scaleY(0); } 100% { transform: scaleY(1); } }

    .gaea-bloom-flower {
        width: 46px; height: 46px; margin: -77px 0 0 -23px;   /* centre at -(SH 54) */
        opacity: 0; transition: opacity 0.3s ease;
    }
    .gaea-bloom-flower svg { display: block; width: 100%; height: 100%; overflow: visible;
        filter: drop-shadow(0 2px 4px rgba(120,70,10,0.4)); }
    .gaea-bloom.is-open .gaea-bloom-flower { opacity: 1; }

    .gg-petal-set {
        transform-box: view-box; transform-origin: 40px 40px;
        transform: scale(0.05); opacity: 0;
    }
    .gaea-bloom.is-open .gg-petal-set {
        animation: gaea-petal-bloom 0.55s cubic-bezier(.34,1.4,.5,1) forwards;
        animation-delay: var(--d, 0s);
    }
    @keyframes gaea-petal-bloom {
        0%   { transform: scale(0.05) rotate(-16deg); opacity: 0; }
        60%  { transform: scale(1.08) rotate(5deg);   opacity: 1; }
        100% { transform: scale(1)    rotate(0deg);   opacity: 1; }
    }
}
@media (prefers-reduced-motion: reduce) {
    .gaea-butterfly, .gaea-bloom { display: none !important; }
}

/* ================================================================
   26. MOBILE POLISH — 2026-07 audit fixes.
   Tap targets ≥44px, 13px type floor, 16px input font (stops iOS
   focus-zoom), comfortable edge padding. Kept at the END of the
   file on purpose: these override earlier equal-specificity rules
   (e.g. the late .hero-title block) via source order.
================================================================ */

/* Drawer is only translated off-screen — hide it from the tab order too. */
.mobile-nav {
    visibility: hidden;
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.38s ease,
                visibility 0s linear 0.38s;
}
.mobile-nav.open {
    visibility: visible;
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.38s ease,
                visibility 0s;
}

/* Hamburger + drawer close: proper hit areas at every width they show. */
.menu-toggle { width: 44px; min-height: 44px; padding: 10px 6px; justify-content: center; }
.mobile-nav-close { width: 44px; height: 44px; }

@media (max-width: 768px) {

    /* ── Forms: no iOS zoom, fingers fit ── */
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="number"], input[type="search"], input[type="password"],
    select, textarea,
    .woocommerce .input-text {
        font-size: 16px !important;
        min-height: 48px;
    }
    textarea { min-height: 120px; }
    .select2-container .select2-selection--single { height: 48px; }
    .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 46px; font-size: 16px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow { height: 46px; }
    .woocommerce form .form-row label { font-size: 13px; }

    /* Qty steppers — single product */
    .qty-btn { min-width: 44px; min-height: 44px; }
    .qty-input { min-height: 44px; font-size: 16px; }
    /* Qty steppers + remove — block cart */
    .wc-block-components-quantity-selector__button { min-width: 40px !important; }
    .wc-block-components-quantity-selector input { font-size: 16px !important; }
    .wc-block-cart-item__remove-link {
        width: 44px !important; height: 44px !important; margin: -10px !important;
        display: inline-flex; align-items: center; justify-content: center;
    }

    /* ── Primary actions ── */
    .btn { font-size: 14px; min-height: 48px; }
    .product-card-atc { font-size: 13px; min-height: 44px; }
    .product-atc-section form.cart { flex: 1 1 auto; }
    .btn-atc { min-height: 48px; width: 100%; }
    .product-tab-btn { font-size: 14px; }
    .category-filter-btn { font-size: 13px; min-height: 40px; padding: 10px 18px; }
    .newsletter-field button { font-size: 14px; min-height: 48px; }
    #place_order { font-size: 15px !important; min-height: 52px; }
    .woocommerce-form-coupon-toggle .showcoupon { display: inline-block; padding: 10px 0; }
    .woocommerce-breadcrumb a { display: inline-block; padding: 8px 2px; }

    /* ── Type floor: nothing customer-facing below ~12px ── */
    .gs-cat-badge { font-size: 11px; }
    .gs-ingredient-tag { font-size: 12px; }
    .eyebrow { font-size: 12px; }
    .marquee-item { font-size: 13px; }
    .gs-cat-cta { font-size: 13px; }
    .cart-count { font-size: 11px; }
    .track-field-hint { font-size: 12px; }
    .footer-tagline { font-size: 14px; }
    .newsletter-note { font-size: 13px; }

    /* ── Footer link farm → real tap targets ── */
    .footer-col ul li { margin-bottom: 2px; }
    .footer-col ul li a { display: inline-block; padding: 9px 0; font-size: 14px; }

    /* ── Hero: balanced headline, more above the fold ── */
    .hero-title { font-size: clamp(34px, 10.5vw, 56px); }
}

/* ── Comfortable edges on small phones (raises the old 12/14px) ── */
@media (max-width: 480px) {
    .container { padding: 0 18px; }
}
@media (max-width: 375px) {
    .container { padding: 0 16px; }
}

/* ================================================================
   27. GRID REWORK + BRAND TWEAKS — 2026-07-16 client round.
   Appended last on purpose: wins the cascade over the scattered
   earlier breakpoint rules for the same grids.
================================================================ */

/* The Collections dropdown was removed from the markup; make sure an
   admin-assigned menu can never render one either. */
.nav-list .sub-menu { display: none !important; }

/* Bigger logos (client request), stepped down so the fixed header
   (96px desktop / 80px mobile) never clips. */
.site-logo-img { height: 100px; width: 100px; }
.footer-logo img { height: 124px; width: 124px; }
@media (max-width: 768px) {
    .site-logo-img { height: 76px; width: 76px; }
    .footer-logo img { height: 96px; width: 96px; }
}

/* ── gs-categories-grid: 2×2 desktop (kept), 2-col tablet, 1-col small ── */
@media (max-width: 768px) {
    .gs-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gs-cat-card { padding: 26px 20px; }
}
@media (max-width: 540px) {
    .gs-categories-grid { grid-template-columns: 1fr; }
}

/* ── gs-ingredients-grid: 3 → 2 → 1 (was jumping straight to 1 at 768,
      wasting the whole 600–768 band) ── */
@media (max-width: 768px) {
    .gs-ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
    .gs-ingredients-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── collections-grid: 3 cards — kill the 2+1 orphan at tablet ── */
@media (max-width: 1024px) and (min-width: 601px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .collections-grid .collection-card:nth-child(3) { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .collections-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── bestsellers-static-grid: cards were ~154px wide on small phones ── */
@media (max-width: 430px) {
    .bestsellers-static-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── about teaser: collapse at 900 (panel + text were cramped 769–900) ── */
@media (max-width: 900px) {
    .about-teaser, .gs-about-teaser { grid-template-columns: 1fr; }
    .gs-about-brand-panel { min-height: 320px; }
}

/* ── testimonial cards + custom-orders CTA on small phones ── */
@media (max-width: 480px) {
    .gs-testimonial { padding: 28px 20px; }
    .gs-testimonial blockquote { font-size: 15px; }
    .gs-custom-cta-inner p { font-size: 15px; }
    .gs-custom-cta-uses { gap: 8px; }
}

/* ── footer brand column: centered whenever it spans the full row ── */
@media (max-width: 1024px) {
    .footer-brand { text-align: center; }
    .footer-brand .footer-logo { display: inline-block; }
    .footer-brand .footer-social { justify-content: center; }
}

/* ── Ambient butterflies (touch devices) — fly BEHIND content:
      fixed at z-index 0, while .container stacks above at z-index 1.
      Section backgrounds (normal flow) still paint underneath. ── */
.container { position: relative; z-index: 1; }
.gaea-butterfly.gaea-ambient {
    z-index: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.gaea-butterfly.gaea-ambient.is-on { opacity: 0.55; }
