/* ============================================================
   AMONG THE WILDFLOWERS — style.css
   ============================================================ */

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
    /* Brand Palette */
    --soft-cream:    #D2D1D0;
    --warm-taupe:    #C2B09D;
    --natural-beige: #AA9B8A;
    --wood-brown:    #AB8563;
    --olive-green:   #6E5C46;
    --deep-espresso: #403525;

    /* Semantic roles */
    --bg:          #D2D1D0;
    --bg-alt:      #C2B09D;
    --card-bg:     #AA9B8A;
    --btn:         #6E5C46;
    --btn-hover:   #AB8563;
    --text:        #403525;
    --accent:      #C2B09D;

    /* Typography */
    --font-serif:  'Playfair Display', Georgia, serif;
    --font-sans:   'Lato', system-ui, sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Layout */
    --section-py:    100px;
    --container-max: 1200px;
    --container-px:  28px;

    /* Transitions */
    --t:      0.28s ease;
    --t-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 14px rgba(64, 53, 37, 0.08);
    --shadow-md: 0 8px 32px rgba(64, 53, 37, 0.12);
    --shadow-lg: 0 20px 52px rgba(64, 53, 37, 0.18);

    /* Radii */
    --r-sm:   8px;
    --r-md:   16px;
    --r-lg:   28px;
    --r-pill: 999px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--olive-green);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 600;
    color: var(--deep-espresso);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title--light { color: var(--soft-cream); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--olive-green);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-subtitle--light { color: var(--warm-taupe); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--r-pill);
    transition: all var(--t);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--olive-green);
    color: var(--soft-cream);
    border-color: var(--olive-green);
}
.btn--primary:hover {
    background: var(--wood-brown);
    border-color: var(--wood-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 92, 70, 0.32);
}

.btn--ghost {
    background: transparent;
    color: var(--deep-espresso);
    border-color: rgba(64, 53, 37, 0.5);
}
.btn--ghost:hover {
    background: var(--deep-espresso);
    border-color: var(--deep-espresso);
    color: var(--soft-cream);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--deep-espresso);
    border-color: var(--deep-espresso);
    padding: 13px 30px;
}
.btn--outline-dark:hover {
    background: var(--deep-espresso);
    color: var(--soft-cream);
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 22px;
    font-size: 0.75rem;
    background: var(--olive-green);
    color: var(--soft-cream);
    border-color: var(--olive-green);
    border-radius: var(--r-pill);
}
.btn--small:hover {
    background: var(--wood-brown);
    border-color: var(--wood-brown);
    transform: translateY(-1px);
}

/* ===========================
   MOBILE NAV OVERLAY
   =========================== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--soft-cream);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 60px 20px 40px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 600;
    color: var(--deep-espresso);
    transition: color var(--t);
    letter-spacing: 0.01em;
}
.mobile-nav a:hover { color: var(--wood-brown); }

.mobile-nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    margin-bottom: 12px;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-espresso);
    border-radius: 50%;
    transition: background var(--t);
}
.mobile-nav-close:hover { background: rgba(64,53,37,0.08); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--t-slow);
}

.navbar.scrolled {
    background: rgba(210, 209, 208, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--deep-espresso);
}

.logo-accent {
    font-family: var(--font-script);
    font-size: 0.9rem;
    color: var(--wood-brown);
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-espresso);
    letter-spacing: 0.03em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--deep-espresso);
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--wood-brown);
    transition: width var(--t);
}
.nav-link:hover::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-espresso);
    border-radius: 50%;
    transition: background var(--t);
}
.nav-icon-btn:hover { background: rgba(64,53,37,0.08); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--deep-espresso);
    transition: all var(--t);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================
   NAV DROPDOWNS
   =========================== */
.has-dropdown { position: relative; }

.nav-link--arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-chevron {
    flex-shrink: 0;
    opacity: 0.65;
    transition: transform var(--t), opacity var(--t);
}

.has-dropdown:hover .nav-chevron,
.has-dropdown.open .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Outer wrapper — transparent bridge that keeps hover alive over the gap */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 600;
}

.nav-dropdown--right {
    left: auto;
    right: 0;
    transform: none;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: all;
}

