/* ============================================
   KAHWATICA - Main Stylesheet
   Modern Australian coffee, Lebanese soul.
   Editorial / contemporary / warm.
   ============================================ */

/* ----- Design Tokens ----- */
:root {
    /* Palette */
    --color-cream: #FAF7F2;
    --color-sand: #C4A882;
    --color-stone: #A8947D;
    --color-sage: #A9B59A;
    --color-caramel: #9B6B3E;
    --color-espresso: #3D2E22;
    --color-charcoal: #2A2420;
    --color-saffron: #C9A63A;
    --color-wheat: #D5C6AB;

    /* Functional */
    --color-bg: #FAF7F2;
    --color-bg-alt: #F5F1EA;
    --color-bg-warm: #EEEAD2;
    --color-text: #3D2E22;
    --color-text-mid: #6B5D52;
    --color-text-light: #9A8E82;
    --color-text-inverse: #FAF7F2;
    --color-border: rgba(61, 46, 34, 0.10);
    --color-border-strong: rgba(61, 46, 34, 0.18);

    /* Type */
    --font-heading: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing scale */
    --s-xs: 0.25rem;
    --s-sm: 0.5rem;
    --s-md: 1rem;
    --s-lg: 1.5rem;
    --s-xl: 2rem;
    --s-2xl: 3rem;
    --s-3xl: 4.5rem;
    --s-4xl: 7rem;
    --s-5xl: 10rem;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 9999px;

    /* Shadows — very subtle */
    --shadow-sm: 0 1px 2px rgba(61, 46, 34, 0.04);
    --shadow-md: 0 4px 16px rgba(61, 46, 34, 0.06);
    --shadow-lg: 0 12px 40px rgba(61, 46, 34, 0.08);

    /* Motion */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 180ms;
    --t-base: 300ms;
    --t-slow: 500ms;

    /* Layout */
    --container: 1260px;
    --container-narrow: 840px;
    --header-h: 72px;
}


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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    padding-top: var(--header-h);
}

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

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

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-out);
}
a:hover { color: var(--color-caramel); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-espresso);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 500; }

p { margin-bottom: var(--s-md); }
p:last-child { margin-bottom: 0; }


/* ----- Layout ----- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s-xl);
}

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

.section { padding: var(--s-2xl) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--warm { background: var(--color-bg-warm); }

.section__header {
    text-align: center;
    margin-bottom: var(--s-xl);
}

.section__header h2 { margin-bottom: var(--s-md); }

.section__header p {
    font-size: 1.05rem;
    color: var(--color-text-mid);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Label / eyebrow */
.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-caramel);
}


/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-sm);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--t-base) var(--ease-out);
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 50%, #A6833F 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(184, 146, 74, 0.2);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #D4B044 0%, #C9A63A 50%, #B8924A 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(184, 146, 74, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--color-espresso);
    border-color: var(--color-border-strong);
}

.btn--secondary:hover {
    background: var(--color-espresso);
    color: var(--color-text-inverse);
    border-color: var(--color-espresso);
    transform: translateY(-2px);
}

.btn--text {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-espresso);
    border-radius: 0;
    position: relative;
}

.btn--text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-espresso);
    transition: transform var(--t-base) var(--ease-out);
    transform-origin: left;
}

.btn--text:hover { color: var(--color-caramel); }
.btn--text:hover::after { background: var(--color-caramel); transform: scaleX(1.1); }

.btn--large { padding: 0.98rem 2.4rem; font-size: 0.78rem; }


/* ============================================
   HEADER — clean, confident, airy
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--t-base) var(--ease-out);
    height: var(--header-h);
    border-bottom: 1px solid var(--color-border);
    overflow: visible;
}

/* On front page only, start transparent */
body.home .site-header:not(.site-header--scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.site-header--scrolled,
body:not(.home) .site-header {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--color-border);
    box-shadow: 0 1px 8px rgba(61, 46, 34, 0.04);
}

/* (dark text is now default; light text only on body.home) */

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

