/* ============================================================
   MAIN.CSS â€” Zen Tea Custom WordPress Theme
   All values reference tokens from tokens.css
   No hardcoded hex, px, or rem values in this file.
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}


html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    overflow-x: hidden;
}

/* smoother rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background: var(--color-bg-hero);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: var(--font-weight-semibold);
    z-index: var(--z-modal);
    transition: top var(--transition-fast);
    text-decoration: none;
}

.skip-link:focus {
    top: var(--space-4);
}

/* Screen reader only */
.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;
}

/* Global focus style */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ============================================================
   HERO â€” Video section (100dvh spacer)
   ============================================================ */
.hero {
    position: relative;
    height: 100dvh;
    overflow: hidden;
}

@supports not (height: 100dvh) {
    .hero {
        height: 100vh;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: translateZ(0);
}

@media (min-width: 1025px) {
    .product-modal-image-wrap {
        height: 86vh;
    }

    .hero-video {
        position: fixed;
    }

    header.site-header .navbar {
        justify-content: flex-end;
        width: 100%;
    }

    header.site-header .nav-logo-img {
        height: 5em;
        width: 5em;
    }

    header.site-header .nav-logo {
        left: 0;
        display: flex;
    }
}

.logo-wrap {
    position: absolute;
    top: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-raised);
}

.logo-img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

/* ============================================================
   HERO CONTENT â€” Solid section scrolling over video
   ============================================================ */
.hero-content {
    background: var(--color-bg-hero);
    position: relative;
    z-index: var(--z-raised);
    padding: var(--space-5) 0 var(--space-3);
    text-align: center;
}

/* ============================================================
   NAVBAR â€” Desktop
   ============================================================ */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-padding);
    position: relative;
}

.nav-logo {
    position: absolute;
    left: var(--space-10);
    display: none;
    /* shown on mobile via media query */
}

.nav-logo-img {
    height: 36px;
    width: 36px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--space-10);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-bg-body);
    font-size: var(--font-size-base);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.current-menu-item {
    color: var(--color-primary);
}

/* WP nav menu wrapper */
.site-nav .nav-menu {
    display: flex;
    gap: var(--space-10);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav-menu .zen_get_quote>a {
    background: var(--color-primary);
    color: rgb(3, 26, 8);
    height: 40px;
    padding: 0 1em;
    border-radius: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header p {
    margin: 0;
}

@media (min-width: 1025px) {
    header.site-header {
        z-index: 2000;
        position: sticky;
        top: 0em;
        display: flex;
        justify-content: end;
        padding: 1em;
    }

    .site-header.site-header--sticky .navbar {
        padding: 0.6em 0;
    }

    .site-header.site-header--sticky .site-nav .nav-menu>li>a {
        padding: .2em 0;
    }
}

.site-nav .nav-menu a {
    text-decoration: none;
    color: var(--color-bg-body);
    font-size: var(--font-size-base);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    transition: color var(--transition-fast);
}

.site-nav .nav-menu a:hover {
    color: var(--color-gold);
    opacity: .85;
}

.site-nav .nav-menu .current-menu-item>a {
    color: var(--color-primary);
}

/* ================================
   NAVBAR DROPDOWN (CLEAN BUILD)
================================ */

/* Ensure navbar allows dropdown to overflow */
.site-nav {
    overflow: visible;
}

/* Main menu layout */
.site-nav .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    /* keep your centered layout */
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ztr-social-icons {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-flow: column;
    gap: 1em;
    padding: 1em !important;
    z-index: 2000;
    height: 100vh;
    justify-content: center;
}

.ztr-social-icons__link {
    color: var(--color-primary);
}

.ztr-social-icons__link svg {
    width: 1.7em;
    height: 1.6em;
}

/* Each menu item */
.site-nav .nav-menu li {
    position: relative;
    list-style: none;
}

/* Parent (has dropdown) */
.site-nav .nav-menu li.menu-item-has-children {
    position: relative;
    display: inline-block;
}

/* Top-level links */
.site-nav .nav-menu>li>a {
    text-decoration: none;
    font-size: 15px;
    color: var(--color-primary);
    padding: 2em 0;
    display: inline-block;
}


/* .site-nav .nav-menu li:not(.current-menu-item) > a {
  opacity: .65;
} */
/* Optional arrow indicator */
.site-nav .nav-menu li.menu-item-has-children>a::after {
    content: "â–¾";
    font-size: 12px;
    margin-left: 6px;
}

/* ================================
   DROPDOWN MENU
================================ */

.site-nav .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    /* sits perfectly under parent */
    left: 50%;
    /* center align */
    transform: translateX(-50%) translateY(10px);

    display: flex;
    flex-direction: column;

    min-width: 220px;
    padding: 10px 0;
    margin: 0;

    background: #514243;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;
    z-index: 9999;
}

/* Remove bullets completely */
.site-nav .nav-menu .sub-menu,
.site-nav .nav-menu .sub-menu li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Dropdown items */
.site-nav .nav-menu .sub-menu li {
    width: 100%;
}

/* Dropdown links */
.site-nav .nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #eae0d4;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Hover effect */
.site-nav .nav-menu .sub-menu a:hover {
    background: #eae0d4;
    padding-left: 24px;
    color: #514243;
}

/* Show dropdown on hover */
.site-nav .nav-menu li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ================================
   EXTRA POLISH
================================ */

/* Smooth hover bridge (prevents flicker gap) */
.site-nav .nav-menu li.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

/* ============================================================
   NAV SYSTEM (DESKTOP + MOBILE CLEAN SETUP)
============================================================ */

/* ================================
   DEFAULT (DESKTOP FIRST)
================================ */

.site-nav .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* Hide mobile overlay on desktop */
.menu-overlay {
    display: none;
}


/* ============================================================
   HAMBURGER + OVERLAY â€” hidden on desktop via min-width
   (Never use global display:none before a @media block â€” it wins on all sizes)
   ============================================================ */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    .menu-overlay {
        display: none !important;
    }

    .site-header-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .navbar {
        background: var(--color-bg-hero);
    }

    .nav-logo-img {
        height: 3em;
        width: 3em;
    }

    #main-content {
        overflow: clip;
    }

    /* â”€â”€ Body-level mobile header â€” fixed across ALL sections â”€â”€ */
    .site-header-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        /* below overlay (9999) so the âœ• close button is always tappable */
        background: var(--color-bg-hero) backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 1px 0 rgba(9, 46, 28, 0.10);
    }


    .ztr-social-icons {
        top: 1em;
        height: auto;
        flex-flow: row;
    }

    /* Hide the hero.php desktop navbar on mobile â€” replaced by site-header-mobile */
    .home .site-header {
        display: none;
    }

    /* Push hero content below the fixed mobile header */
    .hero-content {
        padding-top: 64px;
    }

    /* Hide desktop nav links */
    .site-nav .nav-menu {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-left: auto;
        background: none;
        border: none;
        padding: var(--space-2);
        flex-shrink: 0;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text-base);
        border-radius: 2px;
        transition: transform var(--transition-normal), opacity var(--transition-normal);
    }

    /* Full-screen overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background: var(--color-bg-hero);
        display: flex;
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity var(--transition-normal), transform var(--transition-normal);
        z-index: var(--z-modal);
        overflow: hidden;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    /* Overlay header row â€” logo + close button */
    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-6);
        border-bottom: 0.5px solid rgba(63, 56, 56, 0.15);
        flex-shrink: 0;
    }

    .menu-logo {
        background: url('../images/optimised/logo-zen.webp') no-repeat center / contain;
        height: 44px;
        width: 44px;
    }

    .menu-close {
        font-size: 22px;
        color: var(--color-text-base);
        cursor: pointer;
        line-height: 1;
        background: none;
        border: none;
        padding: var(--space-2);
    }

    /* Menu links area â€” scrollable */
    .menu-links {
        display: flex;
        flex-direction: column;
        padding: var(--space-6) var(--space-7);
        overflow-y: auto;
        flex: 1;
    }

    /* Nav items â€” vertical list with dividers */
    .mobile-nav__menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav__menu .sub-menu {
        display: none !important;
    }

    .mobile-nav__menu a {
        font-family: var(--font-body);
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-normal);
        text-decoration: none;
        color: var(--color-text-base);
        padding: var(--space-6) 0 var(--space-4);
        border-bottom: 0.5px solid rgba(63, 56, 56, 0.15);
        display: block;
        transition: color var(--transition-fast);
    }

    .mobile-nav__menu a:hover {
        color: var(--color-primary);
    }

    /* Show logo in fixed navbar */
    .nav-logo {
        display: block;
        left: 1em;
    }

    #main-content .ztr-bottom-left {
        bottom: -12em;
        left: 0;
        max-width: 100%;
        right: 0;
        margin: 0 auto;
        text-align: center;
    }

    .ztr-bottom-left>.ztr-desc {
       font-size: 2.56em !important;
    padding: .6em;
    }



    #main-content .ztr-container.animate-in {
        overflow: initial;
        top: 38%;
    }

}