/* Inner box — the visual container */
.nav-dropdown-inner {
    background: var(--soft-cream);
    border-radius: var(--r-md);
    box-shadow: 0 20px 60px rgba(64, 53, 37, 0.16), 0 4px 20px rgba(64, 53, 37, 0.10);
    border: 1px solid rgba(171, 133, 99, 0.2);
    padding: 10px;
    min-width: 290px;
    transform: translateY(-8px);
    transition: transform 0.24s cubic-bezier(0.34, 1.44, 0.64, 1);
    position: relative;
}

.nav-dropdown-inner--sm { min-width: 210px; }

.has-dropdown:hover .nav-dropdown-inner,
.has-dropdown.open .nav-dropdown-inner {
    transform: translateY(0);
}

/* Upward caret arrow */
.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(171, 133, 99, 0.22);
}
.nav-dropdown-inner::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--soft-cream);
}
.nav-dropdown--right .nav-dropdown-inner::before,
.nav-dropdown--right .nav-dropdown-inner::after {
    left: auto;
    right: 20px;
    transform: none;
}

/* Section label */
.nav-drop-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wood-brown);
    padding: 6px 12px 4px;
    opacity: 0.6;
    margin: 0;
}

/* Divider between sections */
.drop-rule {
    height: 1px;
    background: rgba(171, 133, 99, 0.18);
    margin: 8px 10px;
}

/* Drop item with mini soap bar */
.nav-drop-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 12px;
    border-radius: var(--r-sm);
    transition: background var(--t), transform var(--t);
    color: var(--deep-espresso);
    text-decoration: none;
}
.nav-drop-item:hover {
    background: rgba(171, 133, 99, 0.12);
    transform: translateX(3px);
}

/* Mini soap bar swatch */
.drop-soap {
    width: 26px;
    height: 36px;
    border-radius: 5px 5px 4px 4px;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--soap-c1, #D2D1D0), var(--soap-c2, #AA9B8A));
    box-shadow: 2px 4px 10px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    transform: rotate(-4deg);
}
.drop-soap::before {
    content: '';
    position: absolute;
    top: 7px; left: 4px; right: 4px;
    height: 1px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}

.drop-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 2px;
    line-height: 1.1;
}
.drop-text em {
    display: block;
    font-size: 0.68rem;
    color: var(--olive-green);
    font-style: normal;
    opacity: 0.78;
    line-height: 1.3;
}

/* Flat drop items — no swatch, plain text */
.nav-drop-item--flat {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    color: var(--deep-espresso);
    opacity: 0.78;
    gap: 0;
}
.nav-drop-item--flat:hover { opacity: 1; }

/* Stagger entrance on items */
.has-dropdown:hover .nav-drop-item:nth-child(2),
.has-dropdown.open .nav-drop-item:nth-child(2) { animation-delay: 0.02s; }
.has-dropdown:hover .nav-drop-item:nth-child(3),
.has-dropdown.open .nav-drop-item:nth-child(3) { animation-delay: 0.04s; }
.has-dropdown:hover .nav-drop-item:nth-child(4),
.has-dropdown.open .nav-drop-item:nth-child(4) { animation-delay: 0.06s; }
.has-dropdown:hover .nav-drop-item:nth-child(5),
.has-dropdown.open .nav-drop-item:nth-child(5) { animation-delay: 0.08s; }
.has-dropdown:hover .nav-drop-item:nth-child(6),
.has-dropdown.open .nav-drop-item:nth-child(6) { animation-delay: 0.10s; }

/* Mobile sub-links */
.mobile-sub-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(171, 133, 99, 0.22);
    border-bottom: 1px solid rgba(171, 133, 99, 0.22);
    margin-bottom: 4px;
}
.mobile-sub-link {
    font-family: var(--font-sans) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: var(--wood-brown) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}
.mobile-sub-link:hover { color: var(--deep-espresso) !important; }

/* ===========================
   HERO
   =========================== */