/* Logo — symbol + editorial wordmark */
.site-logo-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--color-espresso);
    transition: color var(--t-base) var(--ease-out), opacity var(--t-fast);
}
/* On home, start light then go dark on scroll */
body.home .site-header:not(.site-header--scrolled) .site-logo-link { color: #FAF7F2; }
.site-logo-link:hover { opacity: 0.8; }

.site-logo-symbol {
    color: var(--color-caramel);
    flex-shrink: 0;
    transition: color var(--t-base) var(--ease-out);
}
body.home .site-header:not(.site-header--scrolled) .site-logo-symbol { color: #C9A63A; }

.site-logo-icon {
    width: 70px;
    height: 70px;
    margin-right: -8px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
    mix-blend-mode: multiply;
    transition: filter var(--t-base) var(--ease-out);
}
body.home .site-header:not(.site-header--scrolled) .site-logo-icon {
    mix-blend-mode: lighten;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 1.665rem;
    font-weight: 500;
    color: inherit;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.custom-logo-link img { max-height: 44px; width: auto; }

/* Desktop Nav */
.site-header__nav { display: none; }

@media (min-width: 768px) {
    .site-header__nav { display: block; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(var(--s-lg), 2.5vw, var(--s-2xl));
}

.nav-menu a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-mid);
    padding: var(--s-xs) 0;
    position: relative;
    transition: color var(--t-base) var(--ease-out);
}
body.home .site-header:not(.site-header--scrolled) .nav-menu a { color: rgba(250, 247, 242, 0.7); }

.nav-menu a:hover { color: var(--color-espresso); }
body.home .site-header:not(.site-header--scrolled) .nav-menu a:hover { color: #FAF7F2; }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--color-caramel);
    transition: width var(--t-base) var(--ease-out);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after { width: 100%; }

/* Submenu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%; left: -1rem;
    background: var(--color-bg);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: var(--s-md) 0;
    min-width: 200px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t-base) var(--ease-out);
    display: flex; flex-direction: column;
}

.nav-menu li { position: relative; }
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-menu .sub-menu a {
    display: block;
    padding: var(--s-sm) var(--s-lg);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.02em;
}
.nav-menu .sub-menu a::after { display: none; }

/* Header Actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--s-lg);
}

.header-cart {
    position: relative;
    color: var(--color-text-mid);
    display: flex; align-items: center;
    transition: color var(--t-base) var(--ease-out);
}
body.home .site-header:not(.site-header--scrolled) .header-cart { color: rgba(250, 247, 242, 0.7); }
.header-cart:hover { color: var(--color-espresso); }
body.home .site-header:not(.site-header--scrolled) .header-cart:hover { color: #FAF7F2; }

.header-cart__count {
    position: absolute;
    top: -5px; right: -7px;
    background: var(--color-caramel);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    padding: var(--s-sm);
    z-index: 1001;
}

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

.hamburger { display: flex; flex-direction: column; gap: 5px; width: 20px; }

.hamburger__line {
    display: block;
    width: 100%; height: 1.5px;
    background: var(--color-espresso);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease-out);
    transform-origin: center;
}
body.home .site-header:not(.site-header--scrolled) .hamburger__line { background: #FAF7F2; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--color-bg);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
}

.mobile-nav--open {
    transform: translateX(0) !important;
    visibility: visible !important;
}

.mobile-nav__inner { padding: var(--s-3xl) var(--s-xl); }

.mobile-nav__menu,
.mobile-nav__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav__menu li { list-style: none; }

.mobile-nav__menu a {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    padding: var(--s-lg) 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-espresso);
    text-decoration: none;
}

.mobile-nav__menu .sub-menu { padding-left: var(--s-lg); }
.mobile-nav__menu .sub-menu a { font-size: 1.1rem; color: var(--color-text-mid); }

.mobile-nav__cart {
    margin-top: var(--s-2xl);
    width: 100%;
    text-align: center;
}


/* ============================================
   HERO — full-width background image
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #1a1410;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 20, 16, 0.82) 0%,
        rgba(26, 20, 16, 0.55) 30%,
        rgba(26, 20, 16, 0.15) 55%,
        transparent 70%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 0 var(--s-2xl) 0 clamp(var(--s-lg), 6vw, 7rem);
}

.hero__label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #C9A63A;
    margin-bottom: var(--s-2xl);
}

.hero__title {
    font-size: clamp(2.4rem, 3.8vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--s-2xl);
    color: #FAF7F2;
    letter-spacing: -0.015em;
}

.hero__subtitle {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(250, 247, 242, 0.7);
    margin-bottom: var(--s-3xl);
    max-width: 380px;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-lg);
    align-items: center;
}

/* Gold CTA button — premium, matches bag gold wave */
.btn--gold {
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 50%, #A6833F 100%);
    color: #fff;
    border-color: transparent;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 16px rgba(184, 146, 74, 0.3);
}
.btn--gold:hover {
    background: linear-gradient(135deg, #D4B044 0%, #C9A63A 50%, #B8924A 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(184, 146, 74, 0.5);
}

/* Outline button — gold outline on dark background */
.btn--secondary-light {
    border-color: rgba(201, 166, 58, 0.5);
    border-width: 1.5px;
    color: #C9A63A;
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.btn--secondary-light:hover {
    background: rgba(201, 166, 58, 0.1);
    border-color: #C9A63A;
    color: #C9A63A;
    transform: translateY(-1px);
}


/* ============================================
   PRODUCT CARDS — minimal, modern
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-lg);
}

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

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--color-bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-base) var(--ease-out);
    border: 1px solid var(--color-border);
}

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

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

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

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

.product-card__badge {
    position: absolute;
    top: var(--s-md); left: var(--s-md);
    background: var(--color-saffron);
    color: var(--color-espresso);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-full);
}

.product-card__content { padding: var(--s-lg); }

.product-card__category {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--s-xs);
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--s-sm);
}

.product-card__title a { color: var(--color-espresso); }
.product-card__title a:hover { color: var(--color-caramel); }

.product-card__price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-mid);
    margin-bottom: var(--s-lg);
}

.product-card__price del {
    color: var(--color-text-light);
    font-weight: 400;
    margin-right: var(--s-sm);
}

.product-card__price ins { text-decoration: none; }

/* Product card info (used in shop/related grids) */
.product-card__info {
    padding: var(--s-lg);
}
.product-card__cat {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--s-xs);
}
.product-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-espresso);
    margin-bottom: var(--s-sm);
}
.product-card__price {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-mid);
    margin-bottom: auto;
    padding-bottom: var(--s-md);
}
.product-card__info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.product-card__info .btn.btn--small,
.product-card__info .btn--gold.btn--small,
.product-card .product-card__info .btn--small {
    display: inline-block;
    padding: var(--s-xs) var(--s-lg);
    font-size: 0.72rem;
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 50%, #A6833F 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: none;
}
.product-card__info .btn.btn--small:hover,
.product-card__info .btn--gold.btn--small:hover,
.product-card .product-card__info .btn--small:hover {
    background: linear-gradient(135deg, #D4B044 0%, #C9A63A 50%, #B8924A 100%) !important;
    border-color: transparent !important;
}

/* ============================================
   VALUES / FEATURES
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-xl);
    text-align: center;
}

.value-item { padding: var(--s-xl) var(--s-md); }

.mt-4xl { margin-top: var(--s-4xl); }

.value-item__icon {
    width: 64px; height: 64px;
    margin: 0 auto var(--s-lg);
    display: flex; align-items: center; justify-content: center;
    background: var(--color-bg-warm);
    border-radius: 50%;
    color: var(--color-caramel);
    color: var(--color-caramel);
}

.value-item__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--s-sm);
}

.value-item__text {
    font-size: 0.88rem;
    color: var(--color-text-mid);
    line-height: 1.7;
}


/* ============================================
   STORY / ABOUT SECTION
   ============================================ */
.story-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .story-section { grid-template-columns: 1fr 1fr; }
}

.story-section__image {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--color-bg-warm);
}

.story-section__image img { width: 100%; height: 100%; object-fit: cover; }

.story-section__content h2 { margin-bottom: var(--s-lg); }

.story-section__content p {
    color: var(--color-text-mid);
    font-size: 1rem;
    margin-bottom: var(--s-lg);
    line-height: 1.8;
}

.story-section__content .btn { margin-top: var(--s-sm); }


/* ============================================
   CATEGORY CARDS — editorial overlays
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-lg);
}

@media (min-width: 600px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }

.category-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--color-bg-warm);
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform var(--t-base) var(--ease-out);
}

.category-card:hover { transform: translateY(-6px); }

.category-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease-out);
}

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

.category-card__overlay {
    position: relative; z-index: 1;
    width: 100%;
    padding: var(--s-xl);
    background: linear-gradient(transparent, rgba(42, 36, 32, 0.75));
    color: white;
}

.category-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: var(--s-xs);
}

.category-card__count { font-size: 0.8rem; opacity: 0.75; }

/* ============================================
   SHOP PAGE
   ============================================ */