/* Desktop safety â€” ensure desktop nav shows, mobile elements hidden */
@media (min-width: 769px) {
    .site-nav .nav-menu {
        display: flex !important;
    }
}

/* ============================================================
   HERO INFO â€” Brand name, tagline, subtitle, CTAs
   ============================================================ */
.info {
    padding: var(--space-25) 0 var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.hero-texts {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

/* h1 is visually styled like the original .name + .tag */
.hero-brand-name {
    font-family: var(--font-heading);
    font-size: var(--font-size-hero-name);
    margin: 0;
    font-weight: var(--font-weight-normal);
    color: var(--color-text-muted);
    line-height: var(--line-height-tight);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: var(--font-size-hero);
    margin: 0;
    font-weight: var(--font-weight-normal);
    color: var(--color-text-muted);
    line-height: var(--line-height-tight);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    color: var(--color-primary);
    font-size: 16px;
    padding-top: 10px;
    margin: 0;
    opacity: .6;
}

.info-ctas {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 var(--space-5);
}

.button-primary {
    height: var(--btn-height-xl);
    padding: 0 var(--space-8);
    background-color: var(--color-text-base);
    border: none;
    font-size: var(--font-size-base);
    color: var(--color-bg-hero);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-normal);
}

.button-primary:hover {
    background: var(--color-primary-dark);
}

.button-secondary {
    height: var(--btn-height-xl);
    padding: 0 var(--space-8);
    background: none;
    border: var(--border-width) solid var(--color-text-base);
    font-size: var(--font-size-base);
    color: var(--color-text-base);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-normal), color var(--transition-normal);
}

.button-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    width: 100%;
    overflow: hidden;
    padding: var(--space-12) 0 var(--space-4);
    /* tighter â€” no excessive gap */
}

#marquee-track {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    background: #fff;
    padding: .3em;
    position: absolute;
    bottom: 0;
    left: 0;
}

#marquee-track p {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    color: #514243;
    opacity: 0.76;
    white-space: nowrap;
    margin: 0;
}

.marquee-sep {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.72;
    flex-shrink: 0;
}

.marquee-sep--flip {
    transform: scaleY(-1);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* 	.ztr-product-col .product-floater {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.ztr-container.animate-in {
    position: absolute;
    width: 1600px;
    height: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* ── Reset (scoped) ─────────────────────────────── */
.ztr-root *,
.ztr-root *::before,
.ztr-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Scroll container ───────────────────────────── */
.ztr-root {
    position: relative;
    height: 600vh;
    /* overridden by JS on load/resize */
    background: #000;
}

/* ── Sticky viewport ────────────────────────────── */
.ztr-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* ── Mobile: full-height sticky, 16:9 canvas inside ─ */
@media (max-width: 768px) {
    .ztr-sticky {
        top: 60px;
        /* clear fixed mobile header */
        height: calc(100vh - 60px);
        /* fill viewport — no black gap */
    }
}

/* ── Background ─────────────────────────────────── */
.ztr-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 35% 65%, #1a0c04 0%, #080300 60%, #000 100%);
    transition: background 1s cubic-bezier(.4, 0, .2, 1);
}

/* ════════════════════════════════════════════════
   GIANT TEXT
   ════════════════════════════════════════════════ */
.ztr-giant-wrap {
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 500;
    line-height: .78;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    pointer-events: none;
    margin: 0;
    height: 100%;
    align-items: center;
}

.ztr-giant-word {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    /* Changed from 900 to 400 for Regular style */
    font-weight: 400;
    letter-spacing: -0.01em;
    /* You might want to reduce the negative spacing for thinner fonts */
    line-height: .88;
    color: #fff;
}

/* ── Each letter — default hidden ───────────────── */
.ztr-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) skewY(3deg);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1),
        transform .55s cubic-bezier(.22, 1, .36, 1);
}

/* ── Animate IN ─────────────────────────────────── */
.ztr-letter.show {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

/* ── Animate OUT — letters exit upward ──────────── */
.ztr-letter.hide {
    opacity: 0;
    transform: translateY(-36px) skewY(-2deg);
    transition: opacity .35s cubic-bezier(.4, 0, 1, 1),
        transform .35s cubic-bezier(.4, 0, 1, 1);
}

/* ════════════════════════════════════════════════
   PRODUCT IMAGE
   ════════════════════════════════════════════════ */
.ztr-product-col {
    position: absolute;
    top: 0;
    width: 55%;
    height: 100%;
    transform: translateX(-12%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

/* 
.ztr-product-img {
 width: clamp(275px, 45vw, 586px);
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.75));
  opacity: 0;
  transform: translateY(60px) scale(.96);
  transition: opacity .9s .15s cubic-bezier(.22, 1, .36, 1), transform .9s .15s cubic-bezier(.22, 1, .36, 1);
}
 */
/* animate-in */
.ztr-product-img.show {
    opacity: 1;
    /*     transform: translateY(0) scale(1); */
}

/* animate-out — exit upward + fade */
.ztr-product-img.hide {
    opacity: 0;
    transform: translateY(-40px) scale(1.03);
    transition: opacity .4s cubic-bezier(.4, 0, 1, 1),
        transform .4s cubic-bezier(.4, 0, 1, 1);
}

/* ════════════════════════════════════════════════
   TOP LABEL
   ════════════════════════════════════════════════ */
.ztr-top-label {
    position: absolute;
    top: clamp(28px, 6vh, 70px);
    left: clamp(28px, 6vw, 100px);
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: clamp(11px, 1.8vw, 22px);
    font-weight: 400;
    letter-spacing: .35em;
    text-transform: uppercase;
    z-index: 30;

    /* default — hidden above */
    color: rgba(255, 255, 255, 0);
    transform: translateY(-10px);
    transition: color .6s ease, transform .6s ease;
}

.ztr-top-label.show {
    color: rgba(255, 255, 255, .55);
    transform: translateY(0);
}

.ztr-top-label.hide {
    color: rgba(255, 255, 255, 0);
    transform: translateY(10px);
    transition: color .3s ease, transform .3s ease;
}

/* ════════════════════════════════════════════════
   DESCRIPTION
   ════════════════════════════════════════════════ */
.ztr-bottom-left {
    position: absolute;
    bottom: clamp(70px, 11vh, 130px);
    left: clamp(28px, 6vw, 100px);
    max-width: clamp(200px, 28vw, 420px);
    z-index: 5;
}

.ztr-desc {
    font-family: var(--font-body);
    font-style: normal;
    font-size: clamp(13px, 1.4vw, 16px);
    line-height: 1.78;
    font-weight: 300;

    /* default — hidden below */
    color: rgba(255, 255, 255, 0);
    transform: translateY(14px);
    transition: color .9s .3s ease, transform .9s .3s ease;
}

.ztr-desc.show {
    color: rgba(255, 255, 255, .58);
    transform: translateY(0);
}

.ztr-desc.hide {
    color: rgba(255, 255, 255, 0);
    transform: translateY(-10px);
    transition: color .3s ease, transform .3s ease;
}

/* ════════════════════════════════════════════════
   TAG (bottom-right)
   ════════════════════════════════════════════════ */
.ztr-tag-wrap {
    position: absolute;
    bottom: clamp(70px, 11vh, 130px);
    right: clamp(28px, 6vw, 100px);
    text-align: right;
    z-index: 20;
}

.ztr-tag {
    font-family: var(--font-body);
    font-style: normal;
    font-size: clamp(16px, 2.2vw, 34px);
    font-weight: 400;
    letter-spacing: .04em;

    /* default — hidden right */
    color: rgba(255, 255, 255, 0);
    transform: translateX(20px);
    transition: color .9s .4s ease, transform .9s .4s ease;
}

.ztr-tag.show {
    color: rgba(255, 255, 255, .9);
    transform: translateX(0);
}

.ztr-tag.hide {
    color: rgba(255, 255, 255, 0);
    transform: translateX(-20px);
    transition: color .3s ease, transform .3s ease;
}

/* ════════════════════════════════════════════════
   PROGRESS / DOTS / COUNTER / HINT
   ════════════════════════════════════════════════ */
.ztr-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .08);
    z-index: 40;
}

.ztr-progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, .35);
    width: 0;
    transition: width .1s linear;
}