.hero {
    min-height: 100svh;
    min-height: 100vh;
    background-color: var(--soft-cream);
    background-image:
        radial-gradient(ellipse at 15% 85%, rgba(194, 176, 157, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(171, 133, 99, 0.18) 0%, transparent 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px var(--container-px) 80px;
}

.hero-botanical {
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    pointer-events: none;
    opacity: 0.75;
}
.hero-botanical--left  { left: clamp(0px, 3vw, 40px); }
.hero-botanical--right { right: clamp(0px, 3vw, 40px); transform: translateY(-55%) scaleX(-1); }

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wood-brown);
    margin-bottom: 28px;
}

.eyebrow-line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--wood-brown);
    opacity: 0.55;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 8vw, 5.75rem);
    font-weight: 700;
    color: var(--deep-espresso);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--wood-brown);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--olive-green);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.trust-item strong {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-espresso);
    line-height: 1;
}
.trust-item span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive-green);
}

.trust-divider {
    width: 1px;
    height: 44px;
    background: var(--warm-taupe);
    opacity: 0.5;
}

/* ===========================
   VALUES
   =========================== */
.values {
    background: var(--deep-espresso);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    color: var(--warm-taupe);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-taupe);
    background: rgba(194, 176, 157, 0.1);
    border: 1px solid rgba(194, 176, 157, 0.18);
    border-radius: 50%;
}

.value-item h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-cream);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.75;
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

.product-card {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.product-visual {
    position: relative;
    height: 240px;
    background: linear-gradient(145deg, var(--soap-c1, #D2D1D0), var(--soap-c2, #AA9B8A));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.1) 100%);
}

/* CSS soap bar */
.soap-bar {
    width: 86px;
    height: 108px;
    background: linear-gradient(145deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.06) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.42);
    box-shadow:
        5px 10px 28px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
    transform: rotate(-5deg);
}
.soap-bar::before {
    content: '';
    position: absolute;
    top: 11px; left: 9px; right: 9px;
    height: 1px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}
.soap-bar::after {
    content: '';
    position: absolute;
    top: 16px; left: 9px; right: 9px;
    height: 1px;
    background: rgba(255,255,255,0.28);
    border-radius: 50%;
}

.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--deep-espresso);
    color: var(--soft-cream);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: var(--r-pill);
    z-index: 2;
}
.product-badge--new      { background: var(--olive-green); }
.product-badge--seasonal { background: var(--wood-brown); }

.product-body { padding: 24px 24px 22px; }

.product-category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wood-brown);
    margin-bottom: 6px;
    display: block;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--olive-green);
    line-height: 1.65;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-espresso);
}

.products-cta { text-align: center; }

/* ===========================
   STORY
   =========================== */
.story {
    padding: var(--section-py) 0;
    background: var(--warm-taupe);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual { position: relative; }

.story-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: visible;
}

.story-frame-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--natural-beige) 0%, var(--warm-taupe) 45%, var(--wood-brown) 100%);
}

.story-frame-border {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 75%;
    height: 75%;
    border: 2px solid var(--wood-brown);
    border-radius: var(--r-lg);
    opacity: 0.28;
    pointer-events: none;
}

.story-quote-badge {
    position: absolute;
    bottom: 22px;
    left: -22px;
    background: var(--deep-espresso);
    color: var(--soft-cream);
    padding: 20px 22px;
    border-radius: var(--r-md);
    font-family: var(--font-script);
    font-size: 1.1rem;
    line-height: 1.45;
    box-shadow: var(--shadow-md);
    max-width: 175px;
    text-align: center;
}

.story-content { padding-right: 12px; }

.story-content .section-eyebrow { margin-bottom: 14px; }
.story-content .section-title   { margin-bottom: 28px; }

.story-text {
    font-size: 1rem;
    color: var(--deep-espresso);
    line-height: 1.85;
    margin-bottom: 18px;
    opacity: 0.82;
}
.story-text:last-of-type { margin-bottom: 36px; }

/* ===========================
   INGREDIENTS
   =========================== */
.ingredients {
    padding: var(--section-py) 0;
    background: var(--deep-espresso);
}

.ingredients .section-eyebrow { color: var(--warm-taupe); }

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ingredient-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(194, 176, 157, 0.14);
    border-radius: var(--r-md);
    padding: 38px 28px 32px;
    text-align: center;
    transition: background var(--t), border-color var(--t), transform var(--t);
}
.ingredient-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(171, 133, 99, 0.38);
    transform: translateY(-5px);
}