/* Compact shop hero — title + filters inline, products above fold */
.shop-hero-compact {
    padding: var(--s-xl) 0 var(--s-md);
}
.shop-hero-compact__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s-xl);
    flex-wrap: wrap;
}
.shop-hero-compact__text h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--color-espresso);
    margin: 0 0 var(--s-xs);
    line-height: 1.15;
}
.shop-hero-compact__sub {
    font-size: 0.88rem;
    color: var(--color-caramel);
    font-weight: 500;
    margin: 0;
}
@media (max-width: 767px) {
    .shop-hero-compact { padding: var(--s-md) 0 var(--s-xs); }
    .shop-hero-compact__top { flex-direction: column; align-items: flex-start; gap: var(--s-sm); }
    .shop-hero-compact__text h1 { font-size: 1.4rem; margin-bottom: 2px; }
    .shop-hero-compact__sub { font-size: 0.72rem; margin-bottom: 0; }
}

.shop-hero { padding-bottom: 0; }
.shop-hero .section__header { margin-bottom: var(--s-xl); }

.shop-filters {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    background: var(--color-bg-warm);
    padding: 4px;
    border-radius: 999px;
}
.shop-filter {
    padding: 8px 20px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--color-text-mid);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}
.shop-filter:hover {
    background: rgba(60, 42, 33, 0.08);
    color: var(--color-espresso);
}
.shop-filter.active {
    background: var(--color-espresso);
    color: var(--color-cream);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.shop-section__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-espresso);
    margin-bottom: var(--s-xs);
}
.shop-section__subtitle {
    color: var(--color-text-light);
    margin-bottom: var(--s-2xl);
    font-size: 1rem;
}

.products-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
    .products-grid--3 { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* btn--gold display helpers */
.btn--gold {
    display: inline-block;
    margin-top: var(--s-sm);
}
.btn--small {
    padding: var(--s-xs) var(--s-lg);
    font-size: 0.78rem;
}

/* ============================================
   MERCHANDISE / ACCESSORIES
   ============================================ */
.merch-grid {
    display: grid;
    gap: var(--s-xl);
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .merch-grid { grid-template-columns: repeat(3, 1fr); } }

.merch-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-espresso);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.merch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.merch-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-cream);
}
.merch-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.merch-card:hover .merch-card__image img {
    transform: scale(1.05);
}

/* Thermos bottle — show full product on desktop, no gaps */
@media (min-width: 768px) {
    .merch-card:nth-child(2) .merch-card__image {
        background: #000;
    }
    .merch-card:nth-child(2) .merch-card__image img {
        object-fit: contain;
        object-position: center;
    }
}

.merch-card__info {
    padding: var(--s-lg) var(--s-xl) var(--s-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}
.merch-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: var(--s-xs);
    color: var(--color-espresso);
}
.merch-card__desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: auto;
    padding-bottom: var(--s-md);
}
.merch-card__price {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-espresso);
}

/* ============================================
   SUBSCRIPTIONS PAGE
   ============================================ */
.sub-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
}

/* Steps */
.sub-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-2xl);
    text-align: center;
}
.sub-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-lg);
}
.sub-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: var(--s-sm);
    color: var(--color-espresso);
}
.sub-step p {
    font-size: 0.9rem;
    color: var(--color-text-mid);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

/* Plans */
.sub-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg);
    align-items: start;
}
.sub-plan {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: var(--s-2xl) var(--s-xl);
    text-align: center;
    transition: all var(--t-base) var(--ease-out);
}
.sub-plan:hover {
    border-color: var(--color-sand);
    box-shadow: 0 8px 32px rgba(61,46,34,0.08);
    transform: translateY(-4px);
}
.sub-plan--featured {
    border-color: #C9A63A;
    box-shadow: 0 8px 40px rgba(201,166,58,0.15);
    transform: scale(1.04);
    z-index: 1;
}
.sub-plan--featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 48px rgba(201,166,58,0.2);
}
.sub-plan__popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: var(--r-full);
    white-space: nowrap;
}
.sub-plan__header {
    margin-bottom: var(--s-lg);
}
.sub-plan__header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-espresso);
    margin-bottom: var(--s-xs);
}
.sub-plan__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C9A63A;
    background: rgba(201,166,58,0.1);
    padding: 4px 12px;
    border-radius: var(--r-full);
}
.sub-plan__price {
    margin-bottom: var(--s-xl);
    padding-bottom: var(--s-xl);
    border-bottom: 1px solid var(--color-border);
}
.sub-plan__from {
    display: block;
    font-size: 0.72rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.sub-plan__amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-espresso);
    line-height: 1;
}
.sub-plan__period {
    font-size: 0.82rem;
    color: var(--color-text-light);
}
.sub-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--s-xl);
    text-align: left;
}
.sub-plan__features li {
    font-size: 0.88rem;
    color: var(--color-text-mid);
    padding: var(--s-sm) 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: var(--s-sm);
}
.sub-plan__features li:last-child { border-bottom: none; }
.sub-plan__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(201,166,58,0.12);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A63A' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.sub-plan__cta {
    width: 100%;
    justify-content: center;
}

/* FAQ */
.sub-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sub-faq__item {
    border-bottom: 1px solid var(--color-border);
}
.sub-faq__item summary {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-espresso);
    padding: var(--s-lg) 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub-faq__item summary::-webkit-details-marker { display: none; }
.sub-faq__item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-light);
    transition: transform var(--t-base);
    flex-shrink: 0;
    margin-left: var(--s-md);
}
.sub-faq__item[open] summary::after {
    content: '−';
    color: var(--color-caramel);
}
.sub-faq__item p {
    font-size: 0.92rem;
    color: var(--color-text-mid);
    line-height: 1.75;
    padding: 0 0 var(--s-lg);
    max-width: 600px;
}

/* Subscriptions Mobile */
@media (max-width: 767px) {
    .sub-steps { grid-template-columns: 1fr; gap: var(--s-xl); }
    .sub-plans { grid-template-columns: 1fr; gap: var(--s-lg); }
    .sub-plan--featured { transform: none; }
    .sub-plan--featured:hover { transform: translateY(-4px); }
    .sub-hero h1 { font-size: 2rem; }
    .sub-hero h1 br { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .sub-steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
    .sub-plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-lg);
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: var(--s-2xl);
    transition: all var(--t-base) var(--ease-out);
}

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

.testimonial-card__stars {
    color: var(--color-saffron);
    font-size: 0.85rem;
    margin-bottom: var(--s-md);
    letter-spacing: 3px;
}

.testimonial-card__text {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-mid);
    margin-bottom: var(--s-lg);
}

