:root {
    --cream: #f5f0e8;
    --warm-white: #faf7f2;
    --forest: #2c4a2e;
    --moss: #4a6741;
    --sage: #7a9a6e;
    --gold: #c8923a;
    --amber: #e8a84b;
    --earth: #8b6343;
    --dark: #1a2e1b;
    --text: #2e2a22;
    --light-text: #6b6358;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 146, 58, 0.15);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--forest);
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-btn {
    background: var(--forest);
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-btn:hover {
    background: var(--gold);
}

.cart-btn svg {
    width: 16px;
    height: 16px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
}

.cart-badge.show {
    opacity: 1;
    transform: scale(1);
}

/* ── CART OVERLAY ────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(26, 46, 27, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(3px);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── CART DRAWER ─────────────────────────────────── */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--warm-white);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid rgba(200, 146, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
}

.cart-drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--forest);
}

.cart-drawer-title span {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    color: var(--light-text);
    margin-left: 0.5rem;
    font-weight: 400;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    border-radius: 2px;
}

.cart-close:hover {
    color: var(--gold);
    background: rgba(200, 146, 58, 0.1);
}

.cart-close svg {
    width: 18px;
    height: 18px;
}

/* SHIPPING BAR */
.cart-shipping-bar {
    padding: 1rem 1.8rem;
    background: rgba(44, 74, 46, 0.05);
    border-bottom: 1px solid rgba(200, 146, 58, 0.1);
}

.cart-shipping-bar p {
    font-size: 0.78rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cart-shipping-bar p svg {
    width: 14px;
    height: 14px;
    color: var(--sage);
    flex-shrink: 0;
}

.cart-shipping-bar p strong {
    color: var(--forest);
}

.progress-track {
    height: 4px;
    background: rgba(200, 146, 58, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* CART ITEMS */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.8rem;
    scroll-behavior: smooth;
}

.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb {
    background: rgba(200, 146, 58, 0.3);
    border-radius: 2px;
}

.cart-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.cart-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    opacity: 0.35;
    color: var(--sage);
}

.cart-empty-icon svg { width: 100%; height: 100%; }

.cart-empty h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    font-size: 0.82rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.cart-empty a {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(200, 146, 58, 0.12);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--cream);
}

.cart-item-img svg { width: 32px; height: 32px; color: var(--sage); }

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--forest);
    line-height: 1.3;
}

.cart-item-variant {
    font-size: 0.72rem;
    color: var(--light-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cart-item-price {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.2rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(200, 146, 58, 0.3);
}

.qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: 'Jost', sans-serif;
}

.qty-btn:hover { background: rgba(44, 74, 46, 0.08); }

.qty-display {
    width: 30px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    border-left: 1px solid rgba(200, 146, 58, 0.2);
    border-right: 1px solid rgba(200, 146, 58, 0.2);
    padding: 4px 0;
}

.item-remove {
    background: none;
    border: none;
    font-size: 0.72rem;
    color: var(--light-text);
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    transition: color 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.item-remove svg { width: 11px; height: 11px; }
.item-remove:hover { color: #c0392b; }

/* CART FOOTER */
.cart-footer {
    padding: 1.5rem 1.8rem;
    border-top: 1px solid rgba(200, 146, 58, 0.2);
    background: var(--cream);
}

.cart-summary { margin-bottom: 1rem; }

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-row span:first-child {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-row span:last-child {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
}

.summary-row.total {
    border-top: 1px solid rgba(200, 146, 58, 0.2);
    padding-top: 0.7rem;
    margin-top: 0.5rem;
}

.summary-row.total span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--forest);
    text-transform: none;
    letter-spacing: 0;
}

.summary-row.total span:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.promo-row {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
}

.promo-input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(200, 146, 58, 0.3);
    border-right: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    background: var(--warm-white);
    color: var(--text);
    outline: none;
}

.promo-input::placeholder { color: rgba(107, 99, 88, 0.5); }

.promo-btn {
    padding: 0.65rem 1.1rem;
    background: var(--forest);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.promo-btn:hover { background: var(--gold); }

.checkout-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--forest);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.checkout-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-1px);
}