.ingredient-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.ingredient-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-cream);
    margin-bottom: 10px;
}

.ingredient-item p {
    font-size: 0.875rem;
    color: var(--warm-taupe);
    line-height: 1.75;
    opacity: 0.82;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--warm-taupe);
    border-radius: var(--r-md);
    padding: 38px 32px 32px;
    position: relative;
    transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; left: 22px;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--wood-brown);
    opacity: 0.25;
    line-height: 1;
}

.testimonial-stars {
    color: var(--wood-brown);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--deep-espresso);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.88;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px; height: 42px;
    background: var(--deep-espresso);
    color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--deep-espresso);
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-author span {
    font-size: 0.72rem;
    color: var(--olive-green);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter {
    padding: var(--section-py) 0;
    background: var(--natural-beige);
}

.newsletter-inner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.newsletter-botanical {
    position: absolute;
    top: -24px;
    left: -90px;
    opacity: 0.45;
    pointer-events: none;
}

.newsletter .section-eyebrow {
    color: var(--deep-espresso);
    opacity: 0.58;
}
.newsletter .section-title  { margin-bottom: 14px; }

.newsletter-text {
    font-size: 1rem;
    color: var(--deep-espresso);
    opacity: 0.72;
    line-height: 1.75;
    margin-bottom: 36px;
}

.newsletter-form { max-width: 460px; margin: 0 auto; }

.form-group {
    display: flex;
    border-radius: var(--r-pill);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.68);
    color: var(--deep-espresso);
    outline: none;
    min-width: 0;
}
.newsletter-input::placeholder { color: rgba(64,53,37,0.42); }
.newsletter-input:focus { background: rgba(255,255,255,0.9); }

.form-group .btn {
    border-radius: 0;
    border-top-right-radius: var(--r-pill);
    border-bottom-right-radius: var(--r-pill);
    padding: 16px 26px;
    transform: none !important;
    box-shadow: none !important;
}

.newsletter-note {
    font-size: 0.74rem;
    color: var(--deep-espresso);
    opacity: 0.48;
    letter-spacing: 0.04em;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--deep-espresso);
    padding: 80px 0 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 80px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(194, 176, 157, 0.14);
}

.footer-logo .logo-accent { color: var(--warm-taupe); }
.footer-logo .logo-main   { color: var(--soft-cream); }

.footer-tagline {
    font-size: 0.875rem;
    color: var(--warm-taupe);
    line-height: 1.75;
    margin-top: 14px;
    margin-bottom: 24px;
    opacity: 0.72;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-taupe);
    border: 1px solid rgba(194,176,157,0.22);
    border-radius: 50%;
    transition: all var(--t);
    opacity: 0.72;
}
.social-link:hover {
    color: var(--soft-cream);
    border-color: var(--warm-taupe);
    background: rgba(194,176,157,0.1);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--soft-cream);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--warm-taupe);
    opacity: 0.68;
    transition: all var(--t);
}
.footer-col a:hover {
    color: var(--soft-cream);
    opacity: 1;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--warm-taupe);
    opacity: 0.45;
}

.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.8rem;
    color: var(--warm-taupe);
    opacity: 0.45;
    transition: opacity var(--t);
}
.footer-legal a:hover { opacity: 0.85; }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children in grids */
.values-grid    .reveal:nth-child(2) { transition-delay: 0.1s; }
.values-grid    .reveal:nth-child(3) { transition-delay: 0.2s; }
.values-grid    .reveal:nth-child(4) { transition-delay: 0.3s; }
.products-grid  .reveal:nth-child(2) { transition-delay: 0.08s; }
.products-grid  .reveal:nth-child(3) { transition-delay: 0.16s; }
.products-grid  .reveal:nth-child(4) { transition-delay: 0.06s; }
.products-grid  .reveal:nth-child(5) { transition-delay: 0.14s; }
.products-grid  .reveal:nth-child(6) { transition-delay: 0.22s; }
.ingredients-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.ingredients-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.ingredients-grid .reveal:nth-child(4) { transition-delay: 0.06s; }
.ingredients-grid .reveal:nth-child(5) { transition-delay: 0.14s; }
.ingredients-grid .reveal:nth-child(6) { transition-delay: 0.22s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ===========================
   PRODUCT CAROUSEL
   =========================== */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    padding: 32px 0 40px; /* room for float shadow & hover lift */
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: flex-end;
}