.ztr-dots {
    position: absolute;
    right: clamp(16px, 2.5vw, 36px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 40;
    opacity: 0
}

.ztr-dots button {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s;
}

.ztr-dots button.active {
    background: rgba(255, 255, 255, .85);
    transform: scale(1.7);
}

.ztr-counter {
    position: absolute;
    bottom: clamp(28px, 4.5vh, 54px);
    left: clamp(28px, 6vw, 100px);
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 11px;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .22);
    z-index: 40;
}

.ztr-scroll-hint {
    position: absolute;
    bottom: clamp(28px, 4.5vh, 54px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: ztrHintFade 2s 2s forwards;
    z-index: 40;
}

.ztr-scroll-hint span {
    font-family: 'Playfair Display', sans-serif;
    font-style: normal;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
}

.ztr-mouse {
    width: 20px;
    height: 30px;
    border: 1.5px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    position: relative;
}

.ztr-mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 7px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .5);
    animation: ztrMouseDot 1.7s 2s infinite;
}

@keyframes ztrHintFade {
    to {
        opacity: 1;
    }
}

@keyframes ztrMouseDot {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateX(-50%) translateY(9px);
        opacity: 0;
    }
}

/* ── Mobile overrides ────────────────────────────── */
/* Content inside the scaled container keeps its original layout.
   Only suppress the tag on very narrow screens to reduce clutter. */
@media (max-width: 480px) {
    .ztr-tag-wrap {
        display: none;
    }
}

/* ============================================================
   ZEN PRODUCT SLIDER
   Fixed 1600x900 canvas. JS scales via transform:scale() to
   fit the viewport. All rem values are exact design coordinates
   (1rem=16px, so 100rem=1600px matches the canvas width).
   16:9 is maintained on ALL screen sizes via aspect-ratio.
   ============================================================ */

/* 16:9 — aspect-ratio alone is correct.
   Never add height:0 alongside it: that sets the containing-block
   height to 0, which makes top:50% on the canvas calculate as 0
   and breaks vertical centring. aspect-ratio defines the height AND
   provides the correct value for child percentage resolution. */
.zen-slider-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #07010f;
}

.slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
}

.slider-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .07), transparent 30%),
        radial-gradient(circle at 18% 85%, rgba(255, 255, 255, .08), transparent 18%);
    opacity: .46;
    pointer-events: none;
}

#slider-bg-1 {
    opacity: 1;
}

#slider-bg-2 {
    opacity: 0;
}

/* Fixed 1600x900 canvas — centred and scaled by JS */
.hero-container {
    position: absolute;
    width: 1600px;
    height: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    z-index: 2;
    overflow: hidden;
}

.text-element,
.product-wrapper {
    opacity: 0;
}

/* ── Stacking order ────────────────────────────────────────
   z-index 1  → giant-text + top-left-text + bottom-right-text
               All text sits on ONE shared layer — no GPU
               compositing collision between them.
   z-index 5  → bottom-left-text (description, behind product)
   z-index 10 → product-wrapper (floats above all text)
   ────────────────────────────────────────────────────────── */

.top-left-text {
    position: absolute;
    z-index: 1;
}

.top-left-text h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    line-height: .92;
    text-transform: uppercase;
    color: #fff;
}

.giant-text {
    position: absolute;
    z-index: 1;
    /* intentional background/watermark layer */
    display: flex;
    justify-content: center;
    width: 1600px;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: .78;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    pointer-events: none;
    margin: 0;
}

.giant-text span {
    display: inline-block;
    opacity: 0;
}

.bottom-left-text {
    position: absolute;
    z-index: 5 !important;
    padding-top: 1.2rem;
    /* pushes description away from content above */
}

.bottom-left-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    line-height: 1.35;
    color: #fff;
}

.bottom-right-text {
    position: absolute;
    z-index: 1;
    /* same layer as giant-text and top-left-text */
    text-align: right;
}

.bottom-right-text h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}

/* Product sits at z-index 10 — below text labels (30), above giant text (1).
   floatZoom is on the wrapper itself so GPU compositing stays in-context. */
.product-wrapper {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    will-change: transform, opacity;
    animation: floatZoom 8s ease-in-out infinite;
}

/* Inner floater is a plain div — no animation, no GPU promotion */
.product-floater {
    width: 100%;
    height: 100%;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 38px 34px rgba(0, 0, 0, .26));
}

/* ── Per-slide positioning — exact original rem values ──── */

[data-slide="blends"] .top-left-text {
    top: 12.75rem;
    left: 7rem;
}

[data-slide="blends"] .top-left-text h2 {
    font-size: 3.1rem;
}

[data-slide="blends"] .giant-text {
    top: 14.82rem;
    font-size: 25.4rem;
}

[data-slide="blends"] .product-wrapper {
 top: 15.46rem;
  left: 25.2rem;
  width: 55.5rem;
}

[data-slide="blends"] .bottom-left-text {
    left: 7rem;
    bottom: 15.05rem;
    width: 38rem;
}

[data-slide="blends"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="blends"] .bottom-right-text {
    right: 7rem;
    bottom: 17.72rem;
}

[data-slide="blends"] .bottom-right-text h3 {
    font-size: 2.35rem;
}


[data-slide="rooibos"] .top-left-text {
    top: 10.72rem;
    left: 8.4rem;
}

[data-slide="rooibos"] .top-left-text h2 {
    font-size: 3.15rem;
}

[data-slide="rooibos"] .giant-text {
    top: 13.5rem;
    font-size: 33.5rem;
}

[data-slide="rooibos"] .product-wrapper {
    top: 4.5rem;
    left: 30rem;
    width: 39rem;
}

[data-slide="rooibos"] .bottom-left-text {
    left: 8.4rem;
    bottom: 8.18rem;
    width: 38rem;
}

[data-slide="rooibos"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="rooibos"] .bottom-right-text {
    right: 8.8rem;
    bottom: 11.7rem;
}

[data-slide="rooibos"] .bottom-right-text h3 {
    font-size: 2.3rem;
}

[data-slide="chamomile"] .top-left-text {
    top: 18.75rem;
    left: 7rem;
}

[data-slide="chamomile"] .top-left-text h2 {
    font-size: 3.1rem;
}

[data-slide="chamomile"] .giant-text {
    top: 22.82rem;
    font-size: 14.4rem;
}

[data-slide="chamomile"] .product-wrapper {
    top: 8.46rem;
    left: 30.2rem;
    width: 41.5rem;
}

[data-slide="chamomile"] .bottom-left-text {
    left: 7rem;
    bottom: 13.05rem;
    width: 38rem;
}

[data-slide="chamomile"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="chamomile"] .bottom-right-text {
    right: 7rem;
    bottom: 17.72rem;
}

[data-slide="chamomile"] .bottom-right-text h3 {
    font-size: 2.35rem;
}

[data-slide="strawberry"] .top-left-text {
    top: 10.72rem;
    left: 8.4rem;
}

[data-slide="strawberry"] .top-left-text h2 {
    font-size: 3.15rem;
}

[data-slide="strawberry"] .giant-text {
    top: 13.5rem;
    font-size: 33.5rem;
}

[data-slide="strawberry"] .product-wrapper {
    top: 4.5rem;
    left: 28rem;
    width: 50rem;
}

[data-slide="strawberry"] .bottom-left-text {
    left: 8.4rem;
    bottom: 8.18rem;
    width: 38rem;
}

[data-slide="strawberry"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="strawberry"] .bottom-right-text {
    right: 8.8rem;
    bottom: 11.7rem;
}

[data-slide="strawberry"] .bottom-right-text h3 {
    font-size: 2.3rem;
}

[data-slide="ginger"] .top-left-text {
    top: 12.75rem;
    left: 7rem;
}

[data-slide="ginger"] .top-left-text h2 {
    font-size: 3.1rem;
}

[data-slide="ginger"] .giant-text {
    top: 14.82rem;
    font-size: 25.4rem;
}

