/*
Theme Name: Tennessee Bob's Hot Sauce
Theme URI: https://github.com/getthedoit/tnbobprivatelabel
Author: Tennessee Bob's
Description: Custom theme for Tennessee Bob's Private Label Hot Sauce — bold Southern custom product experience.
Version: 2.0.0
Text Domain: tennessee-bobs
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --red:          #e8272a;
    --red-dark:     #c01f22;
    --red-light:    #fdecea;
    --orange:       #E67E22;
    --orange-dark:  #d35400;
    --yellow:       #f5a623;
    --black:        #1A1A1A;
    --gray-900:     #222222;
    --gray-700:     #555555;
    --gray-500:     #888888;
    --gray-400:     #aaaaaa;
    --gray-300:     #cccccc;
    --gray-200:     #e8e8e8;
    --gray-100:     #f2f2f2;
    --cream:        #FAF4E8;
    --white:        #ffffff;
    --green:        #27AE60;
    --warn-bg:      #fffbf0;
    --warn-border:  #f0a500;
    --warn-text:    #996600;

    --font-heading: 'Oswald', 'Arial Black', sans-serif;
    --font-body:    'Open Sans', Arial, sans-serif;

    --max-width:    1200px;
    --radius-sm:    4px;
    --radius:       8px;
    --radius-lg:    12px;
    --shadow-sm:    0 1px 4px rgba(0,0,0,0.10);
    --shadow:       0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.13);
    --transition:   0.18s ease;

    --gray-50:      #f8f8f8;
    --gray-600:     #6b6b6b;

    /* Text on dark backgrounds — consolidated opacity tiers */
    --text-on-dark:          rgba(255,255,255,0.95);
    --text-on-dark-secondary: rgba(255,255,255,0.78);
    --text-on-dark-tertiary:  rgba(255,255,255,0.58);

    /* Speed-optimized transitions */
    --ease-out:     cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.15s;
}

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

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

body {
    font-family: var(--font-body);
    background: #f5f0eb;
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

/* Global keyboard focus indicator */
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

ul, ol { list-style: none; }

button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* Brand accent line at page top */
body::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--orange), var(--red));
    position: sticky;
    top: 0;
    z-index: 101;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.btn:active:not(:disabled) { transform: scale(0.97); transition-duration: 0.06s; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; box-shadow: 0 4px 14px rgba(232,39,42,0.35); transform: translateY(-1px); }

.btn--outline { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--gray-500); background: var(--gray-100); color: var(--black); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }


.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 68px;
}
.site-logo a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}
.site-logo a:hover { color: var(--red); }
.site-logo img { height: 48px; width: auto; }