.carousel-slide {
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ── Floating card ── */
.float-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.float-card:hover .float-soap-wrap { transform: translateY(-12px); }
.float-card:hover .float-soap-bar  { box-shadow: 0 32px 64px rgba(64, 53, 37, 0.22), 0 8px 24px rgba(64,53,37,0.15); }

.float-soap-wrap {
    position: relative;
    transition: transform 0.42s cubic-bezier(0.34, 1.44, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 6px;
}

/* Ellipse shadow underneath the soap */
.float-soap-wrap::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(64,53,37,0.22) 0%, transparent 72%);
    border-radius: 50%;
    transition: opacity 0.42s ease, width 0.42s ease;
    pointer-events: none;
}
.float-card:hover .float-soap-wrap::after {
    opacity: 0.45;
    width: 55%;
}

/* Image-based soap in carousel */
.float-soap-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(64, 53, 37, 0.22));
    transition: filter 0.42s ease;
}
.float-card:hover .float-soap-img {
    filter: drop-shadow(0 28px 40px rgba(64, 53, 37, 0.28));
}

.float-soap-bar {
    width: 130px;
    height: 160px;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--soap-c1, #D2D1D0) 85%, white 15%) 0%,
        var(--soap-c1, #D2D1D0) 35%,
        var(--soap-c2, #AA9B8A) 100%
    );
    border-radius: 14px 14px 10px 10px;
    box-shadow:
        0 18px 44px rgba(64, 53, 37, 0.18),
        0 4px 12px rgba(64, 53, 37, 0.12),
        inset 0 2px 0 rgba(255,255,255,0.55),
        inset 0 -2px 6px rgba(0,0,0,0.08);
    position: relative;
    transition: box-shadow 0.42s ease;
}
/* Top shine line */
.float-soap-bar::before {
    content: '';
    position: absolute;
    top: 14px; left: 12px; right: 12px;
    height: 1.5px;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
}
/* Second shine line */
.float-soap-bar::after {
    content: '';
    position: absolute;
    top: 22px; left: 14px; right: 14px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.float-badge {
    position: absolute;
    top: -10px;
    right: calc(50% - 72px);
    background: var(--deep-espresso);
    color: var(--soft-cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: var(--r-pill);
    z-index: 2;
    white-space: nowrap;
}
.float-badge.product-badge--new      { background: var(--olive-green); }
.float-badge.product-badge--seasonal { background: var(--wood-brown); }

.float-card-info {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.float-card-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-espresso);
    line-height: 1.2;
}

.float-card-price {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--wood-brown);
    letter-spacing: 0.02em;
}

.float-card-media {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.float-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.float-card-btn {
    font-size: 0.72rem;
    padding: 10px 26px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(64, 53, 37, 0.14);
    color: var(--deep-espresso);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t);
    box-shadow: var(--shadow-sm);
}
.carousel-arrow:hover:not(:disabled) {
    background: var(--deep-espresso);
    color: var(--soft-cream);
    border-color: var(--deep-espresso);
    transform: scale(1.06);
    box-shadow: var(--shadow-md);
}
.carousel-arrow:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    transform: none !important;
}

/* ===========================
   PRODUCT DETAIL PAGE
   =========================== */
.product-detail {
    padding: 120px 0 var(--section-py);
    background: var(--soft-cream);
    min-height: 100vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 52px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--olive-green);
}
.breadcrumb a { opacity: 0.55; transition: opacity var(--t); color: var(--olive-green); }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb-sep { opacity: 0.35; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    margin-bottom: 80px;
}

.product-detail-visual-col {
    position: sticky;
    top: 100px;
}