[data-slide="ginger"] .product-wrapper {
    top: 4.46rem;
    left: 40.2rem;
    width: 35.5rem;
}

[data-slide="ginger"] .bottom-left-text {
    left: 7rem;
    bottom: 15.05rem;
    width: 38rem;
}

[data-slide="ginger"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="ginger"] .bottom-right-text {
    right: 7rem;
    bottom: 17.72rem;
}

[data-slide="ginger"] .bottom-right-text h3 {
    font-size: 2.35rem;
}

[data-slide="mint"] .top-left-text {
    top: 10.72rem;
    left: 8.4rem;
}

[data-slide="mint"] .top-left-text h2 {
    font-size: 3.15rem;
}

[data-slide="mint"] .giant-text {
    top: 13.5rem;
    font-size: 33.5rem;
}

[data-slide="mint"] .product-wrapper {
    top: 4.5rem;
    left: 35rem;
    width: 39rem;
}

[data-slide="mint"] .bottom-left-text {
    left: 8.4rem;
    bottom: 8.18rem;
    width: 38rem;
}

[data-slide="mint"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="mint"] .bottom-right-text {
    right: 8.8rem;
    bottom: 11.7rem;
}

[data-slide="mint"] .bottom-right-text h3 {
    font-size: 2.3rem;
}

[data-slide="turkish"] .top-left-text {
    top: 15.75rem;
    left: 7rem;
}

[data-slide="turkish"] .top-left-text h2 {
    font-size: 3.1rem;
}

[data-slide="turkish"] .giant-text {
    top: 18.82rem;
    font-size: 18.4rem;
}

[data-slide="turkish"] .product-wrapper {
    top: 8.46rem;
    left: 30.2rem;
    width: 41.5rem;
}

[data-slide="turkish"] .bottom-left-text {
    left: 7rem;
    bottom: 13.05rem;
    width: 38rem;
}

[data-slide="turkish"] .bottom-left-text p {
    font-size: 1rem;
}

[data-slide="turkish"] .bottom-right-text {
    right: 7rem;
    bottom: 17.72rem;
}

[data-slide="turkish"] .bottom-right-text h3 {
    font-size: 2.35rem;
}

/* ── Controls — positioned on section (outside scaled canvas) */
.slider-controls {
    position: absolute;
    left: 50%;
    bottom: 4.2%;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.7rem;
    transform: translateX(-50%);
}

.slider-arrow {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: .3s ease;
}

.slider-arrow:hover {
    color: #fff;
    transform: scale(1.08);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.slider-dot {
    width: .44rem;
    height: .44rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .46);
    cursor: pointer;
    transition: .3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.45);
}

/* ── Animations ──────────────────────────────────────────── */
/* floatZoom is removed from .animate-in — it is now a permanent
   animation on .product-wrapper itself (set above).             */
.animate-in .top-left-text {
    animation: fadeRise 1s .8s forwards;
}

.animate-in .giant-text span {
    animation: riseUp 1.2s cubic-bezier(.2, .8, .2, 1) forwards;
}

.animate-in .bottom-left-text {
    animation: fadeRise 1s 1s forwards;
}

.animate-in .bottom-right-text {
    animation: fadeRise 1s 1.2s forwards;
}

.animate-in .product-wrapper {
    animation: riseUpProduct 1.5s cubic-bezier(.2, .8, .2, 1) .6s forwards,
        floatZoom 8s ease-in-out 2.1s infinite;
}

.animate-out .top-left-text,
.animate-out .bottom-left-text,
.animate-out .bottom-right-text,
.animate-out .giant-text span {
    opacity: 0;
}

.animate-out .product-wrapper {
    opacity: 0;
    animation: none;
}

/* translateZ(0) in every keyframe keeps elements on GPU layers
   after animation ends — prevents compositing order regressions */
@keyframes riseUp {
    0% {
        transform: translateY(100px) translateZ(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
}

@keyframes fadeRise {
    0% {
        transform: translateY(40px) translateZ(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
}

@keyframes riseUpProduct {
    0% {
        transform: translateY(150px) scale(.85) translateZ(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1) translateZ(0);
        opacity: 1;
    }
}

@keyframes floatZoom {

    0%,
    100% {
        transform: translateY(0) scale(1) translateZ(0);
    }

    50% {
        transform: translateY(-20px) scale(1.04) translateZ(0);
    }
}

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.testimonial-section {
    background: var(--color-bg-pale-green);
    position: relative;
    z-index: var(--z-raised);
    padding: var(--space-10) var(--space-10) var(--space-15, 3.75rem);
    overflow: hidden;
}

.t-deco {
    display: none;
}

.testimonial-section .t-deco--quote {
    display: block;
    position: relative;
    width: 40px;
    max-width: 900px;
    margin: 0 auto 0 calc((100% - 900px) / 2);
    opacity: 0.55;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
}

.testimonial-slider:active {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    width: 300%;
    transition: transform var(--transition-slide);
    will-change: transform;
}

.testimonial-slide {
    width: calc(100% / 3);
    flex-shrink: 0;
}

.quote-mark {
    display: none;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--font-size-2xl);
    color: var(--color-text-quote);
    line-height: 1.5;
    margin: var(--space-5) 0 var(--space-8);
    text-align: center;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    color: rgba(68, 73, 69, 0.70);
    margin: 0;
    text-align: center;
}

.testimonial-author em {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-2);
    max-width: 900px;
    margin: var(--space-7) auto 0;
}

.dot {
    height: 8px;
    width: 8px;
    background: rgba(9, 46, 28, 0.55);
    border-radius: var(--radius-full);
    opacity: 0.7;
    cursor: pointer;
    transition: width var(--transition-slow), opacity var(--transition-normal);
    flex-shrink: 0;
    border: none;
    padding: 0;
}

.dot--active {
    width: 61px;
    opacity: 1;
}

/* ============================================================
   GIFTING SECTION
   ============================================================ */
.gifting-section {
    background: var(--gradient-gifting);
    position: relative;
    z-index: var(--z-raised);
    overflow: hidden;
}

.gifting-hero {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 400px;
}

.gifting-left {
    padding: var(--space-18) var(--space-13) var(--space-13);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gifting-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-light);
    color: var(--color-primary-dark);
    line-height: var(--line-height-tight);
    margin: 0 0 var(--space-4);
}

.gifting-title em {
    font-style: italic;
    font-weight: var(--font-weight-medium);
}

.gifting-body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    line-height: var(--line-height-relaxed);
    max-width: 560px;
    opacity: 0.7;
    margin: 0 0 var(--space-5);
}

.gifting-ctas {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.gifting-btn-primary {
    height: var(--btn-height-md);
    padding: 0 var(--space-7);
    background: var(--color-primary-dark);
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-bg-hero);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background var(--transition-normal);
    font-weight: 200;
    text-align: center;
}


.gifting-btn-secondary {
    height: var(--btn-height-md);
    padding: 0;
    background: none;
    border: var(--border-width) solid var(--color-bg-cream);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-bg-cream);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color var(--transition-normal), color var(--transition-normal);
}

.gifting-btn-secondary:hover {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}

.gifting-price {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: rgba(244, 239, 230, 0.71);
    margin: 0;
}

.gifting-right {
    position: relative;
    overflow: hidden;
}

.gifting-right img {
    position: absolute;
    width: 113.84%;
    height: 130.68%;
    object-fit: cover;
    top: -15.2%;
}

.gifting-hdivider {
    width: 100%;
    height: 1px;
    background: var(--color-divider-sage);
}

/* Features row â€” 4 equal columns with vertical dividers */
.gifting-features {
    display: flex;
    align-items: center;
    padding: 0 var(--space-13);
    min-height: 180px;
}

.gifting-feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-9) var(--space-5);
    gap: var(--space-3);
}

.feature-icon {
    height: 30px;
    width: 30px;
    object-fit: contain;
    opacity: 0.6;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-bg-cream);
    opacity: 0.7;
    margin: 0;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-normal);
    color: var(--color-bg-cream);
    opacity: 0.7;
    margin: 0;
}

.feature-vdiv {
    width: 1px;
    height: 140px;
    background: var(--color-divider-sage);
    flex-shrink: 0;
}

/* ============================================================
   COLLECTION / PRODUCT GRID
   ============================================================ */
.collection-section {
    background: var(--color-primary-pale);
    position: relative;
    z-index: var(--z-raised);
    padding: var(--space-20) var(--container-pad-wide);
}