.testimonial-card__author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-espresso);
}

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


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background-color: var(--color-espresso);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-text-inverse);
    text-align: center;
    padding: var(--s-5xl) var(--s-xl);
    border-radius: var(--r-xl);
    margin: 0 var(--s-xl);
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.6);
    z-index: 0;
}
.cta-banner > * {
    position: relative;
    z-index: 1;
}

/* When CTA banner is last before footer, remove bottom margin gap */
.section:last-of-type .cta-banner {
    margin-bottom: 0;
}

/* Seamless flow into footer newsletter */
.site-footer {
    margin-top: 0;
}

.cta-banner h2 {
    color: var(--color-text-inverse);
    margin-bottom: var(--s-md);
}

.cta-banner p {
    color: rgba(250, 247, 242, 0.65);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto var(--s-2xl);
}

.cta-banner .btn--primary {
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 50%, #A6833F 100%);
    color: #fff;
    border-color: transparent;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 16px rgba(184, 146, 74, 0.3);
}

.cta-banner .btn--primary:hover {
    background: linear-gradient(135deg, #D4B044 0%, #C9A63A 50%, #B8924A 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(184, 146, 74, 0.5);
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(42, 36, 32, 0.85) 0%,
        rgba(42, 36, 32, 0.5) 40%,
        rgba(42, 36, 32, 0.15) 100%
    );
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    padding-bottom: var(--s-3xl);
    padding-top: var(--s-5xl);
}

.about-hero__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-saffron);
    margin-bottom: var(--s-md);
}

.about-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-cream);
    line-height: 1.2;
    margin-bottom: var(--s-lg);
    max-width: 680px;
}

.about-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(250, 247, 242, 0.8);
    max-width: 480px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .about-hero { min-height: 600px; }
}

@media (max-width: 767px) {
    .about-hero { min-height: 420px; }
    .about-hero__title br { display: none; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4xl);
}

.about-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-block { grid-template-columns: 1fr 1fr; }
    .about-block--reverse .about-block__image { order: 2; }
}

.about-block__image {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-bg-warm);
}

.about-block__image img { width: 100%; height: 100%; object-fit: cover; }
.about-block__content h2 { margin-bottom: var(--s-lg); }
.about-block__content p { color: var(--color-text-mid); font-size: 1rem; line-height: 1.8; }

/* Sourcing Countries */
.sourcing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--s-md);
    margin-top: var(--s-2xl);
}

.sourcing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: var(--s-xl);
    text-align: center;
    transition: all var(--t-base) var(--ease-out);
}

.sourcing-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.sourcing-card__flag { font-size: 1.8rem; margin-bottom: var(--s-sm); }
.sourcing-card__name { font-family: var(--font-heading); font-size: 1.1rem; }
.sourcing-card__note { font-size: 0.8rem; color: var(--color-text-light); }


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: var(--s-4xl) 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3xl);
}

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

.contact-info h1 { margin-bottom: var(--s-lg); }

.contact-info > p {
    color: var(--color-text-mid);
    font-size: 1rem;
    margin-bottom: var(--s-2xl);
    line-height: 1.8;
}

.contact-details { display: flex; flex-direction: column; gap: var(--s-lg); }

.contact-detail { display: flex; gap: var(--s-md); align-items: flex-start; }

.contact-detail__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--color-bg-warm);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-caramel);
}

.contact-detail__text h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail__text p { font-size: 0.88rem; color: var(--color-text-mid); }

.contact-map {
    margin-top: var(--s-2xl);
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--color-bg-warm);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
}


/* ============================================
   FORMS — clean, minimal
   ============================================ */
.form { display: flex; flex-direction: column; gap: var(--s-lg); }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--color-border-strong);
    border-radius: var(--r-sm);
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-caramel);
    box-shadow: 0 0 0 3px rgba(155, 107, 62, 0.08);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); }

.form-row { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-success {
    background: var(--color-sage);
    color: var(--color-espresso);
    padding: var(--s-md) var(--s-lg);
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    font-weight: 500;
}

.form-error {
    background: #C75D4A;
    color: white;
    padding: var(--s-md) var(--s-lg);
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    font-weight: 500;
}


/* ============================================
   WHOLESALE PAGE
   ============================================ */
/* Wholesale Hero */
.wholesale-hero {
    position: relative;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}
.wholesale-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.7) 100%);
    z-index: 1;
}
.wholesale-hero .label { color: var(--color-gold) !important; }
.wholesale-hero h1 { color: #fff; margin-bottom: var(--s-md); font-size: clamp(2rem, 4vw, 3.2rem); }
.wholesale-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 0 var(--s-xl);
    line-height: 1.8;
}

/* Hero Grid — text left, form right */
.wholesale-hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--s-3xl);
    align-items: center;
}
.wholesale-hero__text { text-align: left; }
.wholesale-hero__form {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    color: var(--color-espresso);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.wholesale-hero__form h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--color-espresso);
    text-align: center;
}
.wholesale-hero__form > p {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
}
.wholesale-hero__form .form-group { margin-bottom: 12px; }
.wholesale-hero__form input,
.wholesale-hero__form textarea {
    background: #fff;
    border: none;
    border-bottom: 1.5px solid #ddd;
    border-radius: 0;
    padding: 14px 0 10px;
    width: 100%;
    font-size: 1rem;
    font-family: var(--ff-body);
    color: var(--color-espresso);
    transition: border-color 0.2s ease;
}
.wholesale-hero__form input::placeholder,
.wholesale-hero__form textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}
.wholesale-hero__form input:focus,
.wholesale-hero__form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}
.wholesale-hero__form textarea {
    resize: none;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 4px;
}
.wholesale-hero__form textarea:focus {
    border-color: var(--color-gold);
}
.wholesale-hero__form .btn--gold {
    margin-top: 8px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 14px 24px;
}

/* Wholesale Benefits */
.wholesale-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-lg);
    margin-bottom: 0;
}
.wholesale-benefit {
    text-align: center;
    padding: var(--s-2xl) var(--s-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    transition: all var(--t-base) var(--ease-out);
}
.wholesale-benefit:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.wholesale-benefit__icon {
    width: 48px; height: 48px;
    margin: 0 auto var(--s-md);
    display: flex; align-items: center; justify-content: center;
}
.wholesale-benefit h3 { font-size: 1.1rem; margin-bottom: var(--s-sm); }
.wholesale-benefit p { font-size: 0.88rem; color: var(--color-text-mid); line-height: 1.6; }

/* Wholesale Steps */
.wholesale-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-xl);
    max-width: 800px;
    margin: 0 auto;
}
.wholesale-step {
    text-align: center;
    padding: var(--s-xl);
}
.wholesale-step__num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #3C2A1A;
    color: #C9A84C !important;
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--s-md);
    border: 2px solid #C9A84C;
}
.wholesale-step h3 { font-size: 1.15rem; margin-bottom: var(--s-sm); }
.wholesale-step p { font-size: 0.9rem; color: var(--color-text-mid); line-height: 1.6; }