.product-detail-soap-wrap {
    aspect-ratio: 1;
    border-radius: var(--r-lg);
    background: linear-gradient(145deg, var(--soap-c1, #D2D1D0), var(--soap-c2, #AA9B8A));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.product-detail-soap-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}

.detail-soap-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soap-bar-lg {
    width: 140px;
    height: 176px;
    background: linear-gradient(145deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.06) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.42);
    box-shadow:
        8px 16px 48px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    transform: rotate(-5deg);
}
.soap-bar-lg::before {
    content: '';
    position: absolute;
    top: 18px; left: 14px; right: 14px;
    height: 1.5px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}
.soap-bar-lg::after {
    content: '';
    position: absolute;
    top: 26px; left: 14px; right: 14px;
    height: 1.5px;
    background: rgba(255,255,255,0.28);
    border-radius: 50%;
}

.detail-soap-visual .product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.product-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-espresso);
    line-height: 1.15;
    margin-bottom: 14px;
    margin-top: 4px;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.detail-stars {
    color: var(--wood-brown);
    font-size: 1.15rem;
    letter-spacing: 2px;
}
.detail-rating-text {
    font-size: 0.85rem;
    color: var(--olive-green);
    font-weight: 600;
    opacity: 0.75;
}

.detail-price {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--deep-espresso);
    margin-bottom: 24px;
    line-height: 1;
}

.detail-description {
    font-size: 1rem;
    color: var(--olive-green);
    line-height: 1.85;
    margin-bottom: 30px;
    opacity: 0.88;
}

.detail-ingredients {
    margin-bottom: 32px;
    padding: 22px 24px;
    background: rgba(171, 133, 99, 0.08);
    border-radius: var(--r-md);
    border: 1px solid rgba(171, 133, 99, 0.18);
}
.detail-ingredients h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--olive-green);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.detail-ingredients ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.detail-ingredients li {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--olive-green);
    background: rgba(110, 92, 70, 0.1);
    padding: 5px 14px;
    border-radius: var(--r-pill);
}

.detail-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.qty-selector {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(64, 53, 37, 0.15);
    border-radius: var(--r-pill);
    height: 50px;
    flex-shrink: 0;
}
.qty-btn {
    width: 46px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--deep-espresso);
    cursor: pointer;
    transition: background var(--t);
    border: none;
    background: none;
    line-height: 1;
}
.qty-btn:hover { background: rgba(64, 53, 37, 0.07); }
.qty-btn:first-child { border-radius: var(--r-pill) 0 0 var(--r-pill); }
.qty-btn:last-child  { border-radius: 0 var(--r-pill) var(--r-pill) 0; }
.qty-value {
    min-width: 38px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--deep-espresso);
    user-select: none;
}
.detail-cart-btn {
    flex: 1;
    justify-content: center;
    height: 50px;
    padding: 0 32px;
}

.back-link {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive-green);
    opacity: 0.6;
    transition: opacity var(--t);
}
.back-link:hover { opacity: 1; }

/* Image-based detail view */
.detail-soap-img {
    width: 85%;
    max-width: 380px;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(64, 53, 37, 0.25));
    display: block;
    margin: 0 auto;
}
.product-detail-soap-wrap.detail-soap-image-mode {
    background: transparent;
    box-shadow: none;
}
.product-detail-soap-wrap.detail-soap-image-mode::before {
    display: none;
}