.collection-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.collection-header {
    margin-bottom: var(--space-10);
}

.collection-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-3);
}

.collection-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary);
    margin: 0 0 var(--space-5);

}

.collection-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-10);
}

.collection-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
    margin: 0;
    opacity: .6;
    flex: 1;
}

.recommendation-link {
    font-family: var(--font-body);
    font-style: italic;
    font-size: var(--font-size-sm);
    color: rgba(0, 0, 0, 0.66);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.recommendation-link:hover {
    color: var(--color-primary);
}

/* Grid: 3 columns, 2 rows */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* ============================================================
   PRODUCT CARD â€” exact port of original static CSS
   ============================================================ */
.product-card {
    position: relative;
    background: var(--color-divider-sage);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    transition: background-color 0.9s ease;
    height: 100%;
    width: 100%;
}

/* Per-blend hover gradients â€” gradients cannot be animated, appear instantly */
.product-card.ar:hover {
    background: linear-gradient(135deg, #B53505, #551902);
}

.product-card.mm:hover {
    background: linear-gradient(90deg, #1C6A43 0%, #145737 35%, #0B422A 70%, #052F1E 100%);
}

.product-card.ss:hover {
    background: linear-gradient(90deg, #C83F5E 0%, #8B1722 100%);
}

.product-card.cc:hover {
    background: linear-gradient(90deg, #816E43 0%, #4C3C1E 100%);
}

.product-card.gc:hover {
    background: linear-gradient(90deg, #F27354 0%, #AA1902 100%);
}

.product-card.tp:hover {
    background: linear-gradient(90deg, #533531 0%, #231816 100%);
}

.product-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    /* width: 82%;
  height: 82%; */
    object-fit: contain;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform-origin: center center;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.8) rotate(-8deg);
}

/* Default state â€” NO transition (instant hide on hover, no ghosting) */
.pc-default {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 64px 0 28px;
    background: linear-gradient(to top, rgb(14, 43, 28) 35%, #5d363600);
    text-align: center;
}

.pc-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
}

.product-card:hover .pc-default {
    opacity: 0;
}

/* Hover layer */
.pc-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px 22px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover .pc-hover {
    opacity: 1;
    pointer-events: auto;
}

.pc-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 13px;
    color: var(--color-primary);
    margin: 0;
    text-align: right;
    align-self: flex-end;
}

.pc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.pc-hname {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0 0 5px;
}

.pc-attrs {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 0.02em;
}

.pc-cta {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 15px;
    color: var(--color-primary);
    white-space: nowrap;
    flex-shrink: 0;
    padding-bottom: 3px;
    text-decoration: none;
    background: none;
    border-width: 0;
}

/* ============================================================
   CUSTOM GIFTING SECTION
   ============================================================ */
.cg-section {
    position: relative;
    z-index: var(--z-raised);
    background: var(--gradient-cg);
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 620px;
    overflow: hidden;
}

.cg-left {
    padding: var(--space-18) var(--space-15, 3.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cg-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--font-size-base);
    color: var(--color-gold);
    margin: 0 0 var(--space-3);
}

.cg-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-6);
    line-height: var(--line-height-snug);
}

.cg-body {
    font-family: var(--font-body);
    font-style: italic;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-primary);
    line-height: var(--line-height-relaxed);
    margin: 0 0 var(--space-9);
    max-width: 480px;
    opacity: .6;
}

.cg-ctas {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-13);
    flex-wrap: wrap;
}

.cg-btn-primary {
    height: var(--btn-height-lg);
    padding: 0 20px;
    justify-content: center;
    background: var(--color-primary-dark);
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: #172d14;
    /* CG button text â€” Strawberry Saga crimson, intentional brand match */
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background var(--transition-normal);
}

.cg-btn-primary:hover {
    background: var(--color-primary);
}

.cg-btn-secondary {
    height: var(--btn-height-lg);
    padding: 0 20px;
    justify-content: center;
    background: none;
    border: var(--border-width) solid var(--color-primary-dark);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color var(--transition-normal);
}

.cg-btn-secondary:hover {
    border-color: var(--color-text-light);
}

.cg-features {
    display: grid;
     grid-template-columns: 1fr 1fr;
    gap: var(--space-7) var(--space-12);
}

.cg-feature {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.cg-num {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-gold);
    margin: 0;
    flex-shrink: 0;
    line-height: var(--line-height-snug);
    opacity: .6;
}

.cg-feat-title {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-light);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-2);
}

.cg-feat-desc {
    font-family: var(--font-body);
    font-size: 0.725rem;
    font-weight: var(--font-weight-light);
    color: var(--color-primary);
    margin: 0;
    line-height: var(--line-height-relaxed);
    opacity: .6;
}

.cg-right {
    position: relative;
    overflow: hidden;
}

.cg-right img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy-section {
    background: var(--color-bg-hero);
    position: relative;
    z-index: var(--z-raised);
    padding: var(--space-15, 3.75rem) var(--container-pad-wide);
}

.philosophy-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-15, 3.75rem);
    align-items: center;
}

.philosophy-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-4);
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-8);
    line-height: var(--line-height-snug);
}

.philosophy-body {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 15px;
    color: var(--color-primary);
    margin: 0 0 var(--space-4);
    line-height: 1.7;
    opacity: .6;
}

.philosophy-enquire {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 15px;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-block;
    margin-top: var(--space-5);
    transition: color var(--transition-fast);
}

.philosophy-enquire:hover {
    color: var(--color-primary);
}

/* Pillar grid */
.pillar-grid {
    background: var(--gradient-pillar);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.pillar {
    padding: var(--space-10) var(--space-9) var(--space-11, 2.75rem);
    position: relative;
}

.pillar:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 180%;
    width: 1px;
    /* background: rgba(167, 214, 191, 0.25); */
    background: var(--color-bg-hero);
}

.pillar-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: var(--color-bg-hero);
    margin: 0 var(--space-9);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary);
    opacity: 0.7;
    margin: 0 0 var(--space-1);
    line-height: 1;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--color-gold);
    opacity: 0.85;
    margin: 0 0 var(--space-4);
}

.pillar-body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-xs);
    color: var(--color-primary);
    opacity: 0.7;
    margin: 0;
    line-height: var(--line-height-normal);
}

/* ============================================================
   EVENT CTA SECTION
   ============================================================ */
.event-section {
    background: var(--color-bg-hero);
    position: relative;
    z-index: var(--z-raised);
    padding: var(--space-25) var(--space-15, 3.75rem);
    text-align: center;
}

.event-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary-dark);
    margin: 0 auto var(--space-6);
    line-height: var(--line-height-snug);
    max-width: 900px;
}

.event-title-gold {
    color: var(--color-gold);
}

.event-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    margin: 0 auto var(--space-10);
    line-height: 1.7;
    max-width: 700px;
}

.event-ctas {
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    flex-wrap: wrap;
}

.event-btn-primary {
    height: var(--btn-height-md);
    justify-content: center;
    padding: 0 20px;
    background: var(--color-primary-dark);
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-bg-hero);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background var(--transition-normal);
}

.event-btn-primary:hover {
    background: var(--color-primary);
}

.event-btn-secondary {
    height: var(--btn-height-md);
    padding: 0 20px;
    justify-content: center;
    background: none;
    border: var(--border-width) solid var(--color-primary-dark);
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-primary-dark);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color var(--transition-normal), color var(--transition-normal);
}

.event-btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
    position: relative;
    background: linear-gradient(100deg, #1F4E3C 0%, #1E4C3B 100%);
    overflow: hidden;
    min-height: 600px;
}