.site-nav { display: none; }
.site-nav ul { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}
.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 1px;
}
.site-nav a:hover { color: #fff; text-decoration: none; }
.site-nav a:hover::after { width: 100%; left: 0; }
.site-nav .current-menu-item > a { color: #fff; }
.site-nav .current-menu-item > a::after { width: 100%; left: 0; background: var(--orange); }

/* Fix: nav button hover must override .site-nav a:hover */
.site-nav a.btn { padding-bottom: 0; }
.site-nav a.btn::after { display: none; }
.site-nav a.btn:hover { color: #fff; }
.site-nav .btn--primary { position: relative; box-shadow: 0 2px 8px rgba(232,39,42,0.3); }
.site-nav .btn--primary:hover { box-shadow: 0 4px 16px rgba(232,39,42,0.45); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity var(--transition);
}
.nav-toggle:hover { opacity: 0.8; }
.nav-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 4px; }
.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Header Account Button */
.header-account { display: flex; align-items: center; margin-right: 0.75rem; }

.header-account__signin {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    transition: color var(--transition), border-color var(--transition);
}
.header-account__signin:hover {
    color: #fff;
    border-color: var(--red);
    text-decoration: none;
}
.header-account__signin svg { flex-shrink: 0; }

.header-account__user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.header-account__user:hover { text-decoration: none; }

.header-account__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}
.header-account__name {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.header-account__user:hover .header-account__name { color: #fff; }

/* Hide account text on very small screens, show icon/avatar only */
@media (max-width: 400px) {
    .header-account__name { display: none; }
    .header-account__signin span { display: none; }
}

.mobile-menu {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:hover { color: var(--red); text-decoration: none; }
.mobile-menu .btn { margin-top: 1.5rem; width: 100%; }

.mobile-menu.is-open li {
    animation: menu-slide-in 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-12px);
}
.mobile-menu.is-open li:nth-child(1) { animation-delay: 0.03s; }
.mobile-menu.is-open li:nth-child(2) { animation-delay: 0.06s; }
.mobile-menu.is-open li:nth-child(3) { animation-delay: 0.09s; }
.mobile-menu.is-open li:nth-child(4) { animation-delay: 0.12s; }
.mobile-menu.is-open li:nth-child(5) { animation-delay: 0.15s; }
.mobile-menu.is-open li:nth-child(6) { animation-delay: 0.18s; }
@keyframes menu-slide-in {
    to { opacity: 1; transform: translateX(0); }
}

/* Light focus ring on dark backgrounds */
.site-header :focus-visible,
.mobile-menu :focus-visible,
.site-footer :focus-visible,
.perfect-for :focus-visible,
.discount-banner :focus-visible,
.cta-section :focus-visible { outline-color: #fff; }

/* ============================================================
   HERO — real photo background, text left / bottles right
   ============================================================ */
.hero {
    background-color: #140600;
    background-image: url('assets/images/hero-bottles.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

/* Full-bleed dark gradient — dense on left (text), fades right (reveals photo) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(232,39,42,0.12) 0%, transparent 50%),
        linear-gradient(
            90deg,
            rgba(10, 3, 0, 0.96) 0%,
            rgba(10, 3, 0, 0.88) 30%,
            rgba(10, 3, 0, 0.60) 52%,
            rgba(10, 3, 0, 0.18) 70%,
            transparent 100%
        );
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--yellow) 0%, var(--orange) 30%, var(--red) 60%, var(--red-dark) 100%);
    z-index: 2;
}

.hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero__text {
    max-width: 560px;
}

/* The right image col is hidden on mobile — the BG photo handles it */
.hero__photo {
    display: none;
}

.hero__headline {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.hero__headline .line-white {
    display: block;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.hero__headline .line-red {
    display: block;
    color: var(--red);
    font-size: clamp(2.6rem, 6vw, 5rem);
    text-shadow: 0 2px 20px rgba(232,39,42,0.3);
}

.hero__headline .line-white,
.hero__headline .line-red {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-line-in 0.6s var(--ease-out) both;
}
.hero__headline span:nth-child(1) { animation-delay: 0s; }
.hero__headline span:nth-child(2) { animation-delay: 0.1s; }
.hero__headline span:nth-child(3) { animation-delay: 0.2s; }
@keyframes hero-line-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__underline {
    width: 96px;
    height: 6px;
    background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
    margin: 0.8rem 0 1.2rem;
    border-radius: 3px;
    transform-origin: left;
    animation: underline-spread 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes underline-spread {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

.hero__sub {
    font-size: 1rem;
    color: var(--text-on-dark-secondary);
    line-height: 1.55;
    max-width: 440px;
    margin-bottom: 1.75rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.hero__badge::before {
    content: '✓';
    color: var(--orange);
    font-size: 0.7rem;
}

/* ── Desktop: show right photo column + tighten gradient ── */
@media (min-width: 900px) {
    .hero {
        /* On desktop the gradient only needs to cover the left half;
           the right half is purely the background photo */
        background-position: center right;
        min-height: 520px;
    }

    .hero__layout {
        grid-template-columns: 55% 45%;
        gap: 3rem;
        align-items: center;
    }

    /* Show the actual <img> on desktop — it sits on top of the bg photo
       and is higher quality / better positioned than the bg alone */
    .hero__photo {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .hero__photo img {
        width: 100%;
        max-width: 620px;
        height: auto;
        display: block;
        /* Fade left edge into the gradient seamlessly */
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.5) 18%,
            black 38%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.5) 18%,
            black 38%
        );
        /* Extend slightly beyond container on right */
        margin-right: -1.5rem;
    }

    /* Tighten left gradient on desktop since image shows on right */
    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(10, 3, 0, 0.97) 0%,
            rgba(10, 3, 0, 0.90) 28%,
            rgba(10, 3, 0, 0.55) 46%,
            rgba(10, 3, 0, 0.10) 60%,
            transparent 72%
        );
    }
}

/* ── Large screens: max out the headline ── */
@media (min-width: 1200px) {
    .hero { min-height: 560px; }
    .hero__layout { padding: 5rem 1.5rem; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 5rem 0;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    border-radius: 2px;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-700); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.step-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.step-card__number {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232,39,42,0.35);
}
.step-card__content h3 { margin-bottom: 0.4rem; }
.step-card__content p { color: var(--gray-700); font-size: 0.9rem; }

.step-card {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 3px solid transparent;
    transition: background var(--transition), border-left-color var(--transition);
}
.step-card:hover {
    background: rgba(232,39,42,0.03);
    border-left-color: var(--red);
}
.step-card:hover .step-card__number {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(232,39,42,0.4);
}
.step-card__number {
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

/* ============================================================
   PERFECT FOR
   ============================================================ */
/* ── Modern "Who It's For" ── */
.perfect-for {
    padding: 6rem 0;
    position: relative;
    background: var(--black);
    overflow: hidden;
    isolation: isolate;
}
/* Subtle radial glow behind cards */
.perfect-for::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 25% 60%, rgba(232,39,42,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 75% 40%, rgba(230,126,34,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.perfect-for .section-header { color: #fff; }
.perfect-for .section-header h2 { color: #fff; }
.perfect-for .section-header p { color: var(--text-on-dark-secondary); max-width: 520px; }
.perfect-for .section-eyebrow { color: var(--orange); }

.perfect-for__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pf-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}
.pf-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Icon container */
.pf-card__icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232,39,42,0.15) 0%, rgba(230,126,34,0.10) 100%);
    border: 1px solid rgba(232,39,42,0.18);
    transition: background 0.25s ease, transform 0.25s ease;
}
.pf-card:hover .pf-card__icon-wrap {
    background: linear-gradient(135deg, rgba(232,39,42,0.25) 0%, rgba(230,126,34,0.18) 100%);
    transform: scale(1.06);
}

.pf-card__svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    transition: color 0.25s ease;
}
.pf-card:hover .pf-card__svg { color: var(--yellow); }

/* Legacy emoji icon — hide if svg present */
.pf-card__icon { display: none; }

.pf-card__text { flex: 1; min-width: 0; }

.pf-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.pf-card p {
    color: var(--text-on-dark-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Soft gradient divider into next section */
.perfect-for::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--black));
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   SAUCE SHOWCASE
   ============================================================ */
.sauce-showcase {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.sauce-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.sauce-showcase__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sauce-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Bottle visual */
.sc-bottle {
    width: 72px;
    height: 110px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.sc-bottle__svg {
    width: 40px;
    height: 80px;
}

/* Info */
.sc-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.sc-aka {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
}

.sc-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 0;
}

.sc-heat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
}
.sc-dots {
    display: flex;
    gap: 3px;
}
.sc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background 0.2s ease;
}
.sc-dot.is-on { background: var(--orange); }
.sc-heat-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 600;
}

.sc-size {
    font-size: 0.72rem;
    color: var(--gray-400);
    margin-top: 0.15rem;
}

.sauce-showcase__cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .sauce-showcase__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .sauce-showcase__grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
    .sauce-showcase__card { padding: 1.5rem 0.75rem 1.25rem; }
    .sc-name { font-size: 0.88rem; }
}

/* ============================================================
   SOCIAL PROOF STATS
   ============================================================ */
.social-proof {
    padding: 3rem 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.social-proof__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.sp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
}
.sp-stat__num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.sp-stat__label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}
.sp-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-300);
}
@media (max-width: 639px) {
    .social-proof__inner { gap: 1.25rem; }
    .sp-divider { display: none; }
    .sp-stat__num { font-size: 1.6rem; }
    .social-proof__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* ============================================================
   DISCOUNT BANNER
   ============================================================ */
.discount-banner { background: var(--black); color: #fff; padding: 5rem 0; }
.discount-banner__header { text-align: center; margin-bottom: 2.5rem; }
.discount-banner__header h2 { color: #fff; margin-bottom: 0.75rem; }
.discount-banner__header p { color: rgba(255,255,255,0.65); }

.discount-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.discount-tier {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.discount-tier:hover { background: rgba(255,255,255,0.12); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 0 20px rgba(230,126,34,0.12); }
.discount-tier__pct { font-family: var(--font-heading); font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: 0.25rem; background: linear-gradient(135deg, var(--yellow), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.discount-tier__label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-on-dark-tertiary); }
.discount-tier__qty { font-size: 0.82rem; color: var(--text-on-dark-tertiary); margin-top: 0.25rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
    background: var(--red);
    background-image: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: #fff; font-size: 1.05rem; max-width: 480px; margin: 0 auto 2rem; }

.cta-section .btn--ghost {
    background: #fff;
    color: var(--red-dark);
    border-color: #fff;
    font-weight: 800;
}
.cta-section .btn--ghost:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--red-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #141414; color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; position: relative; }
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: var(--orange); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col h4::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    margin-top: 0.5rem;
    border-radius: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--text-on-dark-tertiary); font-size: 0.88rem; transition: color var(--transition), padding-left var(--transition); }
.footer-col a:hover { color: #fff; text-decoration: none; padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    font-size: 0.82rem;
}

/* ============================================================
   CONFIGURATOR PAGE — overall layout
   ============================================================ */
.configurator-page {
    background: var(--gray-100);
    min-height: 70vh;
    padding: 0 0 5rem;
}

/* ============================================================
   WIZARD PROGRESS INDICATOR
   ============================================================ */
.wizard-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 1.5rem 0;
    background: var(--gray-100);
    margin-bottom: 2rem;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex: 0 0 auto;
    width: 120px;
}

.wizard-step__bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: #fff;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.wizard-step__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-400);
    text-align: center;
    transition: color var(--transition);
    white-space: nowrap;
}

.wizard-step.is-active .wizard-step__bubble {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 2px 10px rgba(232,39,42,0.4);
}
.wizard-step.is-active .wizard-step__label {
    color: var(--red);
    font-weight: 700;
}
.wizard-step.is-done .wizard-step__bubble {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    font-size: 0;
}
.wizard-step.is-done .wizard-step__bubble::after {
    content: '\2713';
    font-size: 1.1rem;
    color: #fff;
}
.wizard-step.is-done .wizard-step__label {
    color: var(--green);
}

.wizard-step.is-active .wizard-step__bubble {
    animation: stepPulse 2s ease-in-out infinite;
}
@keyframes stepPulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(232,39,42,0.4); }
    50%      { box-shadow: 0 2px 20px rgba(232,39,42,0.6); }
}