/* Wholesale Form */
.wholesale-form-section {
    max-width: 680px;
    margin: 0 auto;
}
.wholesale-form__header {
    text-align: center;
    margin-bottom: var(--s-2xl);
}
.wholesale-form__header h2 { margin-bottom: var(--s-sm); }
.wholesale-form__header p { color: var(--color-text-mid); }

/* Tighter wholesale sections */
.page-template-page-wholesale .site-main { margin-top: calc(-1 * var(--header-h)); }
.page-template-page-wholesale .section { padding: var(--s-2xl) 0; }
.page-template-page-wholesale .section--alt { padding: var(--s-2xl) 0; }

@media (max-width: 767px) {
    .wholesale-hero { padding: 100px 0 40px; min-height: auto; }
    .wholesale-hero__grid { grid-template-columns: 1fr; gap: var(--s-xl); }
    .wholesale-hero__text { text-align: center; }
    .wholesale-hero__text p { margin-left: auto; margin-right: auto; }
    .wholesale-hero__form { padding: var(--s-lg); }
    .wholesale-benefits { grid-template-columns: 1fr 1fr; }
    .wholesale-steps { grid-template-columns: 1fr; gap: var(--s-lg); }
}


/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--s-lg);
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    float: none !important;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-base) var(--ease-out);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.woocommerce ul.products li.product a img {
    margin: 0; border-radius: 0;
    aspect-ratio: 1; object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    padding: var(--s-md) var(--s-lg) var(--s-xs);
    color: var(--color-espresso);
}

.woocommerce ul.products li.product .price {
    padding: 0 var(--s-lg);
    color: var(--color-text-mid);
    font-weight: 600;
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.added_to_cart {
    display: block;
    margin: var(--s-md) var(--s-lg) var(--s-lg);
    background: var(--color-espresso);
    color: var(--color-text-inverse);
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    text-align: center;
    transition: all var(--t-base) var(--ease-out);
    border: none;
}

.woocommerce ul.products li.product .button:hover { background: var(--color-charcoal); }

/* Single Product */
.woocommerce div.product { padding: var(--s-3xl) 0; }

.woocommerce div.product div.images { border-radius: var(--r-lg); overflow: hidden; }

.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--color-espresso);
}

.woocommerce div.product p.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-mid);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--color-text-mid);
    font-size: 1rem;
    line-height: 1.8;
}

/* Variations */
.woocommerce div.product form.cart .variations { margin-bottom: var(--s-lg); }
.woocommerce div.product form.cart .variations td { padding: var(--s-sm) 0; }
.woocommerce div.product form.cart .variations label { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }

.woocommerce div.product form.cart .variations select {
    font-family: var(--font-body);
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--color-border-strong);
    border-radius: var(--r-sm);
    background: var(--color-bg);
}

/* Add to cart */
.woocommerce div.product form.cart .button,
.woocommerce .single_add_to_cart_button {
    background: var(--color-espresso) !important;
    color: var(--color-text-inverse) !important;
    border-radius: var(--r-full) !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: none;
    transition: all var(--t-base) var(--ease-out);
}

.woocommerce div.product form.cart .button:hover,
.woocommerce .single_add_to_cart_button:hover {
    background: var(--color-charcoal) !important;
    transform: translateY(-2px);
}

/* Quantity */
.woocommerce .quantity .qty {
    font-family: var(--font-body);
    padding: 0.7rem;
    border: 1.5px solid var(--color-border-strong);
    border-radius: var(--r-sm);
    width: 70px;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: var(--s-3xl) 0 var(--s-lg);
    border-bottom: 1px solid var(--color-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li { background: none; border: none; margin: 0; padding: 0; }

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    padding: var(--s-md) var(--s-lg) var(--s-md) 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-espresso);
    border-bottom: 2px solid var(--color-caramel);
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    margin-bottom: var(--s-xl);
    padding: var(--s-lg) 0 0;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--color-text-light); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--color-espresso); }

/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */
.pdp-breadcrumb {
    padding: var(--s-md) 0;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--color-text-light);
}
.pdp.section { padding-top: var(--s-lg); }
.pdp-breadcrumb a { color: var(--color-text-light); text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--color-espresso); }
.pdp-breadcrumb__sep { margin: 0 0.5em; opacity: 0.4; }

.pdp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4xl);
    align-items: start;
}

/* Gallery */
.pdp__gallery { position: sticky; top: calc(var(--header-h) + var(--s-xl)); }
.pdp__image-main {
    position: relative;
    background: var(--color-bg-alt);
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdp__image-main .product-card__badge {
    position: absolute;
    top: var(--s-lg);
    left: var(--s-lg);
}

/* Info */
.pdp__cat {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: var(--s-sm);
}
.pdp__title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--color-espresso);
    line-height: 1.15;
    margin-bottom: var(--s-md);
}
.pdp__price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: var(--s-xl);
}
.pdp__desc {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-mid);
    margin-bottom: var(--s-xl);
    max-width: 520px;
}

/* Meta (tasting notes, roast, origin) */
.pdp__meta {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--s-lg) 0;
    margin-bottom: var(--s-xl);
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}
.pdp__meta-item { display: flex; justify-content: space-between; align-items: baseline; }
.pdp__meta-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}
.pdp__meta-value {
    font-size: 0.95rem;
    color: var(--color-espresso);
    text-align: right;
}

/* Variant buttons (size selector) */
.pdp__variants { margin-bottom: var(--s-xl); }
.pdp__variants-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--s-sm);
}
.pdp__variant-btns { display: flex; gap: var(--s-sm); flex-wrap: wrap; }
.pdp__variant-btn {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border: 1.5px solid var(--color-border-strong);
    border-radius: var(--r-full);
    background: transparent;
    color: var(--color-espresso);
    cursor: pointer;
    transition: all var(--t-base) var(--ease-out);
}
.pdp__variant-btn:hover {
    border-color: var(--color-espresso);
}
.pdp__variant-btn.active {
    background: var(--color-espresso);
    border-color: var(--color-espresso);
    color: var(--color-text-inverse);
}