.continue-btn {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-btn:hover { background: var(--forest); color: #fff; }

.cart-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    color: var(--light-text);
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.05em;
}

.trust-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── CHECKOUT MODAL ───────────────────────────────── */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 46, 27, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(6px);
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-box {
    background: var(--warm-white);
    width: 540px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.checkout-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 146, 58, 0.2);
}

.checkout-section-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-field label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-text);
}

.form-field input,
.form-field select {
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(200, 146, 58, 0.25);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus { border-color: var(--gold); }

.checkout-order-summary {
    background: var(--cream);
    padding: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.82rem;
    color: var(--text);
    border-bottom: 1px solid rgba(200, 146, 58, 0.1);
}

.checkout-item-row:last-child { border-bottom: none; }
.checkout-item-row span:last-child { color: var(--gold); font-weight: 500; }

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--forest);
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 2px solid rgba(200, 146, 58, 0.3);
}

.checkout-total-row span:last-child { color: var(--gold); }

.place-order-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--forest);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.place-order-btn svg { width: 17px; height: 17px; }
.place-order-btn:hover { background: var(--gold); color: var(--dark); }

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.modal-close svg { width: 20px; height: 20px; }
.modal-close:hover { color: var(--text); }

/* SUCCESS */
.order-success {
    text-align: center;
    padding: 3rem 1rem;
    display: none;
}

.order-success.show { display: block; }

.success-icon { width: 64px; height: 64px; margin: 0 auto 1rem; color: var(--sage); }
.success-icon svg { width: 100%; height: 100%; }

.order-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.order-success p {
    color: var(--light-text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ── TOAST ────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--forest);
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.toast svg { width: 15px; height: 15px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(74, 103, 65, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 146, 58, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 4rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: fadeUp 0.6s ease forwards;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1.0;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.3rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--light-text);
    margin: 1.5rem 0 2.5rem;
    max-width: 380px;
    line-height: 1.7;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    background: var(--forest);
    color: #fff;
    padding: 1rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    padding: 1rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover { background: var(--forest); color: #fff; }

.hero-stats {
    margin-top: 4rem;
    display: flex;
    gap: 3rem;
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}

.stat-item p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-text);
    margin-top: 0.2rem;
}

/* ── HERO RIGHT PANEL ─────────────────────────────── */
.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-visual {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--forest) 0%, #1a3a1c 60%, #0e2410 100%);
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(200, 146, 58, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(122, 154, 110, 0.15) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

/* Decorative leaves */
.hero-leaf-1,
.hero-leaf-2,
.hero-leaf-3 {
    position: absolute;
    opacity: 0.18;
    animation: sway 6s ease-in-out infinite;
    z-index: 3;
}

.hero-leaf-1 { top: 10%; left: 8%; animation-delay: 0s; }
.hero-leaf-1 svg { width: 70px; height: 70px; }

.hero-leaf-2 { bottom: 15%; right: 10%; animation-delay: 2s; }
.hero-leaf-2 svg { width: 90px; height: 90px; }

.hero-leaf-3 { top: 60%; left: 15%; animation-delay: 1s; }
.hero-leaf-3 svg { width: 50px; height: 50px; }

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50%       { transform: rotate(5deg); }
}

/* ── HERO SLIDER ──────────────────────────────────── */
.hero-bottle {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;           /* fills the box — no gaps */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    -webkit-transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

/* Hero badge */
.hero-badge {
    position: absolute;
    top: 15%;
    right: 12%;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
}

.hero-badge span {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.4;
}

.hero-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    display: block;
}

/* ── MARQUEE ──────────────────────────────────────── */
.marquee-wrap {
    background: var(--forest);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.marquee-item svg { width: 12px; height: 12px; color: var(--amber); flex-shrink: 0; }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── ABOUT ────────────────────────────────────────── */
.about-strip {
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: var(--cream);
    position: relative;
}

.about-strip::before {
    content: 'WAKANZ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    font-weight: 700;
    color: rgba(44, 74, 46, 0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.about-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid var(--sage);
    transition: border-color 0.3s;
}

.feature-row:hover { border-color: var(--gold); }

.feature-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--sage); margin-top: 2px; }
.feature-icon svg { width: 100%; height: 100%; }

.feature-row h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.3rem;
}