/* Reviews */
.product-reviews-section {
    border-top: 1px solid rgba(64, 53, 37, 0.12);
    padding-top: 64px;
    padding-bottom: 20px;
}
.reviews-heading {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 36px;
}
.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--warm-taupe);
    border-radius: var(--r-md);
    padding: 28px;
    transition: transform var(--t), box-shadow var(--t);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-header strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-espresso);
}
.review-header span {
    font-size: 0.7rem;
    color: var(--olive-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.review-stars {
    color: var(--wood-brown);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-left: auto;
}
.review-text {
    font-size: 0.9rem;
    color: var(--deep-espresso);
    line-height: 1.8;
    font-style: italic;
    opacity: 0.85;
}

/* ===========================
   SNIPCART OVERRIDES
   =========================== */
#snipcart,
.snipcart-modal__container,
.snipcart-cart-header,
.snipcart-cart-summary,
.snipcart-overflowing-wrapper {
    z-index: 99999 !important;
}
.snipcart-modal__container {
    top: 0 !important;
}

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
    :root { --section-py: 88px; }

    .values-grid        { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .products-grid      { grid-template-columns: repeat(2, 1fr); }
    .ingredients-grid   { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }

    .story-grid { gap: 52px; }
    .story-grid .story-content { padding-right: 0; }

    .footer-top { grid-template-columns: 1fr; gap: 44px; }
}

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
    :root {
        --section-py:    72px;
        --container-px:  20px;
    }

    .nav-menu   { display: none; }
    .hamburger  { display: flex; }

    .hero-botanical        { opacity: 0.35; }
    .hero-botanical--left  { left: -50px; }
    .hero-botanical--right { right: -50px; }

    .hero { padding: 130px 20px 72px; }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .story-quote-badge {
        left: 12px;
        bottom: 12px;
    }

    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
    .products-grid     { grid-template-columns: 1fr; }
    .ingredients-grid  { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .values-grid       { grid-template-columns: 1fr; gap: 24px; }
    .footer-nav        { grid-template-columns: 1fr; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .trust-divider { display: none; }
    .hero-trust    { gap: 18px; }

    .newsletter-botanical { display: none; }

    .form-group {
        flex-direction: column;
        border-radius: var(--r-md);
        overflow: visible;
        box-shadow: none;
        gap: 10px;
    }
    .newsletter-input {
        border-radius: var(--r-pill) !important;
        padding: 15px 22px;
        box-shadow: var(--shadow-sm);
    }
    .form-group .btn {
        border-radius: var(--r-pill) !important;
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   RESPONSIVE — CAROUSEL
   =========================== */
@media (max-width: 640px) {
    .carousel-wrapper { gap: 10px; }
    .carousel-arrow  { width: 40px; height: 40px; }
}

/* ===========================
   RESPONSIVE — PRODUCT DETAIL
   =========================== */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-detail-visual-col {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .reviews-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .reviews-list { grid-template-columns: 1fr; }
    .detail-actions { flex-wrap: wrap; }
    .qty-selector { flex: 1; }
    .detail-cart-btn { flex: none; width: 100%; }
}

/* ===========================
   PAGE BANNER (inner pages)
   =========================== */
.page-banner {
    padding: 150px 0 80px;
    background: var(--soft-cream);
    text-align: center;
    border-bottom: 1px solid rgba(110, 92, 70, 0.1);
}
.page-banner .section-eyebrow { margin-bottom: 14px; }
.page-banner .section-title   { margin-bottom: 16px; }
.page-banner-subtitle {
    font-size: 1.05rem;
    color: var(--olive-green);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ===========================
   SHOP PAGES
   =========================== */
.shop-section {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    font-size: 1rem;
    color: var(--olive-green);
    font-style: italic;
}

/* ===========================
   INFO / CONTENT PAGES
   =========================== */
.info-section {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}
.info-content {
    max-width: 780px;
    margin: 0 auto;
}
.info-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 16px;
    margin-top: 48px;
}
.info-content h2:first-child { margin-top: 0; }
.info-content p {
    font-size: 1rem;
    color: var(--olive-green);
    line-height: 1.85;
    margin-bottom: 20px;
}
.info-content ul,
.info-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}
.info-content li {
    font-size: 1rem;
    color: var(--olive-green);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}
.info-content strong { color: var(--deep-espresso); font-weight: 700; }

/* ===========================
   FAQ PAGE
   =========================== */
.faq-section {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(110, 92, 70, 0.14);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-espresso);
    cursor: pointer;
    transition: color var(--t);
    width: 100%;
    text-align: left;
    background: none;
}
.faq-question:hover { color: var(--wood-brown); }
.faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border: 1.5px solid var(--olive-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
    color: var(--olive-green);
    font-size: 1rem;
    line-height: 1;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--olive-green);
    color: var(--soft-cream);
}
.faq-answer {
    display: none;
    padding: 0 0 24px;
    font-size: 0.975rem;
    color: var(--olive-green);
    line-height: 1.85;
}
.faq-item.open .faq-answer { display: block; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 14px;
}
.contact-info p {
    font-size: 0.95rem;
    color: var(--olive-green);
    line-height: 1.8;
    margin-bottom: 28px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-detail-icon {
    width: 42px; height: 42px;
    background: var(--warm-taupe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-espresso);
    flex-shrink: 0;
}
.contact-detail-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-espresso);
    margin-bottom: 2px;
}
.contact-detail-text span {
    font-size: 0.925rem;
    color: var(--olive-green);
}
.contact-form-card {
    background: var(--warm-taupe);
    border-radius: var(--r-lg);
    padding: 48px 44px;
}
.contact-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 28px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cf-field { margin-bottom: 16px; }
.cf-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-espresso);
    margin-bottom: 7px;
}
.cf-input,
.cf-select,
.cf-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(64, 53, 37, 0.18);
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.55);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--deep-espresso);
    transition: border-color var(--t), background var(--t);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
    border-color: var(--wood-brown);
    background: rgba(255,255,255,0.85);
}
.cf-input::placeholder,
.cf-textarea::placeholder { color: rgba(64,53,37,0.38); }
.cf-textarea { resize: vertical; min-height: 140px; }
.cf-submit { width: 100%; justify-content: center; }