/* Quantity + Add to Cart */
.pdp__actions {
    display: flex;
    gap: var(--s-md);
    align-items: center;
    margin-bottom: var(--s-xl);
}
.pdp__qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border-strong);
    border-radius: var(--r-full);
    overflow: hidden;
}
.pdp__qty-btn {
    width: 44px;
    height: 48px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--color-espresso);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
}
.pdp__qty-btn:hover { background: var(--color-bg-alt); }
.pdp__qty-input {
    width: 44px;
    height: 48px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-espresso);
    background: transparent;
    -moz-appearance: textfield;
}
.pdp__qty-input::-webkit-outer-spin-button,
.pdp__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp__add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #C9A63A 0%, #B8924A 50%, #A6833F 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 2px 16px rgba(184, 146, 74, 0.3);
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.9rem 1.8rem;
}
.pdp__add-to-cart:hover {
    background: linear-gradient(135deg, #D4B044 0%, #C9A63A 50%, #B8924A 100%) !important;
    box-shadow: 0 4px 24px rgba(184, 146, 74, 0.5);
    transform: translateY(-1px);
}

/* Trust signals */
.pdp__trust {
    display: flex;
    flex-direction: column;
    gap: var(--s-sm);
    padding-top: var(--s-lg);
    border-top: 1px solid var(--color-border);
}
.pdp__trust-item {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    font-size: 0.82rem;
    color: var(--color-text-light);
}
.pdp__trust-item svg { color: var(--color-sage); flex-shrink: 0; }

/* PDP Mobile */
@media (max-width: 767px) {
    .pdp__grid {
        grid-template-columns: 1fr;
        gap: var(--s-xl);
    }
    .pdp__gallery { position: static; }
    .pdp__image-main {
        border-radius: 0;
        margin: 0 calc(-1 * var(--s-lg));
        width: calc(100% + 2 * var(--s-lg));
        aspect-ratio: 4 / 5;
    }
    .pdp__title { font-size: 1.8rem; margin-bottom: var(--s-xs); }
    .pdp__price { font-size: 1.2rem; margin-bottom: var(--s-md); }
    .pdp__desc { font-size: 0.92rem; line-height: 1.75; margin-bottom: var(--s-lg); }
    .pdp__meta { padding: var(--s-md) 0; margin-bottom: var(--s-lg); gap: var(--s-sm); }
    .pdp__meta-item { flex-direction: column; gap: 2px; }
    .pdp__meta-value { text-align: left; }
    .pdp__variants { margin-bottom: var(--s-lg); }
    .pdp__variant-btns { gap: var(--s-xs); }
    .pdp__variant-btn { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
    .pdp__actions { flex-direction: row; gap: var(--s-sm); }
    .pdp__qty { flex-shrink: 0; }
    .pdp__add-to-cart { width: auto; flex: 1; }
    .pdp__trust { flex-direction: row; flex-wrap: wrap; gap: var(--s-md); }
    .pdp__trust-item { font-size: 0.75rem; }
    .pdp-breadcrumb { padding: var(--s-sm) 0; font-size: 0.72rem; }
    .pdp.section { padding-top: var(--s-sm); padding-bottom: var(--s-xl); }
    .pdp-related h2 { font-size: 1.5rem; }
    .pdp-related .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
}

/* Related Products */
.pdp-related { padding-top: var(--s-3xl); }
.pdp-related h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-espresso);
}

/* Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-top-color: var(--color-sage);
    background: var(--color-bg-alt);
    border-radius: var(--r-sm);
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before { color: var(--color-sage); }
.woocommerce .woocommerce-error { border-top-color: #C75D4A; }

/* Shop page title */
.woocommerce-products-header__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: var(--s-md);
    padding-top: var(--s-2xl);
}

/* Sorting */
.woocommerce .woocommerce-ordering select {
    font-family: var(--font-body);
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--color-border-strong);
    border-radius: var(--r-sm);
}

.woocommerce .woocommerce-result-count { font-size: 0.82rem; color: var(--color-text-light); }

/* Cart */
.woocommerce table.shop_table { border-collapse: collapse; border: none; }
.woocommerce table.shop_table td { border-top: 1px solid var(--color-border); padding: var(--s-lg) var(--s-md); }

.woocommerce table.shop_table th {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Sale badge */
.woocommerce span.onsale {
    background: var(--color-saffron);
    color: var(--color-espresso);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--r-full);
    padding: 5px 12px;
    min-height: auto; min-width: auto;
    line-height: 1;
}


/* ============================================
   FOOTER — refined, editorial
   ============================================ */
.footer-newsletter {
    background: var(--color-espresso);
    color: var(--color-text-inverse);
    padding: var(--s-4xl) 0;
}

.footer-newsletter__inner {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.footer-newsletter__text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-inverse);
    margin-bottom: var(--s-sm);
}

.footer-newsletter__text p {
    color: rgba(250, 247, 242, 0.6);
    margin-bottom: var(--s-xl);
    font-size: 0.95rem;
}

.footer-newsletter__field {
    display: flex;
    gap: var(--s-sm);
    max-width: 420px;
    margin: 0 auto;
}

.footer-newsletter__field input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid rgba(250, 247, 242, 0.2);
    border-radius: var(--r-full);
    background: rgba(250, 247, 242, 0.08);
    color: var(--color-text-inverse);
    outline: none;
    transition: border-color var(--t-fast);
}

.footer-newsletter__field input::placeholder { color: rgba(250, 247, 242, 0.4); }
.footer-newsletter__field input:focus { border-color: var(--color-sand); }

.footer-newsletter__field .btn--primary {
    background: var(--color-sand);
    color: var(--color-espresso);
    border-color: var(--color-sand);
    white-space: nowrap;
}

.footer-newsletter__field .btn--primary:hover {
    background: var(--color-wheat);
    border-color: var(--color-wheat);
}

.footer-newsletter .form-success {
    background: var(--color-sage);
    color: var(--color-espresso);
    margin-top: var(--s-lg);
}

/* Footer Main */
.footer-main {
    background: var(--color-charcoal);
    color: rgba(250, 247, 242, 0.75);
    padding: var(--s-4xl) 0 var(--s-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-2xl);
}

@media (min-width: 600px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-inverse);
    letter-spacing: 0.02em;
    display: inline-block;
    margin-bottom: var(--s-md);
}
.footer-logo:hover { color: var(--color-text-inverse); opacity: 0.8; }

.footer-brand__tagline {
    font-size: 0.88rem;
    color: rgba(250, 247, 242, 0.5);
    margin-bottom: var(--s-lg);
}