.wizard-connector {
    flex: 1;
    height: 2px;
    background: var(--gray-300);
    margin-top: 22px; /* align with center of bubble */
    max-width: 120px;
    transition: background var(--transition);
}
.wizard-connector.is-done { background: var(--red); }

/* ============================================================
   WIZARD CARD
   ============================================================ */
.wizard-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.wizard-card__header {
    padding: 2rem 2rem 0;
}

.wizard-card__header h2 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.wizard-section-title {
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.4rem;
    padding: 0 2rem;
}

.wizard-section-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 0 2rem;
    margin-bottom: 1rem;
}

/* ============================================================
   SAUCE ROWS (Step 1)
   ============================================================ */
.sauce-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--gray-200);
    transition: background var(--transition), border-color var(--transition);
    position: relative;
}

.sauce-row:last-of-type { border-bottom: 1px solid var(--gray-200); }

.sauce-row.is-selected {
    background: #fff8f0;
    border-color: var(--red);
}

/* Warning state (cases > 0 but < min) */
.sauce-row.is-warning {
    background: var(--warn-bg);
    border-color: var(--warn-border);
}

.sauce-row__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sauce-row__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.sauce-row__desc {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--gray-500);
    /* Lock to exactly 2 lines — clean clip, no ellipsis */
    height: calc(1.55em * 2);
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.sauce-row__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sauce-row__price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--red);
}

.sauce-row__leadtime {
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Discounted price states */
.price-was {
    text-decoration: line-through;
    color: var(--gray-400);
    font-weight: 400;
    margin-right: 0.25rem;
}
.price-now {
    color: var(--green);
    font-weight: 700;
}

.sauce-row__warning {
    display: none;
    font-size: 0.75rem;
    color: var(--warn-text);
    font-weight: 600;
    margin-top: 0.3rem;
    align-items: center;
    gap: 0.3rem;
}

.sauce-row.is-warning .sauce-row__warning {
    display: flex;
}

/* Qty controls */
.sauce-row__qty {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* ── Sauce row mobile ── */
@media (max-width: 639px) {
    .sauce-row {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }
    .sauce-row__name { font-size: 0.9rem; }
    .sauce-row__desc { font-size: 0.76rem; }
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-500);
    transition: all var(--transition);
    flex-shrink: 0;
    line-height: 1;
}
.qty-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.qty-btn:active { transform: scale(0.9); transition-duration: 0.06s; }

.qty-btn--plus {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    font-size: 1.3rem;
}

.qty-btn--plus:hover { background: var(--red-dark); border-color: var(--red-dark); }
.qty-btn--minus:hover { border-color: var(--gray-500); color: var(--black); }

.qty-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.qty-display__num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.qty-display__label {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: lowercase;
    margin-top: 1px;
}

.qty-display__bottles {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 2px;
    white-space: nowrap;
}

.qty-display__total {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    margin-top: 2px;
    white-space: nowrap;
}

/* Step 1 footer totals bar */
.wizard-totals-bar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
    font-size: 0.85rem;
    color: var(--gray-700);
}

.wizard-totals-bar strong { color: var(--black); }

/* ============================================================
   LABEL OPTIONS (Step 2) — per-sauce tile design
   ============================================================ */

/* Sauce block */
.label-sauce-block {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 0.875rem;
    transition: border-color var(--transition);
}
.label-sauce-block:last-child { margin-bottom: 1.5rem; }

.label-sauce-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.label-sauce-block__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
}

.label-sauce-block__qty {
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

/* Tile row */
.label-tile-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
@media (min-width: 520px) {
    .label-tile-row { grid-template-columns: repeat(5, 1fr); }
}

.label-tile {
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.65rem 0.4rem;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: border-color var(--transition), background var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.label-tile:hover {
    border-color: var(--gray-400);
    background: #fafafa;
}

.label-tile.is-selected {
    border-color: var(--red);
    background: var(--red-light);
}

.label-tile__label {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.label-tile__sub {
    font-size: 0.68rem;
    color: var(--red);
    font-weight: 600;
}

.label-tile__sub.is-free {
    color: var(--green);
}
.label-tile__sub.is-additional {
    color: var(--orange);
    font-size: 0.72rem;
}

/* ── Label choice description panel ─────────────────────────── */
.label-choice-info {
    margin: 0.75rem 1.5rem 0.5rem;
    animation: lci-fade 0.18s ease;
}
@keyframes lci-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0);   }
}
.lci-headline {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.4rem;
}
.lci-body {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0 0 0.85rem;
}
.lci-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.lci-bullets li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding-left: 1.25em;
    position: relative;
    line-height: 1.55;
}
.lci-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.lci-note {
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.875rem;
    font-size: 0.83rem;
    line-height: 1.55;
    margin-top: 0.25rem;
}
.lci-note--info {
    background: #eef5ff;
    border-left: 3px solid #3b82f6;
    color: #1d4ed8;
}
.lci-note--warn {
    background: var(--warn-bg);
    border-left: 3px solid var(--warn-border);
    color: var(--warn-text);
}
.lci-note strong { font-weight: 700; }