/* ===========================
   JOURNAL PAGE
   =========================== */
.journal-section {
    padding: var(--section-py) 0;
    background: var(--soft-cream);
}
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.journal-card {
    background: var(--warm-taupe);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}
.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.journal-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, var(--natural-beige), var(--wood-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.journal-card-body { padding: 24px 24px 28px; }
.journal-card-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood-brown);
    margin-bottom: 8px;
    display: block;
}
.journal-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 10px;
    line-height: 1.35;
}
.journal-card-excerpt {
    font-size: 0.875rem;
    color: var(--deep-espresso);
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 18px;
}
.journal-card-meta {
    font-size: 0.72rem;
    color: var(--olive-green);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===========================
   SUSTAINABILITY PAGE
   =========================== */
.sustainability-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 52px 0 16px;
}
.pillar-card {
    background: var(--warm-taupe);
    border-radius: var(--r-md);
    padding: 36px 32px;
    transition: transform var(--t), box-shadow var(--t);
}
.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pillar-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.pillar-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 10px;
}
.pillar-card p {
    font-size: 0.9rem;
    color: var(--deep-espresso);
    opacity: 0.75;
    line-height: 1.8;
}

/* ===========================
   WHOLESALE PAGE
   =========================== */
.wholesale-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 52px 0 16px;
}
.wholesale-feature {
    text-align: center;
    padding: 36px 24px;
    background: var(--warm-taupe);
    border-radius: var(--r-md);
    transition: transform var(--t);
}
.wholesale-feature:hover { transform: translateY(-5px); }
.wholesale-feature-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.wholesale-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 8px;
}
.wholesale-feature p {
    font-size: 0.875rem;
    color: var(--deep-espresso);
    opacity: 0.72;
    line-height: 1.75;
}

/* ===========================
   GIFT SETS PAGE
   =========================== */
.gift-sets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.gift-set-card {
    background: var(--warm-taupe);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}
.gift-set-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.gift-set-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, var(--natural-beige), var(--wood-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.gift-set-body { padding: 28px 28px 32px; }
.gift-set-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood-brown);
    margin-bottom: 8px;
    display: block;
}
.gift-set-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--deep-espresso);
    margin-bottom: 10px;
}
.gift-set-desc {
    font-size: 0.9rem;
    color: var(--deep-espresso);
    opacity: 0.75;
    line-height: 1.75;
    margin-bottom: 20px;
}
.gift-set-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.gift-set-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-espresso);
}

/* ===========================
   RESPONSIVE — INNER PAGES
   =========================== */
@media (max-width: 1024px) {
    .shop-grid          { grid-template-columns: repeat(2, 1fr); }
    .journal-grid       { grid-template-columns: repeat(2, 1fr); }
    .wholesale-features { grid-template-columns: repeat(2, 1fr); }
    .contact-grid       { gap: 44px; }
}
@media (max-width: 768px) {
    .contact-grid           { grid-template-columns: 1fr; }
    .contact-form-card      { padding: 36px 28px; }
    .cf-row                 { grid-template-columns: 1fr; }
    .sustainability-pillars { grid-template-columns: 1fr; }
    .gift-sets-grid         { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .shop-grid          { grid-template-columns: 1fr; }
    .journal-grid       { grid-template-columns: 1fr; }
    .wholesale-features { grid-template-columns: 1fr; }
}