/* â”€â”€ Decorative elements â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fd {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.fd--quote {
    top: 90px;
    left: 70px;
    width: 42px;
    opacity: 0.7;
}

.fd--tr {
    top: -20px;
    left: 42%;
    transform: translateX(-50%);
    width: 260px;
    opacity: 0.68;
}

.fd--bl {
    bottom: -20px;
    left: -20px;
    width: 260px;
    opacity: 0.68;
}

/* â”€â”€ Inner layout â€” text left, image right â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.founder-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

/* â”€â”€ Text side â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.founder-text {
    width: 50%;
    padding: 120px 80px 100px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-heading {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: var(--font-weight-normal);
    line-height: 1.15;
    color: var(--color-primary-dark);
    margin-bottom: 32px;
}

.founder-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--font-weight-light);
    line-height: 1.95;
    color: var(--color-primary);
    margin-bottom: 18px;
    max-width: 560px;
}

.founder-signature {
    margin-top: 42px;
    text-align: right;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--color-primary-dark);
}

.founder-role {
    margin-top: 6px;
    text-align: right;
    font-family: var(--font-body);
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.5px;
    color: var(--color-primary-dark);
}

/* â”€â”€ Image side â€” absolute right half â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.founder-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.founder-image picture,
.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: #101B14;
    position: relative;
    z-index: var(--z-raised);
    padding: var(--space-25) var(--container-pad-wide) 0;
}

.contact-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-15, 3.75rem);
    align-items: start;
    padding-bottom: var(--space-20);
}

.contact-left {
    width: 500px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-6);
    line-height: var(--line-height-snug);
}

.contact-desc {
    font-family: var(--font-body);
    font-style: italic;
    font-size: var(--font-size-lg);
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-10);
    line-height: 1.7;
}

.contact-details {
    font-family: var(--font-body);
    font-style: italic;
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
    padding-left: var(--space-5);
    margin: 0 0 var(--space-10);
    line-height: 2;
}

.contact-deco {
    opacity: 0.86;
    max-width: 320px;
}

.contact-deco img {
    width: 80%;
    display: block;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-right {
    width: 100%;
    max-width: 600px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    padding: var(--space-4) var(--space-5) 0 0;
}

.form-field label {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-gold);
    margin-bottom: var(--space-2);
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-gold);
    border-bottom: var(--border-width) solid var(--color-gold);
    outline: none;
    padding: var(--space-1) 0;
}

.form-field input {
    height: 40px;
}

.form-field textarea {
    height: 150px;
    resize: none;
    line-height: var(--line-height-normal);
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--color-text-base);
}

.form-submit {
    background: var(--color-primary-dark);
    border: none;
    height: var(--btn-height-md);
    width: 240px;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: #101b14;
    cursor: pointer;
    margin-top: var(--space-8);
    align-self: flex-start;
    transition: background var(--transition-normal);
}

.form-submit:hover {
    background: var(--color-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-divider {
    max-width: 1580px;
    margin: 0 auto;
    height: 1px;
    background: var(--color-gold);
}

.footer-nav {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-5) var(--space-10);
    padding: var(--space-7) 0;
}

.footer-nav a,
.footer-nav__list li {
    list-style: none;
}

.footer-nav a,
.footer-nav__list a {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-nav__list a:hover {
    color: var(--color-primary);
}

.footer-copy {
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--font-size-base);
    color: var(--color-gold);
    padding: var(--space-5) 0 var(--space-10);
    margin: 0;
}

/* ============================================================
   SITE HEADER â€” desktop homepage (inside hero-content, relative)
   ============================================================ */
.site-header {
    position: relative;
    z-index: var(--z-nav);
}

/* Interior pages — sticky on desktop; hidden on mobile (site-header-mobile takes over) */
.site-header--sticky {
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    background: var(--color-bg-hero);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 1px 0 rgba(9, 46, 28, 0.10);
}

@media (max-width: 768px) {

    /* Hide the sticky desktop header — site-header-mobile (fixed) replaces it */
    .site-header--sticky {
        display: none;
    }

    /* Policy hero: add fixed-header clearance directly so no black strip shows */
    .policy-hero {
        padding-top: calc(60px + 5rem);
    }
}

/* ============================================================
   MOBILE-ONLY FIXED HEADER â€” body-level, always on top.
   Hidden on desktop via min-width query (NOT a global rule)
   so the mobile @media block's display:block is never overridden.
   ============================================================ */
@media (min-width: 769px) {
    .site-header-mobile {
        display: none;
    }
}

/* ============================================================
   HERO â€” Static image fallback (when video is off)
   ============================================================ */
.hero--static {
    background: url('../images/optimised/slider-1.webp') center center / cover no-repeat;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: rgb(26, 26, 26);
    padding: var(--space-24) var(--container-pad-wide);
}

.faq-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.faq-header {
    margin-bottom: var(--space-12);
}

.faq-label {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 var(--space-3);
}

.faq-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary-dark);
    margin: 0;
    line-height: var(--line-height-snug);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid rgb(56, 56, 56);
}

.faq-item:last-child {
    border-bottom: 1px solid rgb(56, 56, 56);

}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-dark);
    user-select: none;
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: background var(--transition-fast);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-icon {
    background: var(--color-primary);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background: #1a1a1a;
}

.faq-answer {
    padding: 0 0 var(--space-6);
    max-width: 72ch;
}

.faq-answer p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--font-weight-normal);
    color: rgb(197, 160, 89);
    line-height: var(--line-height-relaxed);
    opacity: .7;
}

/* ============================================================
   RESPONSIVE â€” Tablet & Mobile
   All overrides match the original style-mob.css behaviour
   ============================================================ */

/* --- Max 768px (Tablet / Mobile) --- */
@media (max-width: 768px) {
    .hero {
        display: none;
    }

    .logo-wrap {
        display: none;
    }



    /* Hero content */
    .hero-content {
        min-height: unset;
        /* let content dictate height */
        display: flex;
        flex-direction: column;
        position: relative;
        padding-bottom: var(--space-8);
    }

    .info {
        padding: var(--space-8) 0 var(--space-6);
        gap: var(--space-6);
        justify-content: center;
        min-width: 0;
    }

    .info-ctas {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
        width: 100%;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        height: var(--btn-height-md);
    }

    /* Marquee */
    .marquee {
        padding: var(--space-6) 0 0;
        position: static;
    }

    /* flow after buttons, no absolute */
    #marquee-track {
        gap: var(--space-5);
    }

    #marquee-track p {
        font-size: var(--font-size-xs);
    }

    .marquee-sep {
        width: 16px;
        height: 16px;
    }

    /* Testimonial */
    .testimonial-section {
        padding: var(--space-10) var(--space-5) var(--space-13);
    }

    .testimonial-section .t-deco--quote {
        margin: 0;
    }

    .testimonial-dots {
        justify-content: center;
    }

    .dot {
        height: 5px;
        width: 5px;
    }

    .dot--active {
        width: 32px;
    }

    /* Gifting */
    .gifting-hero {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .gifting-right {
        order: -1;
        position: relative;
        height: 58vw;
        min-height: 220px;
        overflow: hidden;
    }

    .gifting-right img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        left: 0;
        top: 0;
    }

    .gifting-left {
        padding: var(--space-9) var(--space-6) var(--space-8);
        gap: var(--space-4);
    }

    .gifting-body {
        margin-bottom: var(--space-5);
    }

    .gifting-ctas {
        flex-direction: column;
        gap: var(--space-3);
        margin-bottom: var(--space-4);
    }

    .gifting-btn-primary,
    .gifting-btn-secondary {
        width: 100%;
        height: var(--btn-height-sm);
        justify-content: center
    }

    /* Gifting features â€” 2Ã—2 grid on mobile */
    .feature-vdiv {
        display: none;
    }

    .gifting-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        min-height: unset;
        position: relative;
    }

    .gifting-features::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 20px;
        bottom: 20px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--color-divider-sage), transparent);
        pointer-events: none;
    }

    .gifting-features::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--color-divider-sage), transparent);
        pointer-events: none;
    }

    .gifting-feature {
        padding: var(--space-8) var(--space-5);
        gap: var(--space-2);
    }

    .gifting-feature:nth-child(odd) {
        background: rgba(255, 255, 255, 0.025);
    }

    .feature-icon {
        height: 26px;
        width: 26px;
        margin-bottom: 2px;
    }

    .feature-title {
        font-size: var(--font-size-base);
    }

    .feature-desc {
        font-size: var(--font-size-xs);
    }

    /* Collection */
    .collection-section {
        padding: var(--space-13) var(--space-5);
    }

    .collection-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .product-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .product-grid::-webkit-scrollbar {
        display: none;
    }

    .product-grid .product-card {
   flex: 0 0 100%;
    width: 100%;
    height: 420px;
    scroll-snap-align: center;
    }

    .product-img-wrap img {
        width: 100%;
        height: 100%;
    }

    .pc-hover {
        padding: var(--space-4);
        justify-content: flex-end;
        gap: var(--space-3);
    }

    .pc-tag {
        position: absolute;
        top: var(--space-4);
        right: var(--space-4);
    }

    .pc-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    /* Custom Gifting */
    .cg-section {
        display: flex;
        flex-direction: column-reverse;
        min-height: unset;
    }

    .cg-right {
        position: relative;
        height: 60vw;
        min-height: 240px;
        overflow: hidden;
    }

    .cg-left {
        padding: var(--space-10) var(--space-6) var(--space-9);
    }

    .cg-ctas {
        flex-direction: column;
        gap: var(--space-3);
        margin-bottom: var(--space-9);
    }

    .cg-btn-primary,
    .cg-btn-secondary {
        width: 100%;
        height: var(--btn-height-sm);
    }

    .cg-features {
        grid-template-columns: 100%;
        gap: var(--space-5) var(--space-6);
    }

    /* Philosophy */
    .philosophy-section {
        padding: var(--space-10) var(--space-5);
        overflow: hidden;
    }

    .philosophy-inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pillar:nth-child(odd)::after {
        display: none;
    }

    .pillar-divider {
        display: none;
    }

    .pillar::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--color-divider-sage-strong), transparent);
    }

    .pillar {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: var(--space-4);
        padding: var(--space-7) var(--space-6) var(--space-7) var(--space-6);
        border-bottom: 1px solid rgba(167, 214, 191, 0.10);
        position: relative;
        overflow: hidden;
    }

    .pillar:last-child {
        border-bottom: none;
    }

    .pillar-number {
        grid-column: 2;
        grid-row: 1 / 3;
        line-height: 0.85;
        opacity: 0.18;
        align-self: center;
        margin: 0;
    }

    .pillar-title {
        grid-column: 1;
        grid-row: 1;
        margin: 0 0 var(--space-2);
        opacity: 1;
    }

    .pillar-body {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
    }

    /* Event */
    .event-section {
        padding: var(--space-15, 3.75rem) var(--space-5);
    }

    .event-ctas {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }

    .event-btn-primary,
    .event-btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    /* Founder */
    /* Founder â€” mobile */
    .founder-body {
        margin-bottom: 10px;
    }

    p,
    .founder-body,
    .gifting-btn-primary,
    .modal-header p,
    .modal-section h4,
    .modal-section p {
        font-size: .96em !important;
    }

    .founder-image {
        display: none;
    }

    .founder-text {
        width: 100%;
        padding: 90px 1em 60px;
    }

    .founder-heading {
        font-size: 36px;
    }

    .fd--quote {
        top: 55px;
        left: 28px;
        width: 32px;
    }

    .fd--tr {
        width: 180px;
        left: 50%;
    }

    .fd--bl {
        width: 180px;
    }

    /* Contact */
    .contact-section {
        padding: var(--space-15, 3.75rem) var(--space-5) 0;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .contact-left {
        width: 100%;
    }

    .contact-right {
        max-width: 100%;
    }

    .form-field {
        padding: var(--space-4) 0 0;
    }

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

    .form-submit {
        width: 100%;
        max-width: 320px;
    }

    /* Footer */
    .footer-nav {
        gap: var(--space-4) var(--space-6);
        padding: var(--space-5) var(--space-4);
    }

    .footer-copy {
        padding: var(--space-4) var(--space-5) var(--space-8);
    }

    /* FAQ */
    .faq-section {
        padding: var(--space-12) var(--space-5);
    }

    .faq-title {
        font-size: var(--font-size-3xl);
    }

    .faq-question {
        font-size: var(--font-size-base);
        padding: var(--space-4) 0;
    }

    /* Policy pages — see dedicated responsive block at bottom of policy section */

}