/* Example labels — collapsible toggle */
.lci-examples { margin-top: 1rem; }
.lci-examples__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-700);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    width: 100%;
    justify-content: space-between;
}
.lci-examples__toggle:hover,
.lci-examples__toggle.is-open {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--black);
}
.lci-examples__toggle-icon { font-size: 0.65rem; transition: transform var(--transition); }
.lci-examples__toggle.is-open .lci-examples__toggle-icon { transform: rotate(180deg); }

/* Collapsible panel */
.lci-examples__panel {
    display: none;
    margin-top: 0.75rem;
}
.lci-examples__panel.is-open { display: block; }

/* ── Carousel ── */
.lci-carousel {
    position: relative;
    user-select: none;
}
.lci-carousel__viewport {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--gray-100);
}
.lci-carousel__track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.lci-carousel__slide {
    min-width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.25rem;
    box-sizing: border-box;
}
.lci-carousel__ph {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-200);
    border: 2px dashed var(--gray-300);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.lci-carousel__ph-icon { font-size: 2rem; opacity: 0.4; }
.lci-carousel__ph-text { font-size: 0.75rem; color: var(--gray-400); }
.lci-carousel__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.lci-carousel__caption {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    padding: 0.5rem 1rem 0.75rem;
    margin: 0;
}

/* Prev / Next arrows */
.lci-carousel__arrow {
    position: absolute;
    top: calc(50% - 1.5rem); /* center on the image, above caption */
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition), box-shadow var(--transition);
    color: var(--gray-700);
    padding: 0;
}
.lci-carousel__arrow:hover { background: var(--white); box-shadow: var(--shadow-sm); color: var(--black); }
.lci-carousel__arrow--prev { left: 0.5rem; }
.lci-carousel__arrow--next { right: 0.5rem; }

/* Dots */
.lci-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}
.lci-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.lci-carousel__dot.is-active { background: var(--red); transform: scale(1.3); }

/* Counter */
.lci-carousel__counter {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin: 0.25rem 0 0;
}

/* Template selector (shown inside logo description) */
.lci-templates { margin-top: 1rem; margin-bottom: 0.5rem; }
.lci-templates__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}
@media (min-width: 480px) {
    .lci-templates__grid { grid-template-columns: repeat(4, 1fr); }
}
.lci-template-tile {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
    text-align: center;
}
.lci-template-tile:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-sm);
}
.lci-template-tile.is-selected {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(232,39,42,0.12);
}
.lci-template-tile__preview {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lci-template-tile__preview img { width: 100%; height: 100%; object-fit: cover; }
.lci-template-tile__ph {
    font-size: 0.65rem;
    color: var(--gray-400);
    line-height: 1.4;
    padding: 0.35rem;
}
.lci-template-tile__name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--black);
    padding: 0.35rem 0.25rem;
    display: block;
}
.lci-template-tile.is-selected .lci-template-tile__name { color: var(--red); }
.lci-template-tile__check {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Upload wrap — hidden until logo/complete/upload chosen */
.label-upload-wrap {
    display: none;
}
.label-upload-wrap.is-visible {
    display: block;
    margin-top: 0.5rem;
}

/* Step 2 label & print cost summary */
.step2-cost-summary {
    margin: 0 2rem 1.5rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}
.step2-cost-summary__title {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}
.step2-cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.step2-cost-table td {
    padding: 0.6rem 1.25rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-200);
}
.step2-cost-table td:last-child {
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
    width: 1%;
}
.step2-cost-table tr:last-child td { border-bottom: none; }
.step2-cost-table__free { color: var(--green); font-weight: 700; }
.step2-cost-table__subtotal td {
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--white);
    border-top: 2px solid var(--gray-200) !important;
    color: var(--red);
}
@media (max-width: 639px) {
    .step2-cost-summary { margin: 0 1rem 1.5rem; }
}

/* Label print cost bar — shown when any sauce has a custom label */
.label-print-cost-bar {
    margin: 0 2rem 1.25rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.875rem 1.25rem;
}
.label-print-cost-bar__inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.label-print-cost-bar__label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-900);
    margin-right: 0.25rem;
}
.label-print-cost-bar__detail {
    font-size: 0.8rem;
    color: var(--gray-500);
    flex: 1;
}
.label-print-cost-bar__total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--red);
    white-space: nowrap;
}
.label-print-cost-bar__note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
}
@media (max-width: 639px) {
    .label-print-cost-bar { margin: 0 1rem 1.25rem; }
}

/* Contact section — hidden until any custom label chosen */
.label-contact-wrap {
    display: none;
    background: #fafff8;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 1.5rem;
}
.label-contact-wrap.is-visible { display: block; }

.label-contact-wrap__title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.label-contact-wrap__desc {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.875rem;
}
.label-contact-wrap__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.label-field__lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.35rem;
}
.label-field__input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color var(--transition);
}
.label-field__input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(232,39,42,.12);
}

/* Upload zone (reused inside label blocks) */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    background: #fafafa;
}

.upload-zone:hover, .upload-zone.is-dragover {
    border-color: var(--red);
    background: var(--red-light);
}

.upload-zone__icon { font-size: 2rem; margin-bottom: 0.5rem; color: var(--gray-400); }
.upload-zone__text { font-size: 0.85rem; color: var(--gray-500); }
.upload-zone__preview {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    text-align: left;
}
.upload-zone__preview.is-visible { display: flex; }
.upload-zone__remove { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--red); font-size: 1rem; }
.upload-zone input[type="file"] { display: none; }

/* Mobile label tiles */
@media (max-width: 639px) {
    .label-contact-wrap__grid { grid-template-columns: 1fr; }
    .label-sauce-block { padding: 1rem; }
}

/* ============================================================
   ORDER SUMMARY (Step 3)
   ============================================================ */
.summary-section { padding: 0 2rem; }

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.summary-table td {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
    vertical-align: top;
}
.summary-table td:last-child { text-align: right; font-weight: 700; }
.summary-table .sub-detail { font-size: 0.75rem; color: var(--gray-500); }
.summary-table .discount-row td { color: var(--green); font-weight: 700; }
.summary-table .total-row td {
    border-top: 2px solid var(--black);
    border-bottom: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 1rem;
}
.summary-table .total-row td:last-child { font-size: 1.5rem; color: var(--red); }