.feature-row p { font-size: 0.82rem; color: var(--light-text); line-height: 1.5; }

.about-visual { position: relative; height: 500px; }

.about-img-main {
    width: 75%;
    height: 85%;
    background: linear-gradient(160deg, #3a6b3c, #1e4020);
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 60%, rgba(200, 146, 58, 0.3), transparent 60%);
}

.about-img-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 55%;
    background: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-img-accent-inner { text-align: center; color: var(--dark); }

.about-img-accent-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-img-accent-inner p {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ── PRODUCTS ─────────────────────────────────────── */
.products {
    padding: 7rem 5rem;
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--forest);
    line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--gold); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    height: 525px;
    width: 300px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-card:hover { transform: translateY(-6px); }
.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover .product-img-inner { transform: scale(1.05); }

.product-img { height: 320px; overflow: hidden; position: relative; }

.product-img-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.product-img-inner svg { width: 80px; height: 80px; opacity: 0.6; }

.product-card:nth-child(1) .product-img-inner { background: linear-gradient(145deg, #2c5a2e, #1a3a1c); }
.product-card:nth-child(2) .product-img-inner { background: linear-gradient(145deg, #5a3e1a, #3d2a0e); }
.product-card:nth-child(3) .product-img-inner { background: linear-gradient(145deg, #3a4f2c, #252e1a); }
.product-card:nth-child(4) .product-img-inner { background: linear-gradient(145deg, #4a3020, #2e1e0e); }
.product-card:nth-child(5) .product-img-inner { background: linear-gradient(145deg, #1e4e3a, #0e2e22); }
.product-card:nth-child(6) .product-img-inner { background: linear-gradient(145deg, #4e4020, #2e260e); }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 74, 46, 0.85);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-overlay a {
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 1.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.25rem 0.7rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.product-info { padding: 1.5rem; }

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 0.4rem;
}

.product-desc {
    font-size: 0.82rem;
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 1rem;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-price {
    margin-bottom: 5%;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    width: 100%;
    font-weight: bolder;
    font-size: 1.5rem;
}

.product-price span {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: var(--light-text);
    text-decoration: line-through;
    margin-right: 0.4rem;
}

.add-cart {
    background: var(--forest);
    color: #fff;
    border: none;
    padding: 0.6rem 1.1rem;
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.add-cart:hover { background: var(--gold); }

/* ── INGREDIENTS ──────────────────────────────────── */
.ingredients {
    padding: 7rem 5rem;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(200, 146, 58, 0.1), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(122, 154, 110, 0.08), transparent 50%);
    pointer-events: none;
}

.ingredients .section-title { color: var(--cream); }
.ingredients .section-label { color: var(--amber); }

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ingredient-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(200, 146, 58, 0.2);
    position: relative;
    transition: all 0.3s;
}

.ingredient-card:hover {
    background: rgba(200, 146, 58, 0.08);
    border-color: rgba(200, 146, 58, 0.5);
    transform: translateY(-4px);
}

.ingredient-icon { width: 52px; height: 52px; margin: 0 auto 1rem; color: var(--amber); }
.ingredient-icon svg { width: 100%; height: 100%; }

.ingredient-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.ingredient-card p { font-size: 0.8rem; color: rgba(245, 240, 232, 0.55); line-height: 1.6; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
    padding: 7rem 5rem;
    background: var(--cream);
}

.testimonial-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-top: 3px solid var(--gold);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

/* REVIEWS MARQUEE */
.reviews-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-inner {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: reviewsMarquee 30s linear infinite;
}

.reviews-marquee-inner:hover { animation-play-state: paused; }

@keyframes reviewsMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-marquee-inner .testimonial-card { width: 340px; flex-shrink: 0; }

.message, #message {
    text-align: center;
    font-weight: bold;
    color: #1e4020;
    font-size: 16px;
}

.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 15px; height: 15px; color: var(--amber); }

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar svg { width: 22px; height: 22px; color: #fff; }

.author-name {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.author-loc { font-size: 0.75rem; color: var(--light-text); }

/* ── NEWSLETTER ───────────────────────────────────── */
.newsletter {
    padding: 6rem 5rem;
    background: linear-gradient(135deg, var(--dark) 0%, #0a1a0b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 146, 58, 0.12), transparent 70%);
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1rem;
    position: relative;
}

.newsletter p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 2.5rem;
    position: relative;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 146, 58, 0.4);
    border-right: none;
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(245, 240, 232, 0.35); }

.newsletter-form button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 1.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--amber); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
    background: var(--dark);
    padding: 5rem 5rem 2rem;
    color: rgba(245, 240, 232, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(200, 146, 58, 0.15);
    padding-bottom: 4rem;
}

.footer-brand .nav-logo { font-size: 2rem; display: inline-block; margin-bottom: 1.2rem; }

.footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.5);
    max-width: 260px;
}

.footer-col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }

.footer-col a {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.3);
}

.footer-bottom a { color: var(--amber); text-decoration: none; }

.footer-social { display: flex; gap: 1rem; align-items: center; }

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(245, 240, 232, 0.4);
    transition: color 0.3s;
}

.footer-social a:hover { color: var(--amber); }
.footer-social svg { width: 15px; height: 15px; }

/* ── LOAD ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── PRODUCT MODAL ────────────────────────────────── */
.wkz-product-modal-wrap {
    position: fixed;
    inset: 0;
    background: rgba(14, 26, 15, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 1.5rem;
}

.wkz-product-modal-wrap.active { display: flex; }

.wkz-product-modal-box {
    background: var(--warm-white);
    width: 100%;
    max-width: 920px;
    height: 580px;
    max-height: 92vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    position: relative;
    animation: wkzModalIn .38s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.wkz-modal-image-panel {
    position: relative;
    background: linear-gradient(160deg, #2c5a2e 0%, #1a3a1c 55%, #0e2410 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wkz-modal-image-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 75%, rgba(200, 146, 58, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(122, 154, 110, 0.14) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

#wkzProductModalImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 2;
    filter: none;
}

.wkz-modal-tag {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    z-index: 3;
}

.wkz-modal-leaf-bg {
    position: absolute;
    bottom: -8%;
    right: -6%;
    width: 200px;
    height: 200px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
    color: var(--sage);
}

.wkz-modal-leaf-bg svg { width: 100%; height: 100%; }

.wkz-modal-details-panel {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.5rem;
    overflow-y: auto;
    background: var(--warm-white);
    position: relative;
    height: 100%;
    min-height: 0;
    justify-content: flex-start;
}

.wkz-modal-details-panel::-webkit-scrollbar { width: 3px; }
.wkz-modal-details-panel::-webkit-scrollbar-thumb {
    background: rgba(200, 146, 58, 0.3);
    border-radius: 2px;
}

.wkz-product-modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 74, 46, 0.06);
    border: 1px solid rgba(200, 146, 58, 0.2);
    cursor: pointer;
    color: var(--light-text);
    transition: all 0.22s;
    z-index: 10;
    flex-shrink: 0;
}

.wkz-product-modal-close-btn svg { width: 13px; height: 13px; }
.wkz-product-modal-close-btn:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

.wkz-modal-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wkz-modal-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

#wkzProductModalTitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.wkz-modal-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.wkz-modal-stars .stars-icons { display: flex; gap: 2px; }
.wkz-modal-stars .stars-icons svg { width: 13px; height: 13px; color: var(--amber); }

.wkz-modal-divider {
    height: 1px;
    background: rgba(200, 146, 58, 0.18);
    margin: 0 0 0.8rem;
}

#wkzProductModalDescription {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    flex: 1;
    min-height: 0;
}

.wkz-modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
    flex-shrink: 0;
}

.wkz-modal-benefit-pill {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(44, 74, 46, 0.07);
    border: 1px solid rgba(44, 74, 46, 0.14);
    padding: 0.25rem 0.6rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.wkz-modal-benefit-pill svg { width: 10px; height: 10px; flex-shrink: 0; }

.wkz-modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

#wkzProductModalPrice {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.wkz-modal-price-original {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--light-text);
    text-decoration: line-through;
}

.wkz-modal-price-badge {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(200, 146, 58, 0.12);
    color: var(--gold);
    padding: 0.2rem 0.55rem;
    border: 1px solid rgba(200, 146, 58, 0.28);
}

.wkz-modal-actions {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

#wkzProductModalAddBtn {
    flex: 1;
    padding: 0.85rem 1rem;
    background: var(--forest);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#wkzProductModalAddBtn svg { width: 15px; height: 15px; }
#wkzProductModalAddBtn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.wkz-modal-wishlist-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(44, 74, 46, 0.22);
    background: transparent;
    cursor: pointer;
    transition: all 0.22s;
    flex-shrink: 0;
    color: var(--light-text);
}

.wkz-modal-wishlist-btn svg { width: 18px; height: 18px; }
.wkz-modal-wishlist-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200, 146, 58, 0.06); }

.wkz-modal-trust {
    display: flex;
    gap: 0.8rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(200, 146, 58, 0.15);
    margin-top: auto;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.wkz-modal-trust-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    color: var(--light-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wkz-modal-trust-item svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Thumbnail bar */
.wkz-modal-thumbs-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: linear-gradient(to top, rgba(10, 26, 12, 0.85) 0%, transparent 100%);
    padding: 0.8rem 1rem 1rem;
    display: flex;
    justify-content: center;
}

.wkz-modal-thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    padding: 2px;
}

.wkz-modal-thumbs::-webkit-scrollbar { display: none; }

.wkz-modal-thumb {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wkz-modal-thumb:hover { opacity: 0.85; border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }
.wkz-modal-thumb.active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(200, 146, 58, 0.45); transform: translateY(-2px); }

@keyframes wkzModalIn {
    from { transform: translateY(22px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1);       opacity: 1; }
}

/* ── LEAVE A REVIEW ───────────────────────────────── */
.leave-review {
    padding: 7rem 5rem;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.leave-review::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(200, 146, 58, 0.12), transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(122, 154, 110, 0.08), transparent 50%);
    pointer-events: none;
}