/* ============================================================
   POLICY PAGES — Privacy Policy & Terms & Conditions
   ============================================================ */

/* ── Hero band ─────────────────────────────────────────────── */
.policy-hero {
    background-color: #EAE0D4;
    background-color: var(--color-bg-hero, #EAE0D4);
    padding: 7rem 2.5rem 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.policy-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.policy-hero-label {
    font-family: 'Playfair Display', serif;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.0625rem;
    font-style: italic;
    color: #514243;
    color: var(--color-text-muted, #514243);
    margin: 0 0 0.75rem;
    letter-spacing: 0.04em;
}

.policy-hero-title {
    font-family: 'Playfair Display', serif;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #092E1C;
    color: var(--color-primary-dark, #092E1C);
    margin: 0;
    line-height: 1.3;
}

/* ── Content area ──────────────────────────────────────────── */
.policy-body {
 background-color: var(--color-bg-hero);
}

.policy-body-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 2.5rem 6rem;
}

/* ── Kill any Elementor overrides inside content ────────────── */
.policy-content .elementor-section,
.policy-content .e-container,
.policy-content .elementor-column,
.policy-content .elementor-widget-wrap {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Headings ──────────────────────────────────────────────── */
.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #092E1C;
    color: var(--color-primary-dark, #092E1C);
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(9, 46, 28, 0.20);
    background: none;
}

.policy-content h3 {
    font-family: 'Playfair Display', serif;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: #0B422A;
    color: var(--color-primary, #0B422A);
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    background: none;
}

.policy-content h2:first-child,
.policy-content h3:first-child {
    margin-top: 0;
}

/* ── Body text ─────────────────────────────────────────────── */
.policy-content p {
    font-family: 'Poppins', sans-serif;
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 300;
    color: #3F3838;
    color: var(--color-text-base, #3F3838);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.policy-content p em {
    font-style: italic;
    color: #514243;
    color: var(--color-text-muted, #514243);
}

.policy-content strong,
.policy-content b {
    font-weight: 500;
    color: #092E1C;
    color: var(--color-primary-dark, #092E1C);
}

/* ── Lists ─────────────────────────────────────────────────── */
.policy-content ul,
.policy-content ol {
    font-family: 'Poppins', sans-serif;
    font-family: var(--font-body, 'Poppins', sans-serif);
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.policy-content li {
    font-size: 1rem;
    font-weight: 300;
    color: #3F3838;
    color: var(--color-text-base, #3F3838);
    line-height: 1.85;
    margin-bottom: 0.5rem;
}

.policy-content li:last-child {
    margin-bottom: 0;
}

/* ── Links ─────────────────────────────────────────────────── */
.policy-content a {
    color: #0B422A;
    color: var(--color-primary, #0B422A);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(11, 66, 42, 0.35);
}

.policy-content a:hover {
    text-decoration-color: #0B422A;
    text-decoration-color: var(--color-primary, #0B422A);
}

/* ── Back link ─────────────────────────────────────────────── */
.policy-back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(9, 46, 28, 0.20);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* padding-top handled by the sticky-nav block above (calc(60px + 5rem)) */
    .policy-hero {
        padding-right: 1.5rem;
        padding-bottom: 5rem;
        padding-left: 1.5rem;
    }

    .policy-body-inner {
        padding: 3rem 1.5rem 4rem;
    }

    .policy-content h2 {
        margin-top: 2.5rem;
    }

    .policy-content h3 {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding-top: calc(60px + 4rem);
        padding-right: 1.25rem;
        padding-bottom: 4rem;
        padding-left: 1.25rem;
    }

    .policy-body-inner {
        padding: 2.5rem 1.25rem 3rem;
    }
}


/* ============================================================
   OUR COLLECTION — SIGNATURE BLENDS PAGE
   page-our-collection.php + template-parts/blends-index.php
   ============================================================ */

/* ── Blends Index ──────────────────────────────────────────── */
.blends-index {
    background: var(--color-bg-cream, #F4EFE6);
    padding: 7rem 0 0;
    overflow: hidden;
}

.blends-intro {
    max-width: 860px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.blends-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: #092E1C;
    margin-bottom: 1.2rem;
}

.blends-intro__title em {
    font-style: italic;
    color: var(--color-gold, #B3882A);
}

.blends-intro__body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    color: #3F3838;
}

/* ── Individual Blend Panels ───────────────────────────────── */
.blend-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) minmax(220px, 1.05fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    min-height: 660px;
    padding: clamp(3rem, 6vw, 6rem);
    overflow: hidden;
    isolation: isolate;
}

.blend-panel--reverse {
    grid-template-columns: minmax(220px, 1.05fr) minmax(220px, 0.95fr);
}

.blend-panel--reverse .blend-copy {
    order: 2;
}

.blend-panel--reverse .blend-art {
    order: 1;
}

.blend-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--blend-gradient);
}

/* ── Blend Copy ────────────────────────────────────────────── */
.blend-copy {
    position: relative;
    z-index: 2;
    color: #F4EFE6;
}

.blend-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.64rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.7);
    margin-bottom: 1rem;
}

.blend-name {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1.05;
    color: #F4EFE6;
    margin-bottom: 1rem;
}

.blend-name em {
    font-style: italic;
}

.blend-story {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.72;
    color: rgba(244, 239, 230, 0.82);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* ── Blend Specs Table ─────────────────────────────────────── */
.blend-specs {
    display: grid;
    border: 1px solid rgba(244, 239, 230, 0.28);
    max-width: 560px;
}

.blend-spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 54px;
    border-bottom: 1px solid rgba(244, 239, 230, 0.22);
}

.blend-spec-row:last-child {
    border-bottom: none;
}

.blend-spec-label,
.blend-spec-value {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
}

.blend-spec-label {
    border-right: 1px solid rgba(244, 239, 230, 0.22);
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.65);
}

.blend-spec-value {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(253, 250, 246, 0.92);
    font-weight: 300;
}

/* ── Blend Art ─────────────────────────────────────────────── */
.blend-art {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blend-art::before {
    content: "";
    position: absolute;
    width: min(34vw, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 250, 246, 0.16), transparent 68%);
    filter: blur(4px);
}

.blend-art img {
    position: relative;
    z-index: 2;
    width: min(38vw, 580px);
    max-height: 540px;
    object-fit: contain;
    filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.35));
    transform: rotate(var(--blend-tilt, 0deg));
    transition: transform 0.5s ease;
}

.blend-panel:hover .blend-art img {
    transform: rotate(var(--blend-tilt, 0deg)) translateY(-8px) scale(1.02);
}

.blend-ambient {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 185, 154, 0.34), transparent 70%);
    filter: blur(12px);
    opacity: 0.7;
}

.blend-ambient--one {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 12%;
}

.blend-ambient--two {
    width: 170px;
    height: 170px;
    bottom: 9%;
    left: 8%;
    opacity: 0.42;
}

/* ── Scroll-in Animation ───────────────────────────────────── */
.blend-anim {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.blend-anim--delay {
    transition-delay: 0.12s;
}

.blend-anim.blend-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .blend-art {
        min-height: 320px;
    }

    .blend-art img {
        width: min(42vw, 460px);
    }
}

@media (max-width: 768px) {
    .blends-index {
        padding-top: calc(60px + 4rem);
    }

    .blend-panel,
    .blend-panel--reverse {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3.5rem 1.5rem;
    }

    .blend-panel--reverse .blend-copy,
    .blend-panel--reverse .blend-art {
        order: initial;
    }

    .blend-art {
        min-height: 320px;
    }

    .blend-art img {
        width: min(72vw, 500px);
    }
}

@media (max-width: 480px) {
    .blends-index {
        padding-top: calc(60px + 3rem);
    }

    .blends-intro {
        margin-bottom: 2.5rem;
    }

    .blend-panel,
    .blend-panel--reverse {
        padding: 3rem 1.25rem;
    }

    .blend-art {
        min-height: 260px;
    }

    .blend-spec-row {
        grid-template-columns: 1fr;
    }

    .blend-spec-label {
        border-right: none;
        border-bottom: 1px solid rgba(244, 239, 230, 0.16);
        padding-bottom: 0.3rem;
    }

    .blend-spec-value {
        padding-top: 0.3rem;
    }
}


/* ============================================================
   REDUCED MOTION — disable all animations for users who prefer it
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    /* AOS */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Blend panel scroll animations */
    .blend-anim {
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* Product card hover */
    .product-card,
    .blend-art img {
        transition: none !important;
    }

    /* Hero video — pause if motion sensitive */
    .hero-video {
        animation-play-state: paused;
    }
}


.product-img-wrap {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.product-img.hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.8) rotate(-8deg);
    filter: brightness(.4) contrast(1);
}

.product-card:hover .product-img.hover-img {
    opacity: 1;
    transition: opacity 0.7s ease, transform 0.8s ease;
}

.product-card:hover .product-img.default-img {
    opacity: 0;
    transform: scale(0.97);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    overflow: scroll;
}

.product-modal.active {
    display: block;
}

.product-modal-overlay {
   position: fixed;
  inset: 0;
    top: 0px;
    left: 0px;
  background: rgba(3, 26, 8, 0.71);
  backdrop-filter: blur(8px);
  overflow: scroll;
  top: 0;
  left: 0;
}

.product-modal-content {
    position: relative;
    width: min(85%, 92%);
    background: var(--color-bg-hero);
    border-radius: 24px;
    overflow: hidden;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: .7fr 1fr;
    align-items: center;
}

/* .product-modal-image-wrap {
    background: #181818;
    padding: 50px;
} */

.product-modal-image {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1.8) rotate(-8deg);
    z-index: -1;
    position: relative;
    filter: brightness(.6) contrast(1);
}