/* ============================================================
   WIZARD NAV
   ============================================================ */
.wizard-card__footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wizard-card__footer--end { justify-content: flex-end; }

/* ============================================================
   NOTICES
   ============================================================ */
.wizard-notice {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.5rem;
    border-left: 3px solid transparent;
}
.wizard-notice.is-visible { display: flex; }
.wizard-notice--error {
    background: var(--red-light);
    color: var(--red);
    border-left-color: var(--red);
}

/* ============================================================
   PANELS
   ============================================================ */
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; animation: fadeSlide 0.25s ease; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Checkout / payment processing screen */
.checkout-screen {
    display: none;
    text-align: center;
    padding: 5rem 2rem;
}
.checkout-screen.is-active { display: block; }
.checkout-spinner {
    width: 52px; height: 52px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Order success screen */
.checkout-screen--success .success-icon {
    width: 72px; height: 72px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Square card container */
.square-payment-section {
    border-top: 1px solid var(--gray-200);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}
.square-card-wrap {
    margin: 0 2rem 1.5rem;
}
#card-container {
    min-height: 90px;
}
.square-card-errors {
    color: var(--red);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--red-light);
    border-radius: var(--radius-sm);
}
@media (max-width: 639px) {
    .square-card-wrap { margin: 0 1rem 1.5rem; }
}

/* ============================================================
   DISCOUNT PROGRESS BAR
   ============================================================ */
.discount-progress {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1rem 2rem;
    background: #fafafa;
}
.discount-progress__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; font-size: 0.82rem; }
.discount-progress__title { font-weight: 700; }
.discount-progress__next { color: var(--gray-500); }
.progress-bar { height: 7px; background: var(--gray-200); border-radius: 100px; overflow: hidden; margin-bottom: 0.6rem; }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--orange)); border-radius: 100px; transition: width 0.4s ease; }
.discount-milestones {
    position: relative;
    height: 2.4rem;
    margin-top: 0.2rem;
}
.discount-milestone {
    position: absolute;
    font-size: 0.72rem;
    color: var(--gray-400);
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
}
.discount-milestone::before {
    content: '';
    display: block;
    width: 1px;
    height: 5px;
    background: currentColor;
    margin: 0 auto 2px;
    opacity: 0.5;
}
/* Aligned to match linear 0–1000 scale */
#dm-100  { left: 10%; }
#dm-250  { left: 25%; }
#dm-500  { left: 50%; }
#dm-1000 { left: 100%; transform: translateX(-100%); }
.discount-milestone.is-reached { color: var(--green); font-weight: 700; }

/* Lead time notice */
.lead-time-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    padding: 0.6rem 2rem;
    border-top: 1px solid var(--gray-200);
}
.lead-time-notice strong { color: var(--black); }
.lead-time-notice.is-large { color: var(--orange); }
.lead-time-notice.is-large strong { color: var(--orange); }

/* ============================================================
   RUNNING TOTAL (step 1 bottom)
   ============================================================ */
.running-total-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: center;
    padding: 0.85rem 2rem;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    font-size: 0.83rem;
    position: sticky;
    bottom: 0;
    z-index: 5;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}

.running-total-row__item { display: flex; gap: 0.4rem; align-items: baseline; }
.running-total-row__label { color: var(--gray-500); }
.running-total-row__value { font-weight: 700; color: var(--black); }
.running-total-row__discount-badge {
    margin-left: auto;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   MY ACCOUNT PAGE
   ============================================================ */
.account-page {
    padding: 3rem 0 5rem;
    min-height: 60vh;
    background: var(--gray-100);
}

/* ── Auth Panel (logged out) ──────────────────────────────── */
.auth-panel {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.auth-panel__tabs {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    transition: all var(--transition);
}
.auth-tab.is-active {
    background: #fff;
    color: var(--black);
    border-bottom: 2px solid var(--red);
    margin-bottom: -2px;
}
.auth-tab:hover:not(.is-active) { color: var(--black); }

.auth-form {
    padding: 2rem 2rem 2.5rem;
}
.auth-form h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}
.auth-form__sub {
    color: var(--gray-500);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.auth-field { margin-bottom: 1.1rem; }
.auth-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.auth-field input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0 0.9rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.auth-field input:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(232,39,42,.1); }

.auth-field--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
}
.auth-checkbox input { width: auto; height: auto; }
.auth-link { font-size: 0.82rem; color: var(--red); text-decoration: none; }
.auth-link:hover { text-decoration: underline; }
.auth-req { color: var(--red); }

.auth-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ── Account Layout (logged in) ───────────────────────────── */
.account-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.account-sidebar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.account-sidebar__user {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.5rem;
    background: var(--black);
    color: #fff;
}

.account-sidebar__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.account-sidebar__name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.account-sidebar__email { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.account-nav { padding: 0.5rem 0; }
.account-nav__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}
.account-nav__item:hover { background: var(--gray-100); color: var(--black); }
.account-nav__item.is-active { background: var(--gray-100); color: var(--red); font-weight: 600; }
.account-nav__item--signout { color: var(--gray-500); border-top: 1px solid var(--gray-200); margin-top: 0.25rem; }
.account-nav__item--signout:hover { color: var(--red); background: #fff5f5; }
.account-nav__icon { font-size: 1rem; }
.account-nav__badge {
    margin-left: auto;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.account-sidebar__cta {
    display: block;
    margin: 1rem 1.25rem 1.25rem;
    text-align: center;
    text-decoration: none;
}

/* ── Content + Panels ────────────────────────────────────── */
.account-content { min-width: 0; }

.account-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.account-panel__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 0;
    margin-bottom: 1.25rem;
}
.account-panel__head h2 { font-size: 1.2rem; margin: 0; }
.account-panel__count { font-size: 0.8rem; color: var(--gray-500); }

/* ── Notice ──────────────────────────────────────────────── */
.account-notice {
    margin: 0 1.75rem 1rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
}
.account-notice.is-error   { background: #fef0f0; color: #c0392b; border: 1px solid #f5c6cb; }
.account-notice.is-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* ── Forms ───────────────────────────────────────────────── */
.account-form {
    padding: 0 1.75rem 2rem;
}
.account-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.account-field { margin-bottom: 1.1rem; }
.account-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.account-field input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0 0.9rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    box-sizing: border-box;
    transition: border-color var(--transition);
}
.account-field input:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(232,39,42,.1); }