.leave-review-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.leave-review-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.leave-review-title em { color: var(--gold); font-style: italic; }

.leave-review-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.review-trust-row { display: flex; flex-direction: column; gap: 0.9rem; }

.review-trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: rgba(245, 240, 232, 0.6);
}

.review-trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.review-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 146, 58, 0.25);
    padding: 2.5rem;
    text-align: center;
}

.review-stars-preview { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.2rem; }
.review-stars-preview svg { width: 22px; height: 22px; color: var(--amber); }

.review-cta-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.review-cta-attr {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
}

.review-open-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.review-open-btn:hover { background: var(--amber); transform: translateY(-2px); }

/* ── REVIEW MODAL ─────────────────────────────────── */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100002;
    background: rgba(14, 26, 15, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.review-modal-overlay.active { opacity: 1; pointer-events: all; }

.review-modal-box {
    background: var(--warm-white);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.review-modal-close svg { width: 18px; height: 18px; }
.review-modal-close:hover { color: var(--text); }

.review-modal-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.review-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 146, 58, 0.2);
}

.review-form-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.2rem; }

.review-form-field label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-text);
}

.review-form-field input,
.review-form-field select,
.review-form-field textarea {
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(200, 146, 58, 0.25);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.review-form-field input:focus,
.review-form-field select:focus,
.review-form-field textarea:focus { border-color: var(--gold); }

.star-picker { display: flex; gap: 6px; margin-top: 0.2rem; }

.star-pick {
    font-size: 2rem;
    color: rgba(200, 146, 58, 0.25);
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    line-height: 1;
    user-select: none;
}

.star-pick:hover,
.star-pick.active { color: var(--amber); transform: scale(1.15); }

.review-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--forest);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-submit-btn:hover { background: var(--gold); color: var(--dark); }