.footer-social { display: flex; gap: var(--s-md); }

.footer-social__link {
    color: rgba(250, 247, 242, 0.5);
    transition: color var(--t-fast);
}
.footer-social__link:hover { color: var(--color-sand); }

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.4);
    margin-bottom: var(--s-lg);
}

.footer-links { display: flex; flex-direction: column; gap: var(--s-sm); }

.footer-links a {
    font-size: 0.88rem;
    color: rgba(250, 247, 242, 0.65);
    transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--color-sand); }

/* Footer Bottom */
.footer-bottom {
    background: var(--color-charcoal);
    border-top: 1px solid rgba(250, 247, 242, 0.06);
    padding: var(--s-lg) 0;
}

.footer-bottom__inner {
    display: flex; flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-md);
}

.footer-bottom p { font-size: 0.75rem; color: rgba(250, 247, 242, 0.35); }

.footer-payment {
    display: flex; gap: var(--s-md);
    font-size: 0.7rem;
    color: rgba(250, 247, 242, 0.3);
    font-weight: 500;
    letter-spacing: 0.06em;
}


/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header {
    text-align: center;
    padding: var(--s-4xl) 0 var(--s-2xl);
}

.page-header h1 { margin-bottom: var(--s-md); }

.page-header p {
    font-size: 1.05rem;
    color: var(--color-text-mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content { padding: 0 0 var(--s-5xl); }


/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mt-xl { margin-top: var(--s-xl); }
.mt-2xl { margin-top: var(--s-2xl); }
.mt-3xl { margin-top: var(--s-3xl); }
.mt-4xl { margin-top: var(--s-4xl); }

.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }
.mb-2xl { margin-bottom: var(--s-2xl); }
.mb-3xl { margin-bottom: var(--s-3xl); }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

/* Placeholder images */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 60%, var(--color-wheat) 100%);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-light);
    letter-spacing: 0.04em;
}


/* ============================================
   RESPONSIVE
   ============================================ */
/* CTA section — reduce bottom padding so banner flows into footer */
.section--cta {
    padding-bottom: var(--s-3xl);
}

@media (max-width: 767px) {
    :root { --header-h: 60px; }

    /* Prevent horizontal scroll */
    html, body { overflow-x: hidden; max-width: 100vw; }

    .site-logo-icon { width: 56px; height: 56px; }

    .section { padding: var(--s-2xl) 0; }
    .container { padding: 0 var(--s-lg); }

    .hero {
        min-height: 100svh;
        margin-top: calc(-1 * var(--header-h));
        padding: 0;
        background-position: center 20%;
        background-size: 150% auto;
        align-items: flex-end;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .hero__overlay {
        background: linear-gradient(
            to top,
            rgba(26, 20, 16, 0.96) 0%,
            rgba(26, 20, 16, 0.82) 30%,
            rgba(26, 20, 16, 0.35) 52%,
            rgba(26, 20, 16, 0.10) 68%,
            transparent 82%
        );
    }
    .hero__actions { gap: var(--s-md); }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .cta-banner { margin: 0; border-radius: 0; padding: var(--s-3xl) var(--s-lg); }
    .section--cta { padding-bottom: 0; }

    /* Mobile product grid — 2 columns, compact cards */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--s-sm);
    }
    .product-card {
        border-radius: var(--r-md);
    }
    .product-card__image {
        aspect-ratio: 3 / 4;
    }
    .product-card__info {
        padding: var(--s-sm) var(--s-sm) var(--s-md);
        text-align: left;
    }
    .product-card__cat {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
        margin-bottom: 2px;
    }
    .product-card__name {
        font-size: 0.88rem;
        margin-bottom: 2px;
        line-height: 1.25;
    }
    .product-card__price {
        font-size: 0.78rem;
        margin-bottom: var(--s-xs);
    }
    .product-card__info .btn.btn--small,
    .product-card__info .btn--gold.btn--small,
    .product-card .product-card__info .btn--small {
        padding: 6px 16px !important;
        font-size: 0.58rem !important;
        border-radius: var(--r-full) !important;
        white-space: nowrap !important;
        letter-spacing: 0.06em !important;
    }
    .product-card__badge {
        font-size: 0.55rem;
        padding: 3px 8px;
    }

    /* Merch grid — 2 columns on mobile, same as products */
    .products-grid--3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--s-sm);
    }
    .merch-card {
        flex-direction: column;
    }
    .merch-card__image {
        width: 100%;
        min-height: auto;
        aspect-ratio: 3 / 4;
    }
    .merch-card__info {
        padding: var(--s-sm);
    }
    .merch-card__info h3 {
        font-size: 0.92rem;
        margin-bottom: 4px;
    }
    .merch-card__info p {
        font-size: 0.72rem;
        line-height: 1.4;
        margin-bottom: var(--s-xs);
    }
    .merch-card__price {
        font-size: 0.82rem;
    }

    .footer-newsletter__field { flex-direction: column; }
    .footer-bottom__inner { flex-direction: column; text-align: center; }

    /* Logo text — reduce 25% total on mobile */
    .site-logo-text {
        font-size: 1.25rem;
    }

    /* Mobile menu items — reduce 20% */
    .mobile-nav__menu a {
        font-size: 1.6rem;
        padding: var(--s-md) 0;
    }

    /* Hero label — move to top of hero on mobile */
    .hero__label {
        order: -1;
        position: static;
        margin-bottom: var(--s-sm);
        font-size: 0.55rem;
        background: rgba(26, 20, 16, 0.4);
        padding: 6px 14px;
        border-radius: var(--r-full);
        backdrop-filter: blur(4px);
        display: inline-block;
        align-self: flex-start;
    }

    /* Hero — reorder content so label appears first */
    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: calc(var(--header-h) + 1.5rem);
        padding-bottom: var(--s-xl);
    }

    /* Hero title — tighter on mobile */
    .hero__title {
        font-size: 1.85rem;
        margin-bottom: var(--s-sm);
    }

    /* Hero subtitle — compact */
    .hero__subtitle {
        font-size: 0.82rem;
        margin-bottom: var(--s-md);
        line-height: 1.6;
    }
    .hero__subtitle br { display: none; }

    /* Hero CTAs — reduce size 15%, center text */
    .hero__actions .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.7rem;
        text-align: center;
    }

    /* Shop filters — individual pills, wrap within screen */
    .shop-filters {
        display: flex !important;
        flex-wrap: wrap;
        gap: 8px;
        padding: 4px 0;
        background: transparent;
        grid-template-columns: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .shop-filter {
        padding: 8px 16px;
        font-size: 0.68rem;
        white-space: nowrap;
        border-radius: 999px;
        border: 1.5px solid var(--color-border);
        background: var(--color-bg);
    }
    .shop-filter.active {
        background: var(--color-espresso);
        color: var(--color-cream);
        border-color: var(--color-espresso);
    }

    /* Shop section subtitles — hide on mobile for clean look */
    .shop-section__subtitle { display: none; }

    /* Product cards — equal height, button pinned to bottom */
    .product-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .product-card__content {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: var(--s-sm) var(--s-sm) var(--s-md);
    }
    .product-card__content .btn {
        margin-top: auto;
        padding: 8px 16px;
        font-size: 0.58rem;
        width: 100%;
        text-align: center;
    }
    .product-card__preorder-label {
        font-size: 0.68rem;
    }

    /* Wholesale form — proper sizing on mobile */
    .wholesale-hero__form {
        padding: var(--s-xl) var(--s-lg) !important;
        max-width: 100%;
        margin: 0 auto;
        border-radius: var(--r-lg);
    }
    .wholesale-hero__form h3 { font-size: 1.3rem; margin-bottom: 6px; }
    .wholesale-hero__form > p { font-size: 0.88rem; margin-bottom: var(--s-lg); }
    .wholesale-hero__form input,
    .wholesale-hero__form textarea {
        font-size: 0.95rem;
        padding: 14px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .wholesale-hero__form .btn--gold {
        padding: 14px 28px;
        font-size: 0.88rem;
        width: 100%;
    }
    .wholesale-hero__form .form-group { margin-bottom: 12px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.7s var(--ease-out) forwards; }
.fade-in-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-up-delay-4 { animation-delay: 0.4s; opacity: 0; }


/* ============================================
   POLICY / SHIPPING PAGES
   ============================================ */
.policy-hero {
    padding: var(--s-2xl) 0;
    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + var(--s-2xl));
    text-align: center;
    background: var(--color-bg-warm);
}
.policy-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: var(--s-sm);
}
.policy-hero p {
    max-width: 560px;
    margin: var(--s-md) auto 0;
    color: var(--color-text-mid);
    font-size: 1.05rem;
}