/* ── Empty State ─────────────────────────────────────────── */
.account-empty {
    text-align: center;
    padding: 3.5rem 2rem 4rem;
    color: var(--gray-500);
}
.account-empty__icon { font-size: 3rem; margin-bottom: 0.75rem; }
.account-empty h3 { font-size: 1rem; color: var(--black); margin-bottom: 0.4rem; }
.account-empty p { font-size: 0.88rem; margin-bottom: 1.25rem; }

/* ── Orders List ─────────────────────────────────────────── */
.account-orders-list { padding: 0 0 0.5rem; }

.order-row {
    border-top: 1px solid var(--gray-200);
}
.order-row:first-child { border-top: none; }

.order-row__summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    cursor: pointer;
    transition: background var(--transition);
}
.order-row__summary:hover,
.order-row.is-open .order-row__summary { background: var(--gray-100); }

.order-row__col { display: flex; flex-direction: column; gap: 0.15rem; }
.order-row__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); }
.order-row__val { font-size: 0.9rem; font-weight: 600; color: var(--black); }
.order-row__price { color: var(--red); }

.order-row__col--id     { min-width: 60px; }
.order-row__col--date   { min-width: 90px; flex: 1; }
.order-row__col--bottles { min-width: 60px; }
.order-row__col--total  { min-width: 70px; }
.order-row__col--status { min-width: 90px; }
.order-row__col--arrow  { margin-left: auto; }

.order-row__arrow {
    display: inline-block;
    color: var(--gray-400);
    font-size: 0.65rem;
    transition: transform 0.2s;
}
.order-row__arrow.is-open { transform: rotate(180deg); color: var(--red); }

/* ── Order Detail (expanded) ─────────────────────────────── */
.order-row__loading {
    padding: 1.25rem 1.75rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

.order-detail {
    padding: 0 1.75rem 1.5rem;
    border-top: 1px dashed var(--gray-200);
    margin-top: 0;
}

.order-detail__items { margin-bottom: 1.25rem; }

.order-detail__item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.order-detail__item:last-child { border-bottom: none; }

.order-detail__sauce {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.order-detail__meta { font-size: 0.82rem; color: var(--gray-600); }

.order-detail__label-badge {
    display: inline-block;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 1px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-700);
}
.order-detail__file-link { color: var(--red); text-decoration: none; font-weight: 600; }
.order-detail__file-link:hover { text-decoration: underline; }

.order-detail__totals {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}
.order-detail__total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    color: var(--gray-700);
}
.order-detail__total-row.is-discount { color: var(--green); }
.order-detail__total-row.is-grand {
    border-top: 1px solid var(--gray-200);
    margin-top: 0.3rem;
    padding-top: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
}

.order-detail__actions { margin-top: 1rem; }
.order-detail__error { color: var(--red); font-size: 0.85rem; padding: 0.5rem 0; }

.order-detail__section { margin-bottom: 1rem; }
.order-detail__section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--gray-200);
}
.order-detail__address {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--gray-700);
}

/* ── Configurator Step 3 — Shipping Fields ────────────────── */
.ship-section {
    padding: 0 0 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}
.ship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    padding: 0 2rem;
}
.ship-field { display: flex; flex-direction: column; gap: 0.3rem; }
.ship-field--full { grid-column: 1 / -1; }
.ship-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-700);
}
.ship-field input,
.ship-field select {
    height: 46px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0 0.85rem;
    font-size: 0.92rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    background: #fff;
}
input::placeholder, textarea::placeholder { color: var(--gray-400); opacity: 1; }

.ship-field input:focus,
.ship-field select:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232,39,42,.1);
}
@media (max-width: 639px) {
    .ship-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
    .ship-field--full { grid-column: 1; }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (min-width: 640px) {
    .perfect-for__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .discount-tiers { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .step-card { flex-direction: column; text-align: center; align-items: center; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .site-nav { display: block; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {
    .perfect-for__grid { grid-template-columns: 1fr 1fr; }
    .account-layout { grid-template-columns: 240px 1fr; }
    .auth-field-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639px) {
    .order-row__summary { flex-wrap: wrap; gap: 0.75rem; }
    .order-row__col--date { order: 3; }
    .order-row__col--bottles { display: none; }
    .account-form__row { grid-template-columns: 1fr; }
    .auth-field-row { grid-template-columns: 1fr; }

    .auth-field input,
    .account-field input,
    .ship-field input,
    .ship-field select,
    .label-field__input { font-size: 16px; }

    .qty-btn { width: 44px; height: 44px; }
}

/* ============================================================
   PAGE HERO (shared — Contact, etc.)
   ============================================================ */
.page-hero {
    background: var(--black);
    padding: 4.5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/texture-bg.png') center/cover;
    opacity: 0.18;
    pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 0.75rem;
}
.page-hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 1rem;
}
.page-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}
.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 0.5rem;
}
.contact-form__intro { color: var(--gray-600); margin: 0 0 1.75rem; }

.contact-notice {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.contact-notice.is-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.contact-notice.is-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.cf-row { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.cf-row--2col { gap: 1rem; }

.cf-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.cf-field:last-child { margin-bottom: 0; }

.cf-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray-700);
}
.cf-required { color: var(--red); }

.cf-input {
    height: 46px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--black);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    box-sizing: border-box;
}
.cf-input:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232,39,42,.1);
}
.cf-textarea { height: auto; resize: vertical; padding: 0.85rem 1rem; }

.cf-submit { margin-top: 0.5rem; }

/* Info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.contact-info__icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-info__card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
    color: var(--black);
}
.contact-info__card p { font-size: 0.9rem; color: var(--gray-600); margin: 0 0 1rem; line-height: 1.6; }
.contact-info__card p:last-child { margin-bottom: 0; }

.contact-info__faq {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.contact-info__faq h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin: 0 0 1rem;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 0;
}
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item summary {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--red); font-size: 1.2rem; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin: 0.6rem 0 0; line-height: 1.6; }

@media (min-width: 900px) {
    .contact-layout { grid-template-columns: 1fr 340px; gap: 4rem; }
    .cf-row--2col { flex-direction: row; }
    .cf-row--2col .cf-field { flex: 1; margin-bottom: 0; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* About Hero */
.about-hero {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/texture-bg.png') center/cover;
    opacity: 0.22;
    pointer-events: none;
}
.about-hero__inner { position: relative; z-index: 1; max-width: 680px; }
.about-hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 1rem;
}
.about-hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 1.25rem;
}
.about-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 0 2rem;
}

/* Origin section */
.about-origin { padding: 4rem 1.5rem; }
.about-origin__grid { display: flex; flex-direction: column; gap: 3rem; }
.about-origin__text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 1.25rem;
}
.about-origin__text p { color: var(--gray-600); line-height: 1.75; margin: 0 0 1rem; font-size: 1rem; }
.about-origin__text p:last-child { margin-bottom: 0; }