.product-modal-info {
    padding: 60px;
    color: var(--color-primary-dark);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-flow: column;
    gap: 1em;
}

.modal-tag {
    text-transform: uppercase;
    margin-bottom: 12px;
    font-style: italic;
    color: var(--color-primary-dark);
}

.modal-title {
    font-size: 36px;
    margin: 0 0 20px;
    font-family: 'Playfair Display', serif;
    color: var(--color-primary-dark);
}

/* .modal-header p {
   font-weight: bold;
} */

.modal-attrs {
    /* font-size: 18px; */
    opacity: .85;
    margin-bottom: 0px;
    color: var(--color-primary-dark);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.modal-section h4,
.modal-section p {
    font-family: var(--font-body);
    font-size: 1em;
    display: contents;
}

.modal-section h4 {
    font-family: 'Playfair Display', serif;

}

.modal-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--color-divider-sage-strong);
    font-size: 28px;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

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

    .product-modal-info {
        padding: 12px;
        margin-top: -12em;
    }

    .product-modal-content {
        width: 98%;
    transform: translateY(-10%);
    top: 23%;
    }

    .product-modal {
        overflow: scroll;
    }

    .product-modal-image {
        transform: scale(1.2) rotate(-8deg);
    }

    .modal-title {
        font-size: 28px;
    }
	
	.aboutZen-container h2 {
		font-size: large;
		font-weight: 400;
	}
}


@media all and (min-width:900px)and (max-width: 1199px) {
    .product-grid .product-card {
        flex: 0 0 70vw;
        width: 100%;
        height: 500px;
        scroll-snap-align: center;
    }
}



.aboutZen {
    position: relative;
    background: #102418;
    overflow: hidden;
}

/* Desktop horizontal track */
.aboutZen-track {
    display: flex;
    width: max-content;
}

.aboutZen-container {
    width: 100vw;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;
    padding: 2vw 4vw;

    box-sizing: border-box;
}

/* Content */
.aboutZen-content {
    width: 50%;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
}

.aboutZen-count {
display: inline-block;
  font-size: 2em;
  letter-spacing: 4px;
  opacity: .5;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.aboutZen-content h2 {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: normal;
    line-height: 1.05;
    margin-bottom: 30px;
	color: var(--color-primary-dark);
    font-family: 'Playfair Display', serif;
}

.aboutZen-content p {
line-height: 1.8;
  opacity: .8;
  color: var(--color-primary);
  font-family: var(--font-body);
}

/* Image */
.aboutZen-image {
    width: 45%;
}

.aboutZen-image img {
    width: 100%;
    display: block;

    border-radius: 24px;
    object-fit: cover;
}

.aboutZen-content h6 {
  font-size: 1.4em;
  margin: 0;
  color: var(--color-primary-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

/* ----------------------- */
/* MOBILE */
/* ----------------------- */

@media (max-width:768px) {

    .aboutZen-track {
        display: block;
        width: 100%;
    }

    .aboutZen-container {
        width: 100%;
        min-height: auto;

        flex-direction: column;
        gap: 40px;

        padding: 90px 24px;
    }

    .aboutZen-content,
    .aboutZen-image {
        width: 100%;
    }

    .aboutZen-content h2 {
        font-size: 34px;
    }

    .aboutZen-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .aboutZen-image img {
        border-radius: 18px;
    }
}


.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.contact-popup {
    position: relative;
  background: var(--color-primary);
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popupFade 0.3s ease;
}

.contact-success-message {
  font-size: 16px;
  color: var(--color-primary-pale);
  font-weight: 500;
  font-family: var(--font-body);
}
.popup-close {
   position: absolute;
  top: 3px;
  right: 6px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--color-gold);
}

.popup-close:hover {
    color: #000;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}