.shipping-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-xl);
    text-align: center;
}
.shipping-highlight {
    padding: var(--s-xl) var(--s-lg);
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--color-border);
}
.shipping-highlight svg { margin-bottom: var(--s-sm); }
.shipping-highlight h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.shipping-highlight p {
    font-size: 0.85rem;
    color: var(--color-text-mid);
    margin: 0;
}

.policy-content {
    max-width: 720px;
    margin: 0 auto;
}
.policy-block {
    margin-bottom: var(--s-3xl);
    padding-bottom: var(--s-3xl);
    border-bottom: 1px solid var(--color-border);
}
.policy-block:last-child { border-bottom: none; }
.policy-block h2 {
    font-size: 1.6rem;
    margin-bottom: var(--s-lg);
    color: var(--color-espresso);
}
.policy-block h3 {
    font-size: 1.05rem;
    margin-top: var(--s-xl);
    margin-bottom: var(--s-xs);
    color: var(--color-espresso);
}
.policy-block p {
    color: var(--color-text-mid);
    line-height: 1.7;
    margin-bottom: var(--s-sm);
}
.policy-block ul, .policy-block ol {
    color: var(--color-text-mid);
    padding-left: var(--s-lg);
    margin-bottom: var(--s-md);
    line-height: 1.8;
}
.policy-block li { margin-bottom: 4px; }
.policy-block a {
    color: var(--color-gold);
    text-decoration: underline;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--s-md) 0 var(--s-lg);
    font-size: 0.9rem;
}
.policy-table th,
.policy-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.policy-table th {
    font-weight: 600;
    color: var(--color-espresso);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.policy-table td { color: var(--color-text-mid); }
.policy-table tbody tr:hover { background: rgba(0,0,0,0.02); }

.policy-block--cta {
    text-align: center;
    padding: var(--s-2xl);
    background: var(--color-espresso);
    border-radius: var(--r-lg);
    border: none;
}
.policy-block--cta h2 { color: #fff; }
.policy-block--cta p { color: rgba(255,255,255,0.7); }

@media (max-width: 767px) {
    .shipping-highlights { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
    .shipping-highlight { padding: var(--s-lg) var(--s-md); }
    .policy-table { font-size: 0.8rem; }
    .policy-table th, .policy-table td { padding: 8px 10px; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header, .mobile-nav, .footer-newsletter, .site-footer { display: none; }
    body { padding-top: 0; color: #000; background: #fff; }
}

/* ============================================
   PRE-ORDER / LAUNCH MODE
   ============================================ */

/* Hero pre-launch message */
.hero__prelaunch {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-saffron);
    letter-spacing: 0.03em;
    margin-bottom: var(--s-lg);
}

/* Product card pre-order label (replaces price) */
.product-card__preorder-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-saffron);
    letter-spacing: 0.02em;
    margin-bottom: var(--s-sm);
}

/* Merch card CTA (replaces price) */
.merch-card__cta {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-saffron);
    letter-spacing: 0.02em;
}

/* Shop page pre-order banner */
.shop-preorder-banner {
    margin-top: var(--s-lg);
    padding: var(--s-md) var(--s-xl);
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--r-sm);
    text-align: center;
}
.shop-preorder-banner p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-caramel);
    white-space: nowrap;
}
@media (max-width: 767px) {
    .shop-preorder-banner p {
        white-space: normal;
        font-size: 0.82rem;
    }
}

/* PDP pre-order badge */
.pdp__preorder-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-saffron);
    color: var(--color-text-inverse);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    margin-bottom: var(--s-md);
}

/* PDP pre-order enquiry form */
.pdp__preorder-form {
    margin-top: var(--s-xl);
    padding: var(--s-xl);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
}

.pdp__form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--s-xs);
}

.pdp__form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-mid);
    margin-bottom: var(--s-lg);
}

.pdp__preorder-form .form-group {
    margin-bottom: var(--s-md);
}

.pdp__preorder-form .form-group:last-of-type {
    margin-bottom: var(--s-lg);
}

.pdp__preorder-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5D52' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.pdp__preorder-form select:focus {
    outline: none;
    border-color: var(--color-saffron);
}

.pdp__preorder-form input[type="number"] {
    width: 100%;
}

/* Subscription coming soon page tweaks */
.sub-hero .label { color: var(--color-saffron); }