/* Bob photo */
.about-origin__photo-col { display: flex; flex-direction: column; gap: 1.25rem; }
.about-bob-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.about-bob-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}
.about-bob-photo__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-style: italic;
    padding: 1.5rem 0.875rem 0.625rem;
}
.about-bob-photo--placeholder {
    background: var(--gray-200);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.about-bob-photo__placeholder-inner { font-size: 3.5rem; }

.origin-callout-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

/* Legacy alias */
.about-origin__callout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.origin-callout-card {
    background: var(--red);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1rem;
    text-align: center;
    color: #fff;
}
.origin-callout-card__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.origin-callout-card__stat {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.origin-callout-card__label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }

/* Sauces section */
.about-sauces {
    background: var(--gray-50);
    padding: 4.5rem 1.5rem;
}
.about-sauces h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 2.5rem;
}
.about-sauce-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.about-sauce-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.about-sauce-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.about-sauce-card__emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.about-sauce-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    margin: 0 0 0.6rem;
}
.about-sauce-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* Private Label section */
.about-private-label {
    background: var(--black);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.about-private-label::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/texture-bg.png') center/cover;
    opacity: 0.12;
    pointer-events: none;
}
.about-pl__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 3rem; }
.about-pl__text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem;
}
.about-pl__text p { color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0 0 1rem; font-size: 1rem; }
.about-pl__list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.about-pl__list li { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 600; }

.about-pl__uses { display: flex; flex-direction: column; gap: 1rem; }
.about-use-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.about-use-card__icon { font-size: 1.75rem; flex-shrink: 0; }
.about-use-card strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}
.about-use-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.55; }

/* Bob section */
.about-bob { padding: 4.5rem 1.5rem; text-align: center; }
.about-bob h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
}
.about-bob__intro { color: var(--gray-600); font-size: 1.05rem; margin: 0 auto 2.5rem; max-width: 480px; }
.about-bob__traits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.about-bob__trait {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.about-bob__trait-icon { font-size: 1.75rem; }
.about-bob__trait strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
}
.about-bob__trait span { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* About CTA */
.about-cta {
    background: var(--red);
    padding: 4.5rem 1.5rem;
    text-align: center;
}
.about-cta__inner { max-width: 620px; margin: 0 auto; }
.about-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.75rem;
}
.about-cta p { color: #fff; font-size: 1.05rem; margin: 0 0 2rem; }
.about-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.about-cta .btn--outline {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.about-cta .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }

/* About responsive */
@media (min-width: 768px) {
    .about-origin__grid { flex-direction: row; align-items: flex-start; gap: 4rem; }
    .about-origin__text { flex: 1.2; }
    .about-origin__callout { flex: 1; grid-template-columns: 1fr; gap: 0.75rem; }
    .about-origin__photo-col { flex: 1; }
    .origin-callout-cards { grid-template-columns: repeat(3, 1fr); }
    .about-sauce-cards { grid-template-columns: 1fr 1fr; }
    .about-pl__inner { flex-direction: row; gap: 4rem; align-items: flex-start; }
    .about-pl__text { flex: 1; }
    .about-pl__uses { flex: 1; }
    .about-bob__traits { grid-template-columns: repeat(4, 1fr); }
    .about-cta__btns .btn--lg { min-width: 200px; }
}
@media (min-width: 1024px) {
    .about-origin__callout { grid-template-columns: 1fr; }
    .about-sauce-cards { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-body { padding-top: 3rem; padding-bottom: 4rem; max-width: 820px; }

.faq-search-wrap { margin-bottom: 2rem; }
.faq-search {
    position: relative;
    max-width: 480px;
}
.faq-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}
.faq-search__input {
    width: 100%;
    height: 48px;
    padding: 0 1rem 0 2.75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--black);
    background: #fff;
    box-sizing: border-box;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-search__input:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232,39,42,.1);
}
.faq-no-results { display: block; margin-top: 0.75rem; font-size: 0.9rem; color: var(--gray-500); }

/* Category jump links */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.faq-cat-link {
    padding: 0.4rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.faq-cat-link:hover { border-color: var(--red); color: var(--red); background: rgba(232,39,42,.05); text-decoration: none; }

/* FAQ Groups */
.faq-group { margin-bottom: 2.5rem; }
.faq-group__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(232,39,42,.15);
}

/* Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 0; }
.faq-accordion__item {
    border: 1px solid var(--gray-200);
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    border-bottom: none;
}
.faq-accordion__item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.faq-accordion__item:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-bottom: 1px solid var(--gray-200); }
.faq-accordion__item:only-child  { border-radius: var(--radius-lg); border-bottom: 1px solid var(--gray-200); }

.faq-accordion__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    transition: background var(--transition), color var(--transition);
}
.faq-accordion__q:hover { background: var(--gray-50); }
.faq-accordion__item.is-open .faq-accordion__q { color: var(--red); background: rgba(232,39,42,.03); }

.faq-accordion__chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.2s ease;
}
.faq-accordion__item.is-open .faq-accordion__chevron {
    transform: rotate(180deg);
    color: var(--red);
}

.faq-accordion__a {
    display: none;
    border-top: 1px solid var(--gray-100);
}
.faq-accordion__item.is-open .faq-accordion__a { display: block; }
.faq-accordion__a-inner {
    padding: 1rem 1.4rem 1.25rem;
    font-size: 0.97rem;
    color: var(--gray-600);
    line-height: 1.75;
}
.faq-accordion__a-inner p { margin: 0 0 0.75rem; }
.faq-accordion__a-inner p:last-child { margin-bottom: 0; }
.faq-accordion__a-inner ul, .faq-accordion__a-inner ol { padding-left: 1.4rem; margin: 0 0 0.75rem; }
.faq-accordion__a-inner li { margin-bottom: 0.3rem; }

/* CTA */
.faq-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.faq-cta__icon { font-size: 2.5rem; flex-shrink: 0; }
.faq-cta__text { flex: 1; min-width: 200px; }
.faq-cta__text h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.35rem;
}
.faq-cta__text p { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.55; }
.faq-cta .btn--primary { flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.hiw-steps { padding: 5rem 0; background: var(--gray-100); }

.hiw-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.hiw-step:last-child { border-bottom: none; }

.hiw-step__num {
    flex-shrink: 0;
    width: 64px; height: 64px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(232,39,42,0.35);
    margin: 0 auto;
}

.hiw-step__body h2 { margin-bottom: 0.75rem; }
.hiw-step__body > p { color: var(--gray-700); margin-bottom: 1.25rem; }

.hiw-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hiw-list li {
    padding-left: 1.4em;
    position: relative;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.hiw-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.hiw-label-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}
.hiw-label-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.hiw-label-card--free { border-color: var(--gray-200); }
.hiw-label-card--featured {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(232,39,42,0.12);
}
.hiw-label-card__pkg {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 0.25rem;
}
.hiw-label-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.hiw-label-card__price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.1rem;
}
.hiw-label-card__price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-500);
    font-family: var(--font-body);
}
.hiw-label-card__extra {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}
.hiw-label-card p { font-size: 0.88rem; color: var(--gray-700); margin: 0; }