.review-success-inner { text-align: center; padding: 2rem 1rem; }
.review-success-icon { width: 60px; height: 60px; margin: 0 auto 1rem; color: var(--sage); }
.review-success-icon svg { width: 100%; height: 100%; }

.review-success-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.review-success-inner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ── MOBILE ───────────────────────────────────────── */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }

    .hero {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-right {
        height: 350px;
        width: 100%;
        min-height: unset;
    }

    .hero-left { padding: 5rem 1.5rem 3rem; }
    .hero-title { font-size: 3.5rem; }

    .about-strip { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .about-visual { height: 300px; }

    .products { padding: 4rem 1.5rem; }
    .products-grid { grid-template-columns: 1fr; }

    .ingredients { padding: 4rem 1.5rem; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonials { padding: 4rem 1.5rem; }

    .newsletter { padding: 4rem 1.5rem; }
    .newsletter h2 { font-size: 2rem; }

    footer { padding: 3rem 1.5rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .leave-review { padding: 4rem 1.5rem; }
    .leave-review-inner { grid-template-columns: 1fr; gap: 3rem; }
    .leave-review-title { font-size: 2.2rem; }

    /* Product modal — full screen bottom sheet */
    .wkz-product-modal-wrap { padding: 0; align-items: flex-end; }

    .wkz-product-modal-box {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        border-radius: 0;
        animation: wkzModalSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex;
        flex-direction: column;
    }

    @keyframes wkzModalSlideUp {
        from { transform: translateY(100%); opacity: 0; }
        to   { transform: translateY(0);    opacity: 1; }
    }

    .wkz-modal-image-panel { flex: 0 0 55vh; min-height: 0; width: 100%; }

    #wkzProductModalImage {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        position: absolute;
        inset: 0;
        z-index: 2;
        filter: none;
    }

    .wkz-modal-details-panel {
        flex: 1 1 0;
        overflow-y: auto;
        padding: 1.4rem 1.2rem 2rem;
        -webkit-overflow-scrolling: touch;
    }

    .wkz-product-modal-close-btn {
        width: 40px;
        height: 40px;
        top: 0.9rem;
        right: 0.9rem;
        background: rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .wkz-product-modal-close-btn svg { width: 16px; height: 16px; }
    #wkzProductModalTitle { font-size: 1.3rem; margin-bottom: 0.5rem; }
    #wkzProductModalPrice { font-size: 1.5rem; }
    #wkzProductModalDescription { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.9rem; }
    .wkz-modal-eyebrow { font-size: 0.62rem; margin-bottom: 0.4rem; }
    .wkz-modal-divider { margin-bottom: 0.9rem; }
    .wkz-modal-benefits { gap: 0.3rem; margin-bottom: 0.9rem; }
    .wkz-modal-benefit-pill { font-size: 0.6rem; padding: 0.25rem 0.5rem; }
    .wkz-modal-price-row { margin-bottom: 0.9rem; }
    .wkz-modal-actions { margin-bottom: 0.9rem; }
    #wkzProductModalAddBtn { padding: 1rem; font-size: 0.75rem; }
    .wkz-modal-wishlist-btn { width: 50px; height: 50px; }
    .wkz-modal-trust { flex-wrap: wrap; gap: 0.5rem; padding-top: 0.8rem; }
    .wkz-modal-trust-item { font-size: 0.6rem; }
    .wkz-modal-thumbs-bar { padding: 0.4rem 0.8rem 0.6rem; }
    .wkz-modal-thumb { width: 40px; height: 40px; }
}

@media (max-width: 380px) {
    .wkz-modal-image-panel { flex: 0 0 48vh; }
    #wkzProductModalTitle { font-size: 1.15rem; }
}
.hero-title em {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}