.hiw-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    margin-top: 1rem !important;
}

/* HIW FAQ (reused on volume discounts page too) */
.hiw-faq { padding: 5rem 0; background: var(--gray-100); }
.hiw-faq__list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.hiw-faq__item {
    border-bottom: 1px solid var(--gray-200);
}
.hiw-faq__item:first-child { border-top: 1px solid var(--gray-200); }
.hiw-faq__q {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    gap: 1rem;
}
.hiw-faq__q::-webkit-details-marker { display: none; }
.hiw-faq__q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--red);
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
}
.hiw-faq__item[open] > .hiw-faq__q::after { content: '−'; }
.hiw-faq__a { padding: 0 0 1.25rem; }
.hiw-faq__a p { font-size: 0.92rem; color: var(--gray-700); margin: 0; line-height: 1.7; }

/* ============================================================
   VOLUME DISCOUNTS PAGE
   ============================================================ */
.vd-example-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.vd-example {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-top: 3px solid var(--orange);
}
.vd-example__tier {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 0.2rem;
}
.vd-example__bottles {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}
.vd-example__detail { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.vd-example__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--gray-700);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--gray-100);
}
.vd-example__row:last-child { border-bottom: none; }
.vd-example__row--discount { color: var(--green); }
.vd-example__row--total { font-weight: 700; color: var(--black); font-size: 0.95rem; }
.vd-example__savings-callout {
    background: var(--red-light);
    color: var(--red-dark);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}
.vd-note {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-style: italic;
    margin-top: 2rem;
    text-align: center;
}

.vd-rules { padding: 5rem 0; background: var(--gray-100); }
.vd-rules__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.vd-rule-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vd-rule-card__icon { font-size: 2rem; line-height: 1; }
.vd-rule-card h3 { font-size: 1rem; margin: 0; color: var(--black); }
.vd-rule-card p { font-size: 0.88rem; color: var(--gray-700); margin: 0; line-height: 1.6; }

/* ============================================================
   OUR SAUCES PAGE
   ============================================================ */
.sauces-list { padding: 4rem 0; background: #fff; }

.sauce-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}
.sauce-feature:last-child { border-bottom: none; }

.sauce-feature__badge-col { display: flex; justify-content: center; }
.sauce-feature__badge {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 140px;
}
.sauce-feature--alt .sauce-feature__badge { background: var(--red); }
.sauce-feature__heat-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.5rem; }
.sauce-feature__heat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.75rem;
}
.sauce-feature__dots { display: flex; gap: 5px; justify-content: center; }
.sauce-feature__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}
.sauce-feature__dot.is-on { background: var(--orange); }

.sauce-feature__aka {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin: 0 0 0.35rem;
}
.sauce-feature__name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--black);
    margin: 0 0 0.75rem;
}
.sauce-feature__desc {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.sauce-feature__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.sauce-meta-chip {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.82rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* Heat Guide */
.heat-guide { padding: 4.5rem 0; background: var(--gray-100); }
.heat-guide__rows { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.heat-guide__row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.heat-guide__row:last-child { border-bottom: none; }
.heat-guide__dots { display: flex; gap: 5px; flex-shrink: 0; }
.heat-guide__info { display: flex; flex-direction: column; gap: 0.15rem; }
.heat-guide__info strong {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
}
.heat-guide__info span { font-size: 0.85rem; color: var(--gray-700); line-height: 1.5; }

/* Sauces Label Section */
.sauces-labels { padding: 4.5rem 0; background: #fff; }
.sauces-label-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.sauces-label-card {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.sauces-label-card--featured {
    background: #fff;
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(232,39,42,0.10);
}
.sauces-label-card__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 0.35rem;
}
.sauces-label-card h3 { font-size: 1rem; color: var(--black); margin-bottom: 0.5rem; }
.sauces-label-card p { font-size: 0.88rem; color: var(--gray-700); margin: 0; line-height: 1.6; }

/* ============================================================
   RESPONSIVE — HOW IT WORKS / VOLUME DISCOUNTS / OUR SAUCES
   ============================================================ */
@media (min-width: 640px) {
    .hiw-label-options { grid-template-columns: repeat(3, 1fr); }
    .vd-example-grid { grid-template-columns: repeat(2, 1fr); }
    .vd-rules__grid { grid-template-columns: repeat(2, 1fr); }
    .sauces-label-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .hiw-step {
        grid-template-columns: 80px 1fr;
        align-items: start;
    }
    .hiw-step__num { margin: 0; }
    .sauce-feature {
        grid-template-columns: 180px 1fr;
        gap: 3rem;
    }
    .sauce-feature--alt {
        grid-template-columns: 1fr 180px;
    }
    .sauce-feature--alt .sauce-feature__badge-col { order: 2; }
    .sauce-feature--alt .sauce-feature__content { order: 1; }
}

@media (min-width: 900px) {
    .vd-example-grid { grid-template-columns: repeat(4, 1fr); }
    .vd-rules__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > *,
    .hero__headline .line-white,
    .hero__headline .line-red,
    .hero__underline,
    .mobile-menu.is-open li {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    body::before,
    .site-header, .site-footer, .nav-toggle, .mobile-menu,
    .wizard-progress, .cta-section, .discount-banner,
    .perfect-for, .how-it-works { display: none !important; }

    body { background: #fff !important; color: #000 !important; font-size: 12pt; }

    .hero { min-height: auto !important; padding: 2rem 0 !important; }
    .hero::before, .hero::after { display: none !important; }

    .summary-table { border: 1px solid #ccc; }
    .summary-table td { border-bottom: 1px solid #ccc; }

    a { color: #000 !important; text-decoration: underline; }

    .btn { border: 1px solid #000 !important; background: none !important; color: #000 !important; }

    .receipt-wrap { margin: 0 !important; max-width: 100% !important; }
}

/* ============================================================
   BELOW-FOLD PERFORMANCE — content-visibility
   ============================================================ */
.perfect-for,
.discount-banner,
.cta-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}
