/* ============================================================
   YES Supply — Main Stylesheet v2
   Fonts  : Inter (body) · Barlow Condensed (display)
   Colors : --maroon #581833 · --navy #00223E · --red #E03710
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
#main { display: block; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }

/* ── Design Tokens ── */
:root {
    --maroon  : #581833;
    --maroon-d: #3d1024;
    --maroon-g: var(--maroon);
    --maroon-g-hover: linear-gradient(180deg, #6b2040 0%, #581833 60%, #4a1229 100%);
    --navy    : #2a0c1a;  /* remapped to brand dark — no more blue */
    --red     : #E03710;
    --ink     : #1a1a1a;
    --mid     : #555;
    --muted   : #888;
    --line    : #e4e4e4;
    --bg      : #ffffff;
    --bg2     : #f7f7f7;
    --bg3     : #f0f0f0;
    --radius  : 6px;
    --radius-l: 12px;
    --shadow  : 0 2px 12px rgba(0,0,0,.08);
    --shadow-l: 0 8px 32px rgba(0,0,0,.12);
    --header-h: 68px;
}

/* ── Utilities ── */
.container { max-width: 1920px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

h1,h2,h3,h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: .95;
    color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

.eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 10px;
}

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px;
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 700;
    line-height: 1;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 3px;
    border: 2px solid transparent;
    transition: all .18s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-maroon  { background: var(--maroon-g); color: #fff; border-color: transparent; }
.btn-maroon:hover { background: var(--maroon-g-hover); border-color: transparent; color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-ghost   { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ghost:hover { background: var(--maroon-g); color: #fff; }
/* Aliases so templates can use either class name */
.btn-hero-red    { background: var(--red); color: #fff; border-color: var(--red); }
.btn-hero-red:hover { background: #c42e0c; border-color: #c42e0c; color: #fff; }
.btn-hero-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.btn-white   { background: #fff; color: var(--maroon); border-color: #fff; }
.btn-white:hover { background: #f5f5f5; border-color: #f5f5f5; color: var(--maroon); }

/* Global focus states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 1px solid rgba(88,24,51,.3);
    outline-offset: 2px;
}
.btn:focus-visible { outline: 1px solid rgba(88,24,51,.25); outline-offset: 3px; }
.carousel-arrow:focus-visible { outline: 1px solid rgba(255,255,255,.4); outline-offset: 2px; }
.cat-card:focus-visible { outline: 1px solid rgba(88,24,51,.2); outline-offset: 3px; }
.product-card:focus-visible { outline: 1px solid rgba(88,24,51,.2); outline-offset: 2px; }


/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */

#site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

/* ── Top bar ── */
.header-top {
    background: linear-gradient(90deg, var(--maroon-d) 0%, var(--maroon) 50%, var(--maroon-d) 100%);
    color: rgba(255,255,255,.85);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .02em;
    padding: 7px 0;
    border-bottom: 2px solid var(--red);
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.header-top-badges { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background .15s, border-color .15s;
}
.top-badge:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.32); }
.top-badge--star { color: #ffd166; border-color: rgba(255,209,102,.3); background: rgba(255,209,102,.08); }
.top-badge--check { color: #6ee7b7; border-color: rgba(110,231,183,.3); background: rgba(110,231,183,.08); }
.header-top-right {
    display: flex; align-items: center; gap: 20px;
}
.header-top-right a {
    display: flex; align-items: center; gap: 5px;
    color: rgba(255,255,255,.75);
    transition: color .15s;
}
.header-top-right a:hover { color: #fff; }

/* ── Main row ── */
.header-main {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 80px;
    padding: 0 40px;
    background: #fff;
    border-bottom: 3px solid var(--red);
}

/* Logo */
.site-logo { flex-shrink: 0; line-height: 0; }
.site-logo img { height: 42px; width: auto; display: block; transition: opacity .15s; }
.site-logo:hover img { opacity: .85; }

/* ── Delivery widget ── */
.delivery-widget { position: relative; flex-shrink: 0; }
.delivery-btn {
    display: flex; align-items: center; gap: 10px;
    background: #f4f4f4; border: 1.5px solid var(--line);
    border-radius: 12px; padding: 8px 14px;
    cursor: pointer; font-family: 'Inter', sans-serif;
    transition: border-color .15s, background .15s; white-space: nowrap;
}
.delivery-btn:hover { border-color: var(--maroon); background: #fdf5f7; }
.delivery-btn > svg:first-child { color: var(--maroon); flex-shrink: 0; }
.delivery-btn { color: var(--maroon); }
.delivery-text { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.delivery-sub { font-size: 10.5px; color: var(--muted); font-weight: 500; }
.delivery-loc { font-size: 13px; font-weight: 700; color: var(--ink); max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.delivery-arrow { color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.delivery-widget.open .delivery-arrow { transform: rotate(180deg); }
.delivery-panel {
    display: none; position: absolute;
    top: calc(100% + 10px); left: 0;
    width: 310px; background: #fff;
    border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15); z-index: 99999;
}
.delivery-widget.open .delivery-panel { display: block; }
.delivery-panel-inner { padding: 20px; }
.delivery-panel-inner h4 { font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.delivery-panel-inner > p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.delivery-input-wrap {
    display: flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--line); border-radius: 8px;
    padding: 0 12px; height: 44px; margin-bottom: 4px;
    transition: border-color .15s;
}
.delivery-input-wrap:focus-within { border-color: var(--maroon); }
.delivery-input-wrap svg { color: var(--muted); flex-shrink: 0; }
.delivery-input-wrap input {
    flex: 1; border: none; outline: none;
    font-family: 'Inter', sans-serif; font-size: 14px; background: transparent; color: var(--ink);
}

/* Spinner */
.delivery-spinner {
    width: 14px; height: 14px; flex-shrink: 0;
    border: 2px solid var(--line); border-top-color: var(--maroon);
    border-radius: 50%; display: none;
}
.delivery-spinner.spinning { display: block; animation: ds-spin .6s linear infinite; }
@keyframes ds-spin { to { transform: rotate(360deg); } }

/* Suggestions dropdown */
.delivery-suggestions {
    list-style: none; margin: 0 0 10px; padding: 0;
    border: 1.5px solid var(--line); border-radius: 8px;
    overflow: hidden; background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    max-height: 220px; overflow-y: auto;
}
.delivery-suggestions[hidden] { display: none; }
.delivery-suggestions li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; cursor: pointer;
    border-bottom: 1px solid var(--line);
    transition: background .12s;
}
.delivery-suggestions li:last-child { border-bottom: none; }
.delivery-suggestions li:hover,
.delivery-suggestions li.active { background: rgba(88,24,51,.05); }
.delivery-suggestions li svg { color: var(--maroon); flex-shrink: 0; }
.delivery-suggestions .ds-main { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; }
.delivery-suggestions .ds-sub  { font-size: 11px; color: var(--muted); white-space: nowrap; }
.delivery-save-btn {
    width: 100%; padding: 11px; background: var(--maroon-g); color: #fff;
    border: none; border-radius: 8px; font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: filter .15s; margin-bottom: 16px;
}
.delivery-save-btn:hover { background: var(--maroon-g-hover); }
.delivery-info { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.delivery-opt { display: flex; align-items: flex-start; gap: 12px; }
.delivery-opt svg { color: var(--maroon); flex-shrink: 0; margin-top: 2px; }
.delivery-opt div { display: flex; flex-direction: column; gap: 1px; }
.delivery-opt strong { font-size: 13px; font-weight: 700; color: var(--ink); }
.delivery-opt span   { font-size: 12px; color: var(--muted); }

/* ── Search ── */
.header-search-wrap { flex: 1; position: relative; min-width: 0; }
.header-search-form {
    display: flex; height: 50px;
    border: 1.5px solid #ddd; border-radius: 50px;
    overflow: hidden; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.header-search-form:focus-within {
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(88,24,51,.08);
}
.header-search-form input[type="search"] {
    flex: 1; padding: 0 20px; font-size: 15px;
    font-family: 'Inter', sans-serif; border: none; outline: none;
    background: transparent; color: var(--ink); -webkit-appearance: none; min-width: 0;
}
.header-search-form input::placeholder { color: #bbb; }
.search-submit-btn {
    width: 52px; background: transparent; border: none;
    color: var(--maroon);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; cursor: pointer; transition: color .15s;
    border-radius: 0 50px 50px 0; padding-right: 8px;
}
.search-submit-btn:hover { color: var(--red); }

/* Suggestions dropdown */
.suggest-box {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    box-shadow: 0 12px 40px rgba(0,0,0,.14);
    z-index: 99999;
    max-height: 420px;
    overflow-y: auto;
}
.suggest-box.open { display: block; }
.sug-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid #f2f2f2;
    transition: background .1s;
}
.sug-item:last-child { border-bottom: none; }
.sug-item:hover, .sug-item.active { background: var(--bg2); }
.sug-img  { width: 48px; height: 48px; object-fit: contain; border: 1px solid var(--line); border-radius: 6px; flex-shrink: 0; }
.sug-ph   { width: 48px; height: 48px; background: var(--bg2); border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.sug-name { font-size: 14px; font-weight: 600; line-height: 1.3; }
.sug-price{ font-size: 13px; color: var(--red); font-weight: 600; margin-top: 2px; }
.sug-sku  { font-size: 11px; color: var(--muted); }
.sug-empty{ padding: 18px; text-align: center; color: var(--muted); font-size: 14px; }

/* ── Header icons ── */
.header-icons { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.hicon {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 12px; border-radius: 10px;
    text-decoration: none; color: var(--maroon);
    transition: background .15s, color .15s, transform .15s; white-space: nowrap;
    border: 1.5px solid transparent;
}
.hicon:hover {
    background: #fdf5f7;
    border-color: rgba(88,24,51,.12);
    color: var(--maroon);
    transform: translateY(-1px);
}
.hicon > svg, .hicon-cart-wrap svg { color: inherit; flex-shrink: 0; }
.hicon-text { display: flex; flex-direction: column; line-height: 1.3; }
.hicon-sub  { font-size: 10px; color: var(--muted); font-weight: 500; }
.hicon-main { font-size: 13px; font-weight: 700; color: var(--maroon); }
.hicon-cart-wrap { position: relative; flex-shrink: 0; }
.cart-count {
    position: absolute; top: -6px; right: -8px;
    background: var(--red); color: #fff;
    font-size: 9.5px; font-weight: 800;
    min-width: 18px; height: 18px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; line-height: 1; border: 2px solid #fff; pointer-events: none;
    box-shadow: 0 2px 6px rgba(224,55,16,.4);
}

/* ── Mini cart hover panel ── */
.hicon-cart-hover { position: relative; }
.hicon-cart-trigger { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.mini-cart-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px); right: 0;
    width: 340px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
    z-index: 99999;
    overflow: hidden;
}
/* Invisible bridge on parent fills the gap so hover isn't lost crossing to the panel */
.hicon-cart-hover::after {
    content: '';
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 8px; /* matches the gap in top: calc(100% + 8px) */
}
.hicon-cart-hover:hover .mini-cart-panel,
.mini-cart-panel:hover { display: block; }

/* Empty state */
.mini-cart-empty {
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 24px; text-align: center; gap: 12px;
}
.mini-cart-empty svg { stroke: var(--line); }
.mini-cart-empty p { font-size: 14px; color: var(--muted); margin: 0; }

/* Header */
.mini-cart-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--bg2);
}
.mini-cart-header strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.mini-cart-count { font-size: 12px; color: var(--muted); }

/* Items list */
.mini-cart-items { list-style: none; margin: 0; padding: 0; max-height: 280px; overflow-y: auto; }
.mini-cart-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    transition: background .12s;
}
.mini-cart-item:hover { background: var(--bg2); }
.mini-cart-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--bg2); display: block; }
.mini-cart-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.mini-cart-item-body { flex: 1; min-width: 0; }
.mini-cart-item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; }
.mini-cart-item-name {
    font-size: 12px; font-weight: 600; color: var(--ink);
    text-decoration: none; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mini-cart-item-name:hover { color: var(--maroon); }
.mini-cart-remove {
    flex-shrink: 0; background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: 16px; line-height: 1; padding: 0 2px;
    transition: color .15s;
}
.mini-cart-remove:hover { color: var(--red); }
.mini-cart-item-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.mini-cart-qty-ctrl { display: flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.mini-cart-qty-btn {
    background: var(--bg2); border: none; cursor: pointer;
    width: 26px; height: 26px; font-size: 15px; line-height: 1;
    color: var(--ink); transition: background .12s;
    display: flex; align-items: center; justify-content: center;
}
.mini-cart-qty-btn:hover { background: var(--line); }
.mini-cart-qty-btn:disabled { opacity: .35; cursor: default; }
.mini-cart-qty-num { font-size: 12px; font-weight: 600; color: var(--ink); min-width: 28px; text-align: center; }
.mini-cart-price { font-size: 13px; font-weight: 700; color: var(--maroon); }

/* Subtotal */
.mini-cart-subtotal {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 18px;
    background: var(--bg2);
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.mini-cart-subtotal span { color: var(--muted); font-size: 13px; }
.mini-cart-subtotal strong { color: var(--ink); font-size: 16px; }

/* Actions */
.mini-cart-actions {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; padding: 14px 18px;
    border-top: 1px solid var(--line);
}
.mini-cart-actions .btn { justify-content: center; padding: 11px 16px; font-size: 11px; }

/* ── Nav bar ── */
.header-nav { background: var(--maroon); }
.header-nav .container { display: flex; align-items: stretch; }
.nav-menu { display: flex; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 13px 14px;
    color: rgba(255,255,255,.88);
    font-size: 13px; font-weight: 600; letter-spacing: .03em;
    white-space: nowrap; transition: color .2s; position: relative; text-decoration: none;
}
.nav-menu > li > a svg {
    opacity: .7;
    flex-shrink: 0;
    transition: opacity .2s;
}
.nav-menu > li > a:hover svg,
.nav-menu > li.current-menu-item > a svg { opacity: 1; }
.nav-menu > li > a::after {
    content: ''; position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px; background: #fff;
    transition: left .22s ease, right .22s ease;
    border-radius: 3px 3px 0 0;
}
.nav-menu > li > a:hover { color: #fff; }
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after { left: 0; right: 0; }
.nav-menu > li.current-menu-item > a { color: #fff; }
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a { color: var(--maroon); }
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after { left: 0; right: 0; opacity: 1; }

/* ── New Arrivals animated nav item ── */
.nav-new-arrival {
    margin-left: auto;
}
.nav-new-arrival > a {
    color: #fff !important;
}
.nav-new-arrival > a svg {
    color: #fbbf24;
    opacity: 1 !important;
    animation: navStarSpin 4s ease-in-out infinite;
}
@keyframes navStarSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25%       { transform: rotate(20deg) scale(1.15); }
    75%       { transform: rotate(-20deg) scale(1.15); }
}
.nav-badge {
    display: inline-flex;
    align-items: center;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .06em;
    border-radius: 4px;
    padding: 2px 5px;
    line-height: 1;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.nav-badge-new {
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(224,55,16,.6);
    animation: navBadgePulse 2s ease-out infinite;
}
@keyframes navBadgePulse {
    0%   { box-shadow: 0 0 0 0 rgba(224,55,16,.6); }
    70%  { box-shadow: 0 0 0 6px rgba(224,55,16,0); }
    100% { box-shadow: 0 0 0 0 rgba(224,55,16,0); }
}
/* Shimmer sweep across the link text */
.nav-new-arrival > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: navShimmer 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: 4px;
}
@keyframes navShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Departments button */
.nav-departments > a.nav-dept-btn {
    background: rgba(255,255,255,.18); border-radius: 6px;
    margin: 7px 6px 7px 0; padding: 7px 14px; font-weight: 700;
}
.nav-departments > a.nav-dept-btn:hover { background: rgba(255,255,255,.28); }
.nav-departments > a.nav-dept-btn::after { display: none; }
.dept-arrow { transition: transform .2s; }
.nav-departments:hover .dept-arrow { transform: rotate(180deg); }

/* Departments mega menu */
.dept-mega {
    display: none;
    position: absolute; top: 100%; left: 0;
    width: 700px; background: #fff;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,.15);
    z-index: 9999; padding: 16px;
    grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.nav-departments:hover .dept-mega { display: grid; }
.dept-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px;
    text-decoration: none; color: var(--ink);
    font-size: 13px; font-weight: 500; transition: background .12s, color .12s;
}
.dept-item:hover { background: #fdf5f7; color: var(--maroon); }
.dept-item img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; border-radius: 4px; }
.dept-item-ph { font-size: 20px; flex-shrink: 0; }

/* Regular nav dropdown */
.nav-menu .sub-menu {
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 220px; background: #fff;
    border-top: 3px solid var(--red);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-l); z-index: 9999; padding: 6px 0;
}
.nav-menu > li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu li a {
    display: block; padding: 9px 18px;
    font-size: 13px; color: var(--ink); transition: background .1s, color .1s;
}
.nav-menu .sub-menu li a:hover { background: var(--bg2); color: var(--maroon); }


/* ══════════════════════════════════════════════
   MOBILE HEADER  (≤ 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .header-top { display: none; }

    /* ── Mobile header: 2 rows
       Row 1: Logo | Delivery icon | Icons (pushed right)
       Row 2: Search bar full width
    ── */
    .header-main {
        height: auto;
        padding: 10px 14px;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        border-bottom: 3px solid var(--red);
    }

    .site-logo { order: 1; flex-shrink: 0; }
    .site-logo img { height: 34px; }

    /* Icons — all hidden on mobile (bottom nav handles Home/Shop/Cart/Account) */
    .header-icons { display: none; }

    /* Delivery widget: full desktop style, pushed to far right */
    .delivery-widget { order: 2; flex-shrink: 0; margin-left: auto; }
    .delivery-text  { display: flex; }
    .delivery-arrow { display: block; }
    .delivery-btn {
        padding: 8px 14px;
        gap: 10px;
        border-radius: 10px;
        background: #f7f0f3;
        border-color: var(--maroon);
    }
    .delivery-btn > svg:first-child { width: 20px; height: 20px; }

    /* Delivery panel opens rightward-anchored on mobile */
    .delivery-panel { left: auto; right: 0; width: 290px; }

    /* Search: full-width row 2 */
    .header-search-wrap { order: 3; width: 100%; flex-basis: 100%; }
    .header-search-form { height: 44px; }
    .search-cat-wrap  { display: none; }
    .search-divider   { display: none; }
    .search-submit-btn { border-radius: 0 50px 50px 0; }

    /* Nav: horizontally scrollable */
    .header-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .header-nav::-webkit-scrollbar { display: none; }
    .nav-menu > li > a { padding: 10px 13px; font-size: 12px; }
    .nav-menu .sub-menu { display: none !important; }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cat-card { padding: 14px 8px; }
    .cat-card img, .cat-all-icon { width: 70px !important; height: 70px !important; }
}


/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   HERO — Creative split layout
   ══════════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, var(--maroon) 0%, #2a0c1a 55%, #1a0510 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(224,55,16,.18);
    top: -120px; right: 200px;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 350px; height: 350px;
    background: rgba(88,24,51,.4);
    bottom: -80px; left: -60px;
    animation: orbFloat 11s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 250px; height: 250px;
    background: rgba(224,55,16,.1);
    top: 50%; right: 80px;
    animation: orbFloat 7s ease-in-out infinite 2s;
}
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 40px;
    align-items: center;
}

/* LEFT: content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}

.hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 24px;
}
.hero-headline em {
    font-style: normal;
    color: var(--red);
    display: block;
}

.hero-desc {
    font-size: clamp(14px, 1.4vw, 16px);
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 4px 20px rgba(224,55,16,.4);
}
.hero-btn-primary:hover {
    background: #c42e0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(224,55,16,.5);
    color: #fff;
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s;
    backdrop-filter: blur(6px);
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.hero-btn-print {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(192,57,43,.15);
    color: #f87171;
    border: 1.5px solid rgba(192,57,43,.45);
    border-radius: 6px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
    backdrop-filter: blur(6px);
}
.hero-btn-print:hover {
    background: rgba(192,57,43,.3);
    border-color: rgba(192,57,43,.8);
    color: #fff;
}

/* ── Print & Promo mini graphic strip ── */
.hero-print-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 12px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-left: 3px solid var(--red);
    border-radius: 8px;
    backdrop-filter: blur(6px);
    animation: heroOptIn .5s .6s ease both;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .18s, border-color .18s;
}
.hero-print-strip:hover {
    background: rgba(192,57,43,.08);
    border-color: rgba(192,57,43,.5);
}
.hero-print-strip:hover .hps-arrow {
    background: var(--red);
    color: #fff;
    transform: translateX(2px);
}
.hps-printer { flex-shrink: 0; }
/* Animated scan line */
.hps-scan {
    animation: hpsScan 1.8s ease-in-out infinite;
    transform-origin: left center;
}
@keyframes hpsScan {
    0%,100% { opacity: 1; transform: translateX(0); }
    50%      { opacity: .5; transform: translateX(4px); }
}
/* Output paper slides down */
.hps-out {
    animation: hpsPaper 2.4s ease-in-out infinite;
}
@keyframes hpsPaper {
    0%,40%  { transform: translateY(0); opacity: 1; }
    80%,100% { transform: translateY(4px); opacity: .6; }
}
/* Status light blink */
.hps-light { animation: hpsLight 1.6s ease-in-out infinite; }
@keyframes hpsLight {
    0%,100% { opacity: .8; }
    50%      { opacity: .3; }
}
/* CMYK dots */
.hps-cmyk {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
}
.hps-dot {
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    animation: hpsDotPop .4s ease both;
}
.hps-dot:nth-child(1) { animation-delay: .7s; }
.hps-dot:nth-child(2) { animation-delay: .82s; }
.hps-dot:nth-child(3) { animation-delay: .94s; }
.hps-dot:nth-child(4) { animation-delay: 1.06s; }
@keyframes hpsDotPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.hps-text { flex: 1; min-width: 0; }
.hps-text strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.hps-text span {
    display: block;
    font-size: 10.5px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hps-arrow {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(192,57,43,.2);
    border: 1px solid rgba(192,57,43,.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.hps-arrow:hover {
    background: var(--red);
    color: #fff;
    transform: translateX(2px);
}
@media (max-width: 600px) {
    .hero-print-strip { display: none; }
}

.hero-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.htrust-pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 6px 12px;
}

/* RIGHT: visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-svg-wrap {
    width: 100%;
    max-width: 420px;
    animation: heroRotate 30s linear infinite;
}
@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.hero-svg { width: 100%; height: auto; }

/* Floating stat cards */
.hero-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    animation: floatCard 5s ease-in-out infinite;
}
.hero-stat-1 { top: 10%; left: -20px; animation-delay: 0s; }
.hero-stat-2 { bottom: 18%; right: -10px; animation-delay: 1.8s; }
.hero-stat-3 { top: 55%; left: -10px; animation-delay: 3.2s; }
.hero-stat-4 { top: 30%; right: -14px; animation-delay: 2.6s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.hstat-icon { font-size: 24px; }
.hstat-num  { font-family: 'Barlow Condensed',sans-serif; font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.hstat-label { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }

/* Live dot on SAM.gov stat */
.hstat-live-dot {
    display: block;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: heroLivePulse 2s ease-out infinite;
}
@keyframes heroLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── Hero Option Chips ── */
.hero-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin: 18px 0 20px;
}
.hero-opt {
    display: flex;
    align-items: center;
    gap: 11px;
    opacity: 0;
    animation: heroOptIn .5s ease forwards;
}
.hero-opt:nth-child(1) { animation-delay: .15s; }
.hero-opt:nth-child(2) { animation-delay: .28s; }
.hero-opt:nth-child(3) { animation-delay: .41s; }
.hero-opt:nth-child(4) { animation-delay: .54s; }
@keyframes heroOptIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-opt-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    transition: background .2s, transform .2s, border-color .2s;
}
.hero-opt:hover .hero-opt-icon {
    background: rgba(192,57,43,.18);
    border-color: rgba(192,57,43,.4);
    transform: scale(1.12);
}
.hero-opt strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: .01em;
}
.hero-opt > div > span {
    display: block;
    font-size: 10.5px;
    color: rgba(255,255,255,.48);
    line-height: 1.35;
    margin-top: 1px;
}

/* ── Sonar / radar rings ── */
.hero-sonar {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.hero-sonar-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.5);
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 1.5px solid rgba(192,57,43,.45);
    animation: heroSonar 2.7s ease-out infinite;
    animation-delay: var(--sd, 0s);
}
@keyframes heroSonar {
    0%   { transform: translate(-50%, -50%) scale(.5); opacity: .9; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Tape shimmer on the SVG box */
.hero-tape { animation: heroTapeShimmer 3s ease-in-out infinite; }
@keyframes heroTapeShimmer {
    0%, 100% { opacity: .7; }
    50%       { opacity: 1; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; padding: 50px 24px; gap: 36px; }
    .hero-visual { min-height: 320px; }
    .hero-svg-wrap { max-width: 300px; }
    .hero-stat-1 { top: 5%; left: 5%; }
    .hero-stat-2 { bottom: 5%; right: 5%; }
    .hero-stat-3 { display: none; }
    .hero-stat-4 { display: none; }
    .hero-options { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-print-strip { display: none; }
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════
   CATEGORY STRIP
   ══════════════════════════════════════════════ */
.cat-strip {
    background: var(--bg2);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.cat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    transition: border-color .15s, transform .15s, box-shadow .15s;
    cursor: pointer;
    text-decoration: none; color: var(--ink);
}
.cat-card:hover { border-color: var(--maroon); transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-card .cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-card .cat-name { font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--ink); }
.cat-card .cat-count{ font-size: 11px; color: var(--muted); margin-top: 2px; }

.cat-card-all { background: var(--maroon); border-color: var(--maroon); justify-content: center; }
.cat-card-all:hover { background: #6e1f3f; border-color: #6e1f3f; }
.cat-card-all .cat-name  { color: #fff; font-size: 13px; }
.cat-card-all .cat-count { color: rgba(255,255,255,.7); }
.cat-all-icon { width: 110px; height: 110px; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 800; color: #fff; margin: 0 auto 10px; background: rgba(255,255,255,.15); border-radius: 12px; }
.cat-card-img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 10px; display: block; }


/* ══════════════════════════════════════════════
   PRODUCT GRID
   ══════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow .15s, transform .15s;
    position: relative;
}
.product-card:hover { box-shadow: var(--shadow-l); transform: translateY(-3px); }

.product-card .p-img {
    aspect-ratio: 1;
    background: var(--bg2);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card .p-img img { width: 100%; height: 100%; object-fit: cover; padding: 0; transition: transform .3s; }
.product-card:hover .p-img img { transform: scale(1.04); }
.product-card .p-img .no-img { font-size: 52px; opacity: .25; }

.product-card .p-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card .p-sku  { font-size: 11px; color: var(--muted); font-weight: 500; margin-bottom: 5px; }
.product-card .p-name {
    font-size: 12px; font-weight: 600; color: var(--ink);
    line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    max-height: calc(12px * 1.4 * 2);
    margin-bottom: 10px;
}
/* Attribute tags on product cards */
.p-attr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}
.p-attr-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--maroon);
    background: #fff;
    border: 1.5px solid rgba(88,24,51,.25);
    border-radius: 5px;
    padding: 2px 7px;
    white-space: nowrap;
    letter-spacing: .01em;
}

.product-card .p-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--maroon);
    letter-spacing: -.01em;
}
.product-card .p-price del { font-size: 14px; color: var(--muted); font-weight: 400; margin-left: 4px; }

.product-card .p-footer { padding: 0 14px 14px; }

/* Option B — Side by side, taller row */
.p-footer-row {
    display: flex; align-items: stretch; gap: 6px;
    height: 42px;
}
.p-qty-row {
    display: flex; align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
    flex: 1;
    height: 42px;
}
.p-qty-btn {
    background: var(--bg2); color: var(--ink);
    border: none; cursor: pointer;
    width: 30px; min-width: 30px;
    font-size: 17px; font-weight: 400; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background .12s, color .12s;
    user-select: none; flex-shrink: 0;
    padding: 0;
}
.p-qty-btn:hover { background: var(--maroon); color: #fff; }
.p-qty-input {
    flex: 1; min-width: 0;
    border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
    text-align: center;
    font-size: 13px; font-weight: 600; color: var(--ink);
    background: #fff;
    -moz-appearance: textfield;
    padding: 0; height: 100%;
}
.p-qty-input::-webkit-inner-spin-button,
.p-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.p-qty-input:focus { outline: none; background: #fafafa; }

.p-atc {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--maroon-g); color: #fff;
    border: none; border-radius: 3px;
    padding: 0; margin: 0;
    text-decoration: none;
    cursor: pointer; transition: background .15s, transform .12s;
}
.p-atc:hover { background: var(--maroon-g-hover); color: #fff; transform: scale(1.06); }
.p-atc.added { background: #1a6e1a; }
.p-atc.out {
    display: flex; align-items: center; justify-content: center;
    flex: 1; height: 42px; width: auto;
    background: var(--bg3); color: var(--muted); cursor: default;
    font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}

/* ATC spinner */
@keyframes atcSpin { to { transform: rotate(360deg); } }
.atc-spin { animation: atcSpin .7s linear infinite; display: block; }

/* Cart swish on ball landing */
@keyframes cartSwish {
    0%   { transform: scale(1)    rotate(0deg); }
    20%  { transform: scale(1.5)  rotate(-14deg); }
    45%  { transform: scale(0.85) rotate(7deg); }
    65%  { transform: scale(1.15) rotate(-3deg); }
    85%  { transform: scale(0.96) rotate(1deg); }
    100% { transform: scale(1)    rotate(0deg); }
}
.cart-swish { animation: cartSwish .6s ease; }

/* ATC Toast */
#atc-toast {
    position: fixed; bottom: 32px; left: 50%;
    transform: translateX(-50%) translateY(16px) scale(0.92);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    padding: 13px 24px 13px 18px;
    border-radius: 50px;
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(22,163,74,.45), 0 2px 8px rgba(0,0,0,.15);
    opacity: 0; pointer-events: none;
    transition: opacity .25s cubic-bezier(.34,1.56,.64,1), transform .25s cubic-bezier(.34,1.56,.64,1);
    z-index: 99999; white-space: nowrap;
    border: 1.5px solid rgba(255,255,255,.2);
    letter-spacing: .01em;
}
#atc-toast svg { flex-shrink: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,.2)); }
#atc-toast.atc-toast-show { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
#atc-toast.atc-toast-error {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 8px 32px rgba(220,38,38,.4), 0 2px 8px rgba(0,0,0,.15);
}

/* Badges */
.p-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--red); color: #fff;
    font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 2px;
}
.p-badge.new { background: var(--navy); }


/* ══════════════════════════════════════════════
   SHOP PAGE (ARCHIVE)
   ══════════════════════════════════════════════ */
.shop-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
}
@media (max-width: 900px) { .shop-wrap { grid-template-columns: 1fr; } }

.shop-sidebar { position: sticky; top: calc(var(--header-h) + 16px); }

/* ── Mobile sidebar: collapsible ── */
@media (max-width: 900px) {
    .shop-sidebar {
        position: static;
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 12px;
        overflow: hidden;
    }

    /* Toggle button shown only on mobile */
    .sidebar-toggle-btn {
        display: flex; align-items: center; justify-content: space-between;
        width: 100%; padding: 14px 18px;
        background: #fdf5f7; border: none; cursor: pointer;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 16px; font-weight: 800;
        letter-spacing: .08em; text-transform: uppercase;
        color: var(--maroon);
    }
    .sidebar-toggle-btn svg { transition: transform .25s; flex-shrink: 0; }
    .sidebar-toggle-btn.open svg { transform: rotate(180deg); }

    /* All sidebar content hidden by default, shown when open */
    .sidebar-inner {
        display: none;
        padding: 18px 18px 4px;
    }
    .sidebar-inner.open { display: block; }
}

/* Desktop: toggle button hidden */
@media (min-width: 901px) {
    .sidebar-toggle-btn { display: none; }
    .sidebar-inner { display: block !important; }
}
.sidebar-block { margin-bottom: 28px; }
.sidebar-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--maroon);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--maroon);
    margin-bottom: 14px;
}
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-list label { display: flex; align-items: center; gap: 9px; font-size: 13px; cursor: pointer; }
.filter-list input[type="checkbox"] { accent-color: var(--maroon); width: 15px; height: 15px; flex-shrink: 0; }
.filter-count { color: var(--muted); font-size: 11px; margin-left: auto; }

/* ── Sidebar filter UI ── */
.filter-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--ink); text-decoration: none;
    padding: 4px 0; border-radius: 4px; transition: color .15s;
}
.filter-link:hover { color: var(--maroon); }
.filter-link.active { color: var(--maroon); font-weight: 700; }
.filter-link.active .filter-count { color: var(--maroon); }

/* Active filters block */
.sidebar-active-filters { background: #fdf5f7; border: 1px solid #e8c0cd; border-radius: 10px; padding: 14px; }
.active-filter-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.active-filter-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--maroon-g); color: #fff;
    font-size: 11.5px; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
    text-decoration: none; transition: background .15s;
}
.active-filter-pill:hover { background: var(--red); }
.active-filter-pill span { font-size: 14px; line-height: 1; margin-left: 2px; }
.clear-filters-btn {
    display: inline-block; font-size: 12px; font-weight: 700;
    color: var(--maroon); text-decoration: underline;
}
.clear-filters-btn:hover { color: var(--red); }

/* Price slider */
.price-filter-wrap { padding: 4px 0; }
.price-slider-track {
    position: relative; height: 6px;
    background: #e0e0e0; border-radius: 3px;
    margin: 18px 0 10px;
}
.price-slider-range {
    position: absolute; height: 100%;
    background: var(--maroon); border-radius: 3px;
}
.price-slider-track input[type="range"] {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 100%; margin: 0; padding: 0;
    -webkit-appearance: none; appearance: none;
    background: transparent; pointer-events: none;
    height: 6px;
}
.price-slider-track input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%; background: var(--maroon);
    border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2);
    cursor: pointer; pointer-events: auto;
}
.price-slider-track input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--maroon); border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.2); cursor: pointer; pointer-events: auto;
}
.price-labels {
    display: flex; justify-content: space-between;
    font-size: 13px; font-weight: 600; color: var(--ink);
    margin-bottom: 10px;
}
.price-apply-btn {
    display: inline-block; width: 100%; text-align: center;
    background: var(--maroon-g); color: #fff;
    font-size: 13px; font-weight: 700; padding: 9px;
    border-radius: 8px; text-decoration: none;
    transition: filter .15s;
}
.price-apply-btn:hover { background: var(--red); color: #fff; }

/* Availability / checkmark filters */
.filter-check {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; color: var(--ink);
    text-decoration: none; padding: 3px 0;
    transition: color .15s;
}
.filter-check:hover { color: var(--maroon); }
.filter-check.active { color: var(--maroon); font-weight: 700; }
.fcheck-box {
    width: 16px; height: 16px; flex-shrink: 0;
    border: 2px solid #ccc; border-radius: 4px;
    display: inline-block; transition: border-color .15s, background .15s;
    background: #fff; position: relative;
}
.filter-check.active .fcheck-box {
    background: var(--maroon); border-color: var(--maroon);
}
.filter-check.active .fcheck-box::after {
    content: ''; position: absolute;
    left: 3px; top: 1px; width: 7px; height: 4px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* Rating filter */
.filter-rating {
    display: flex; align-items: center; gap: 4px;
    font-size: 13px; text-decoration: none; color: var(--ink);
    padding: 3px 0; transition: color .15s;
}
.filter-rating:hover { color: var(--maroon); }
.filter-rating.active { font-weight: 700; }
.star { color: #ddd; font-size: 15px; line-height: 1; }
.star.filled { color: #f4a800; }
.rating-label { font-size: 12px; color: var(--muted); margin-left: 4px; }
.filter-rating.active .rating-label { color: var(--maroon); }

/* Tag cloud */
.tag-cloud-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
    display: inline-block; font-size: 12px; font-weight: 500;
    padding: 4px 10px; border-radius: 20px;
    border: 1.5px solid var(--line); color: var(--ink);
    text-decoration: none; background: #fff;
    transition: border-color .15s, background .15s, color .15s;
}
.tag-pill:hover { border-color: var(--maroon); color: var(--maroon); }
.tag-pill.active { background: var(--maroon); border-color: var(--maroon); color: #fff; }

.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap; gap: 10px;
}
.shop-toolbar .count { font-size: 13px; color: var(--muted); }
.sort-sel {
    padding: 8px 12px; border: 1px solid var(--line);
    border-radius: var(--radius); font-size: 13px;
    background: #fff; cursor: pointer; color: var(--ink);
}


/* ══════════════════════════════════════════════
   SINGLE PRODUCT
   ══════════════════════════════════════════════ */
.single-product-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    padding: 32px 24px;
}
@media (max-width: 768px) { .single-product-layout { grid-template-columns: 1fr; gap: 24px; } }

.sp-gallery .main-img {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg2);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.sp-gallery .main-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.sp-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.sp-thumb {
    width: 72px; height: 72px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    background: var(--bg2);
    transition: border-color .15s;
}
.sp-thumb:hover, .sp-thumb.active { border-color: var(--maroon); }
.sp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.sp-info { padding: 8px 0 24px 0; }
.sp-sku-line { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
/* Star rating row */
.sp-rating-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sp-stars { display: flex; align-items: center; gap: 1px; }
.sp-rating-num { font-size: 13px; font-weight: 700; color: #f5a623; }
.sp-rating-count { font-size: 12px; color: var(--muted); text-decoration: none; }
.sp-rating-count:hover { text-decoration: underline; color: var(--maroon); }

/* Split title */
.sp-split-title { margin-bottom: 14px; line-height: 1.15; }
.sp-title-hero { display: block; font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: var(--dark); }
.sp-title-rest { display: block; font-size: clamp(15px, 2vw, 19px); font-weight: 400; color: #555; margin-top: 4px; line-height: 1.4; }
.sp-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 800;
    color: var(--maroon); letter-spacing: -.01em;
    margin-bottom: 18px;
}
.sp-price del { font-size: 20px; color: var(--muted); font-weight: 400; margin-left: 6px; }
.sp-short { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 22px; }

.sp-atc-row { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.qty-wrap { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; height: 46px; }
.qty-wrap button { width: 40px; height: 100%; background: var(--bg2); border: none; font-size: 20px; font-weight: 700; transition: background .15s; }
.qty-wrap button:hover { background: var(--bg3); }
.qty-wrap input { width: 52px; text-align: center; border: none; outline: none; font-size: 16px; font-weight: 700; height: 100%; background: #fff; }
.sp-btn {
    flex: 1; min-width: 160px;
    background: var(--maroon-g); color: #fff;
    border: none; border-radius: 3px; height: 46px;
    font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    transition: filter .15s; cursor: pointer;
}
.sp-btn:hover { background: var(--maroon-g-hover); }

.sp-meta { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 8px; }
.sp-meta td { padding: 8px 0; border-bottom: 1px solid #f0f0f0; vertical-align: top; }
.sp-meta td:first-child { color: var(--muted); width: 110px; }
.sp-meta td:last-child  { font-weight: 500; }

/* ── Need help with this product? box ── */
.sp-help-box {
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #3d1024 0%, #581833 55%, #6e1f3f 100%);
    padding: 16px 18px 14px;
    opacity: 0;
    transform: translateY(8px);
    animation: sp-help-appear .5s ease forwards;
    animation-delay: 3s;
}
@keyframes sp-help-appear {
    to { opacity: 1; transform: translateY(0); }
}
.sp-help-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    color: #fff; letter-spacing: .01em;
    margin-bottom: 3px; line-height: 1.1;
}
.sp-help-sub {
    font-size: 12px; color: rgba(255,255,255,.6);
    line-height: 1.45; margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sp-help-btns { display: flex; gap: 8px; margin-bottom: 10px; }
.sp-help-btn {
    flex: 1; display: inline-flex;
    align-items: center; justify-content: center;
    gap: 6px; padding: 9px 12px;
    border-radius: 8px; font-size: 12px; font-weight: 700;
    text-decoration: none; transition: all .16s; white-space: nowrap;
}
.sp-help-btn--call { background: #fff; color: var(--maroon); }
.sp-help-btn--call:hover { background: var(--red); color: #fff; }
.sp-help-btn--email {
    background: rgba(255,255,255,.12); color: #fff;
    border: 1.5px solid rgba(255,255,255,.22);
}
.sp-help-btn--email:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); color: #fff; }
.sp-help-hours {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .02em;
}

/* ── Trust strip ── */
.sp-trust-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin: 14px 0 10px;
}
.sp-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-right: 1px solid var(--line);
}
.sp-trust-item:last-child { border-right: none; }
.sp-trust-item svg { color: var(--maroon); flex-shrink: 0; }
.sp-trust-item div { display: flex; flex-direction: column; line-height: 1.25; }
.sp-trust-item strong { font-size: 11.5px; font-weight: 700; color: var(--ink); }
.sp-trust-item span  { font-size: 10.5px; color: var(--muted); }

/* ── Delivery estimate ── */
.sp-delivery-est {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--mid);
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
}
.sp-delivery-est svg { color: var(--maroon); flex-shrink: 0; }
.sp-delivery-est strong { color: var(--ink); }

/* ── Auto-restock banner ── */
.sp-restock-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12.5px;
    color: #1e40af;
    margin-bottom: 10px;
}
.sp-restock-banner svg { flex-shrink: 0; color: #2563eb; }
.sp-restock-banner div { flex: 1; line-height: 1.4; }
.sp-restock-banner strong { font-weight: 700; }
.sp-restock-link {
    font-size: 11.5px; font-weight: 700;
    color: #2563eb; text-decoration: underline;
    white-space: nowrap; flex-shrink: 0;
}
.sp-restock-link:hover { color: #1d4ed8; }

/* ── GSA Sign-in banner ── */
.sp-signin-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, #581833 0%, #3d1024 100%);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.sp-signin-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sp-signin-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: .01em;
}
.sp-signin-text span {
    font-size: 11px;
    color: rgba(255,255,255,.6);
}
.sp-signin-btn {
    background: #fff;
    color: var(--maroon);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.sp-signin-btn:hover { background: var(--red); color: #fff; }

/* ── Bulk order banner ── */
.sp-bulk-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff8f0;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12.5px;
    color: #92400e;
    margin-bottom: 14px;
}
.sp-bulk-banner svg { color: #d97706; flex-shrink: 0; }
.sp-bulk-banner a { color: #b45309; font-weight: 700; text-decoration: underline; }
.sp-bulk-banner a:hover { color: #92400e; }

/* ── Product swatches ── */
.sp-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0 18px;
    padding: 14px 16px;
    background: var(--bg2);
    border-radius: 10px;
    border: 1px solid var(--line);
}
.sp-swatch-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sp-swatch-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}
.sp-swatch-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Text swatch */
.sp-swatch--text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 13px;
    border-radius: 6px;
    border: 2px solid var(--maroon);
    background: #fff;
    color: var(--maroon);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: default;
    box-shadow: 0 1px 4px rgba(88,24,51,.1);
}

/* Color swatch */
.sp-swatch--color {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--maroon);
    box-shadow: 0 0 0 2px #fff inset, 0 2px 6px rgba(0,0,0,.2);
    cursor: default;
    position: relative;
}
.sp-swatch--color[style*="#ffffff"] {
    border-color: #ccc;
    box-shadow: 0 0 0 2px #fff inset, 0 1px 4px rgba(0,0,0,.15);
}
.sp-swatch-check {
    font-size: 10px;
    color: #999;
    line-height: 1;
}

/* ── Star rating row ── */
.sp-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.sp-stars {
    display: flex;
    gap: 2px;
}
.sp-star {
    width: 16px; height: 16px;
    fill: #e0e0e0;
    flex-shrink: 0;
}
.sp-star.filled { fill: #f4a800; }
.sp-rating-count {
    font-size: 13px;
    color: var(--maroon);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

/* ── Product Tabs ── */
.sp-tabs-wrap {
    margin: 48px 0 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    overflow: hidden;
}
.sp-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--line);
    background: var(--bg2);
    overflow-x: auto;
    scrollbar-width: none;
}
.sp-tabs-nav::-webkit-scrollbar { display: none; }
.sp-tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
    margin-bottom: -1px;
}
.sp-tab-btn:hover { color: var(--maroon); }
.sp-tab-btn.active {
    color: var(--maroon);
    border-bottom-color: var(--maroon);
    background: #fff;
}
.sp-tab-badge {
    background: var(--maroon);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.sp-tab-panel { display: none; }
.sp-tab-panel.active { display: block; }

.sp-tab-content {
    padding: 32px 36px;
}
@media (max-width: 768px) { .sp-tab-content { padding: 20px; } }

/* Prose (description) */
.sp-tab-content.prose { font-size: 14px; line-height: 1.9; color: var(--mid); }
.sp-tab-content.prose h2,
.sp-tab-content.prose h3 { color: var(--ink); margin: 20px 0 10px; font-size: 20px; }
.sp-tab-content.prose p  { margin-bottom: 14px; }
.sp-tab-content.prose ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }

/* Additional information table */
.sp-attrs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.sp-attrs-table tr:nth-child(even) { background: var(--bg2); }
.sp-attrs-table th {
    width: 200px;
    padding: 12px 16px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.sp-attrs-table td {
    padding: 12px 16px;
    color: var(--mid);
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.sp-attrs-table tr:last-child th,
.sp-attrs-table tr:last-child td { border-bottom: none; }

/* Shipping grid */
.sp-shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 640px) { .sp-shipping-grid { grid-template-columns: 1fr; } }

.sp-ship-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 22px 24px;
    transition: border-color .15s, box-shadow .15s;
}
.sp-ship-card:hover { border-color: var(--maroon); box-shadow: var(--shadow); }
.sp-ship-icon {
    width: 48px; height: 48px;
    background: rgba(88,24,51,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--maroon);
    margin-bottom: 14px;
}
.sp-ship-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px; font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}
.sp-ship-card p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
}
.sp-ship-card a { color: var(--maroon); text-decoration: underline; }

/* Reviews (WooCommerce comments) */
.sp-tab-content #reviews { margin: 0; }
.sp-tab-content .woocommerce-Reviews-title { font-size: 20px; margin-bottom: 20px; }
.sp-tab-content #comments ol.commentlist { list-style: none; margin: 0 0 24px; padding: 0; }
.sp-tab-content #comments ol.commentlist li.review { padding: 18px 0; border-bottom: 1px solid var(--line); }
.sp-tab-content #comments ol.commentlist li.review:last-child { border-bottom: none; }
.sp-tab-content .comment-text p.meta { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.sp-tab-content .comment-text .description p { font-size: 14px; color: var(--mid); line-height: 1.7; }
.sp-tab-content .star-rating { color: #f4a800; }
.sp-tab-content #review_form_wrapper { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 24px; }
.sp-tab-content #respond h3 { font-size: 18px; margin-bottom: 16px; }
.sp-tab-content .comment-form p { margin-bottom: 14px; }
.sp-tab-content .comment-form input[type="text"],
.sp-tab-content .comment-form input[type="email"],
.sp-tab-content .comment-form textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--line); border-radius: var(--radius);
    font-family: 'Inter', sans-serif; font-size: 14px;
    transition: border-color .15s;
}
.sp-tab-content .comment-form input:focus,
.sp-tab-content .comment-form textarea:focus { border-color: var(--maroon); outline: none; }
.sp-tab-content .comment-form textarea { min-height: 100px; resize: vertical; }
.sp-tab-content .form-submit input[type="submit"] {
    background: var(--maroon); color: #fff;
    border: none; border-radius: var(--radius);
    padding: 11px 28px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: background .15s;
}
.sp-tab-content .form-submit input[type="submit"]:hover { background: var(--red); }

/* Related products */
.sp-related { margin: 0 0 56px; }
.sp-related h2 { margin-bottom: 24px; }

/* ══════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════════════ */
.hp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.hp-section-head h2 { margin: 0; }
.new-arrivals-cta { text-align: center; margin-top: 32px; }

.hp-cta-banner { padding: 80px 0; }
.hp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hp-cta-inner h2 { line-height: 1.1; }

@media (max-width: 768px) {
    .hp-cta-inner { flex-direction: column; align-items: flex-start; }
    .hp-section-head { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   CERTIFICATIONS
   ══════════════════════════════════════════════ */
.certs-band {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    padding: 80px 0;
    margin-bottom: 0;
}
.certs-band h2 { text-align: center; margin-bottom: 24px; }
.certs-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cert-pill {
    display: flex; align-items: center; gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px; font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: border-color .15s, box-shadow .15s;
}
.cert-pill:hover { border-color: var(--maroon); box-shadow: var(--shadow); }
.cert-pill .ci { font-size: 16px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
#site-footer {
    background: linear-gradient(135deg, var(--maroon) 0%, #2a0c1a 55%, #1a0510 100%);
    color: rgba(255,255,255,.65);
    margin-top: 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 48px;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }

/* ── Footer support band ── */
.footer-support-band {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 56px 0;
}
.footer-support-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: center;
}
.footer-support-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}
.footer-support-headline h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.15;
}
.footer-support-headline p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
    max-width: 340px;
}
.footer-support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.fsc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.fsc-card:hover {
    background: #fff;
    border-color: rgba(88,24,51,.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88,24,51,.08);
}
.fsc-card--cta {
    border-color: rgba(220,60,30,.25);
    background: rgba(220,60,30,.04);
}
.fsc-card--cta:hover {
    background: rgba(220,60,30,.07);
    border-color: rgba(220,60,30,.45);
    box-shadow: 0 6px 24px rgba(220,60,30,.1);
}
.fsc-icon {
    width: 40px; height: 40px;
    background: rgba(88,24,51,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fsc-icon svg { stroke: var(--maroon); }
.fsc-card--cta .fsc-icon { background: rgba(220,60,30,.1); }
.fsc-card--cta .fsc-icon svg { stroke: var(--red); }
.fsc-body { flex: 1; min-width: 0; }
.fsc-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.fsc-value { display: block; font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fsc-sub { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.fsc-arrow { stroke: var(--line); flex-shrink: 0; transition: stroke .15s; }
.fsc-card:hover .fsc-arrow { stroke: var(--maroon); }
.fsc-card--cta:hover .fsc-arrow { stroke: var(--red); }
@media (max-width: 960px) {
    .footer-support-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-support-headline p { max-width: 100%; }
}
@media (max-width: 640px) {
    .footer-support-channels { grid-template-columns: 1fr; }
}

.footer-brand .f-logo { margin-bottom: 20px; }
.footer-brand .f-logo img { height: 56px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 12px; }
.footer-brand a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-brand a:hover { color: #fff; }

/* Contact rows with SVG icons */
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-contact-row {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6;
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 3px; stroke: rgba(255,255,255,.4); }
.footer-contact-row a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-contact-row a:hover { color: #fff; }

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }

/* Certification badge grid */
.footer-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.footer-cert-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    padding: 7px 9px;
    transition: background .15s, border-color .15s;
}
.footer-cert-badge:hover {
    background: rgba(74,197,120,.08);
    border-color: rgba(74,197,120,.25);
}
.footer-cert-check {
    width: 18px; height: 18px;
    background: rgba(74,197,120,.15);
    border: 1px solid rgba(74,197,120,.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-cert-check svg { stroke: #4ac578; }
.footer-cert-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    line-height: 1.3;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 0;
}
.footer-bottom .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════ */
.breadcrumbs {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    font-size: 12px; color: var(--muted);
    padding: 14px 0;
}
.breadcrumbs a { color: var(--muted); transition: color .15s; }
.breadcrumbs a:hover { color: var(--maroon); }
.breadcrumbs .sep { opacity: .45; font-size: 14px; }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* ══════════════════════════════════════════════
   BADGES / NOTICES
   ══════════════════════════════════════════════ */
.badge { display: inline-block; padding: 3px 10px; border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-sale    { background: var(--red);   color: #fff; }
.badge-new     { background: var(--maroon);  color: #fff; }
.badge-stock   { background: #1a6e1a;      color: #fff; }
.badge-out     { background: var(--bg3);   color: var(--muted); }

.notice { padding: 13px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.notice-success { background: #e8f5e9; color: #1a6e1a; border-left: 4px solid #1a6e1a; }
.notice-error   { background: #ffeef0; color: #c0392b; border-left: 4px solid #c0392b; }
.notice-info    { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }

/* ══════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════ */
.yes-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 40px 0;
}
.yes-pagination a,
.yes-pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 3px; font-size: 13px; font-weight: 700;
    border: 1px solid var(--line); color: var(--ink);
    transition: all .15s;
}
.yes-pagination a:hover { background: var(--maroon-g); color: #fff; border-color: transparent; }
.yes-pagination .current { background: var(--maroon-g); color: #fff; border-color: transparent; }

/* ══════════════════════════════════════════════
   WOOCOMMERCE RESETS
   ══════════════════════════════════════════════ */
.woocommerce ul.products { margin: 0 !important; padding: 0 !important; display: contents !important; }
.woocommerce ul.products li.product { float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce .button, .woocommerce button.button, .woocommerce input.button {
    background: var(--maroon-g) !important; color: #fff !important;
    border-radius: 3px !important; font-weight: 700 !important;
    border: none !important; font-family: 'Inter', sans-serif !important;
    font-size: 12px !important; letter-spacing: .06em !important; text-transform: uppercase !important;
}
.woocommerce .button:hover { background: var(--maroon-g-hover) !important; }
.woocommerce-notices-wrapper { padding: 0 0 16px; }

/* ══════════════════════════════════════════════
   HP CTA BANNERS
   ══════════════════════════════════════════════ */
.hp-cta-banner { padding: 80px 0; }
.hp-cta-banner--maroon { background: var(--maroon); }
.hp-cta-banner--dark   { background: var(--ink); }
.hp-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.hp-cta-text .eyebrow { color: rgba(255,255,255,.6); }
.hp-cta-text h2 { color: #fff; margin: 8px 0 12px; font-size: clamp(24px,3.5vw,38px); }
.hp-cta-text p  { color: rgba(255,255,255,.75); max-width: 520px; font-size: 15px; line-height: 1.7; margin: 0; }
.hp-cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
@media (max-width: 768px) {
    .hp-cta-inner { flex-direction: column; gap: 28px; }
    .hp-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════
   WHY YES SECTION
   ══════════════════════════════════════════════ */
.why-yes-section { background: var(--bg2); padding: 80px 0; }
.why-yes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-yes-title { margin-bottom: 20px; }
.why-yes-desc { color: var(--mid); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.why-yes-features { display: flex; flex-direction: column; gap: 14px; }
.why-yes-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-yes-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-yes-feature-title { font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.why-yes-feature-desc  { font-size: 13px; color: var(--muted); }
.why-yes-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.why-yes-card {
    background: var(--maroon);
    border-radius: var(--radius-l);
    padding: 40px;
    color: #fff;
}
.why-yes-card h3 { color: #fff; font-size: 28px; margin-bottom: 24px; line-height: 1.2; }
.why-yes-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-yes-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 800;
    color: var(--red); line-height: 1;
}
.why-yes-stat-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; }
@media (max-width: 860px) { .why-yes-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section { background: #fff; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testi-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow .2s, transform .2s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(88,24,51,.10); transform: translateY(-2px); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { flex-shrink: 0; }
.testi-quote { font-size: 15px; line-height: 1.7; color: var(--dark); flex: 1; }
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--maroon);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.testi-name  { font-size: 13px; font-weight: 700; color: var(--dark); }
.testi-role  { font-size: 12px; color: var(--muted); margin-top: 1px; }
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   CERTIFICATIONS BAND
   ══════════════════════════════════════════════ */
.certs-band-title { text-align: center; margin-bottom: 24px; }
.certs-band-eyebrow { text-align: center; display: block; }
.certs-band-cta { text-align: center; margin-top: 32px; }

/* Section background utilities */
.section-bg-white { background: #fff; }
.section-bg-light { background: var(--bg2); }

/* ══════════════════════════════════════════════
   HERO MOSAIC  (matches supply.yes-ontheway.com)
   ══════════════════════════════════════════════ */

/* old hero-mosaic hidden — replaced by mosaic-slider */
.hero-mosaic { display: none; }

/* ══════════════════════════════════════════════
   MOSAIC SLIDER BANNER
   ══════════════════════════════════════════════ */
.mosaic-slider {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0;        /* collapse any inline whitespace */
    line-height: 0;
}

.mosaic-bg {
    position: absolute;
    inset: -10%;         /* oversized so pan never shows edges */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroSlide 30s linear infinite;
    will-change: transform;
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88,24,51,.82) 0%, rgba(26,5,16,.7) 60%, rgba(0,0,0,.5) 100%);
    z-index: 1;
}

.mosaic-track {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 440px;           /* fixed height — no overflow from stacked slides */
}

.mosaic-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: none;
    padding: 40px 20px;
}
.mosaic-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
/* Per-slide background image (e.g. print promo slide) */
.mosaic-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.mosaic-slide-img + .mosaic-content { position: relative; z-index: 1; }
.mosaic-slide.exit-left {
    opacity: 0;
    transform: translateX(-60px);
}

.mosaic-content {
    text-align: center;
    max-width: 680px;
    width: 100%;
    padding: 0 20px;
}

.mosaic-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 14px;
}

.mosaic-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.mosaic-sub {
    font-size: 16px;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mosaic-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dots navigation */
.mosaic-dots {
    display: none;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.mosaic-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.mosaic-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Full-bleed mosaic image background */
.hero-mosaic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Centered white card */
.hero-card {
    position: relative;
    z-index: 1;
    background: #fffef9;
    border-radius: 16px;
    padding: 52px 56px;
    max-width: 620px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
}

.hero-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.0;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 680px) {
    .hero-card { padding: 36px 24px; }
    .hero-title { font-size: 34px; }
    .hero-btns  { flex-direction: column; align-items: stretch; }
    .btn-hero-red, .btn-hero-outline { text-align: center; }
}

/* ══════════════════════════════════════════════
   HERO MOSAIC — Smooth infinite slide pan
   ══════════════════════════════════════════════ */

@keyframes heroSlide {
    from { transform: scale(1.3) translateX(15%); }
    to   { transform: scale(1.3) translateX(-15%); }
}

.hero-mosaic-bg {
    animation: heroSlide 30s linear infinite;
    will-change: transform;
}

/* ══════════════════════════════════════════════
   SPOTLIGHT SECTIONS — Walmart-style image + products
   ══════════════════════════════════════════════ */

.hp-spotlight {
    padding: 80px 0;
}

.spotlight-wrap {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 16px;
    align-items: stretch;   /* card fills full height of the products grid */
}

.spotlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;      /* enough for 2 product rows */
    height: 100%;           /* stretch to match products grid */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: none;
    transition: transform .2s;
}
.spotlight-card:hover { transform: translateY(-3px); }

.spotlight-bg-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 88%;
    height: 68%;
    object-fit: contain;
    object-position: bottom right;
    transition: transform .4s ease;
    opacity: .9;
}
.spotlight-card:hover .spotlight-bg-img { transform: scale(1.05); }

/* No overlay needed — bg color fills the card */
.spotlight-card::after {
    content: none;
}

.spotlight-card-body {
    position: relative;
    z-index: 2;
    padding: 28px 22px 0;
}

.spotlight-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: .7;
}

.spotlight-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 10px;
    color: inherit;
}

.spotlight-tagline {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px;
    opacity: .8;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--maroon);
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .15s, color .15s;
}
.spotlight-card:hover .spotlight-btn {
    background: var(--red);
    color: #fff;
}

.spotlight-from {
    margin-top: 18px;
    font-size: 11px;
    opacity: .65;
    line-height: 1.3;
}
.spotlight-from strong {
    font-size: 22px;
    font-weight: 800;
    display: block;
    opacity: 1;
    color: #fff;
    margin-top: 2px;
}

/* Right side: 4 cols × 2 rows */
.spotlight-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-content: start;
}

/* Compact product cards inside spotlight */
.spotlight-products .product-card {
    border-radius: 10px;
    height: 100%;
}

/* Smaller image area */
.spotlight-products .product-card .p-img {
    aspect-ratio: 1 / 0.85 !important;
}
.spotlight-products .product-card .p-img img {
    padding: 0 !important;
}

/* Tighter body */
.spotlight-products .product-card .p-body {
    padding: 10px 10px 6px !important;
}
.spotlight-products .product-card .p-sku {
    font-size: 10px !important;
    margin-bottom: 3px !important;
}
.spotlight-products .product-card .p-name {
    font-size: 12px !important;
    -webkit-line-clamp: 2 !important;
    margin-bottom: 6px !important;
}
.spotlight-products .product-card .p-price {
    font-size: 17px !important;
}

/* Slim Add to Cart */
.spotlight-products .product-card .p-footer {
    padding: 0 10px 10px !important;
}
.spotlight-products .product-card .p-footer-row {
    height: 32px !important;
    gap: 4px !important;
}
.spotlight-products .product-card .p-qty-row {
    height: 32px !important;
    width: 76px !important;
}
.spotlight-products .product-card .p-qty-btn {
    width: 24px !important; min-width: 24px !important;
    font-size: 14px !important;
}
.spotlight-products .product-card .p-qty-input {
    font-size: 11px !important;
}
.spotlight-products .product-card .p-atc {
    height: 32px !important;
    font-size: 9px !important;
}
.spotlight-products .product-card .p-atc {
    padding: 7px 0 !important;
    font-size: 10px !important;
    letter-spacing: .06em !important;
}

@media (max-width: 1200px) {
    .spotlight-wrap { grid-template-columns: 30% 70%; }
    .spotlight-products { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .spotlight-wrap { grid-template-columns: 1fr; }
    .spotlight-card { min-height: 280px; height: auto; }
    .spotlight-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .spotlight-products { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ══════════════════════════════════════════════
   PRODUCT CAROUSEL
   ══════════════════════════════════════════════ */

.carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.carousel-wrap {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.carousel-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.carousel-item {
    flex: 0 0 calc(14.2857% - 14px);
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.carousel-item .product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
    z-index: 2;
}
.carousel-arrow:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
    box-shadow: 0 4px 14px rgba(88,24,51,.25);
}
.carousel-arrow:disabled {
    opacity: .3;
    cursor: default;
    pointer-events: none;
}
.carousel-prev { margin-right: 10px; }
.carousel-next { margin-left: 10px; }

@media (max-width: 1100px) {
    .carousel-item { flex: 0 0 calc(33.333% - 11px); }
}
@media (max-width: 700px) {
    .carousel-item { flex: 0 0 calc(50% - 8px); }
}

/* ══════════════════════════════════════════════
   MOBILE STICKY BOTTOM NAV
   ══════════════════════════════════════════════ */
.mobile-bottom-nav {
    display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
    /* Push page content up so footer isn't hidden behind the nav */
    body { padding-bottom: 68px; }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -4px 20px rgba(0,0,0,.10);
        height: 62px;
        align-items: stretch;
        padding-bottom: env(safe-area-inset-bottom); /* iPhone notch support */
    }

    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: uppercase;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: color .15s;
        -webkit-tap-highlight-color: transparent;
    }

    .mbn-item svg { transition: stroke .15s; }

    .mbn-item.active,
    .mbn-item:hover { color: var(--maroon); }
    .mbn-item.active svg,
    .mbn-item:hover svg { stroke: var(--maroon); }

    /* Active indicator dot */
    .mbn-item.active::after {
        content: '';
        display: block;
        width: 4px; height: 4px;
        border-radius: 50%;
        background: var(--maroon);
        position: absolute;
        bottom: 6px;
    }

    /* Cart icon + badge */
    .mbn-cart-wrap {
        position: relative;
        display: flex; align-items: center; justify-content: center;
    }

    .mbn-badge {
        position: absolute;
        top: -7px; right: -9px;
        min-width: 17px; height: 17px;
        background: var(--red);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        padding: 0 4px;
        line-height: 1;
        border: 2px solid #fff;
    }

    .mbn-badge[hidden] { display: none; }

    .mbn-cart { color: var(--muted); }
    .mbn-cart:hover,
    .mbn-cart:focus { color: var(--maroon); }

    /* Search button tap ripple */
    .mbn-search-btn:active { background: rgba(88,24,51,.06); border-radius: 8px; }
}


/* ══════════════════════════════════════════════
   CUSTOM PRINT & PROMO — Homepage Section
   ══════════════════════════════════════════════ */

.print-promo-section {
    position: relative;
    background: #0e0408;
    overflow: hidden;
    padding: 88px 0;
}

/* Decorative blobs */
.print-promo-bg-shapes { pointer-events: none; }
.pp-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
}
.pp-shape-1 {
    width: 520px; height: 520px;
    background: var(--maroon);
    top: -160px; left: -120px;
}
.pp-shape-2 {
    width: 360px; height: 360px;
    background: var(--red);
    bottom: -100px; right: 10%;
    opacity: .12;
}
.pp-shape-3 {
    width: 260px; height: 260px;
    background: #fff;
    top: 60%; left: 40%;
    opacity: .04;
}

/* Inner layout */
.print-promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Left content ── */
.print-promo-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}
.pp-rule {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.print-promo-headline {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}
.pp-red { color: var(--red); }

.print-promo-desc {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    margin: 0 0 10px;
}
.print-promo-naics {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: .04em;
    margin: 0 0 32px;
}
.print-promo-naics strong { font-weight: 700; }

/* Services two-column list */
.print-promo-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    margin-bottom: 36px;
}
.pp-col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pp-col li { border-bottom: 1px solid rgba(255,255,255,.08); }
.pp-col li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.pp-col li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .15s, padding-left .15s;
}
.pp-col li a:hover { color: #fff; padding-left: 6px; }
.pp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    opacity: .85;
}

/* CTA buttons */
.print-promo-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s, transform .12s;
}
.pp-btn-primary:hover { background: #c0392b; transform: translateY(-1px); }
.pp-btn-ghost {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .15s;
}
.pp-btn-ghost:hover { color: #fff; }

/* ── Right visual ── */
.print-promo-visual {
    position: relative;
    height: 380px;
}

/* Main big card */
.pp-card {
    position: absolute;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    color: #fff;
}
.pp-card-main {
    width: 220px;
    padding: 28px 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
    z-index: 2;
}
.pp-card-icon { color: rgba(255,255,255,.9); }
.pp-card-lines {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}
.pp-card-lines span {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.15);
}
.pp-card-lines span:nth-child(1) { width: 100%; }
.pp-card-lines span:nth-child(2) { width: 75%; }
.pp-card-lines span:nth-child(3) { width: 50%; background: var(--red); opacity: .7; }
.pp-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

/* Satellite cards */
.pp-card-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: rgba(255,255,255,.75);
    width: 100px;
}
.pp-card-icon-sm { color: rgba(255,255,255,.7); }
.pp-card-s1 { top: 8%;  left: 2%;  }
.pp-card-s2 { top: 8%;  right: 2%; }
.pp-card-s3 { bottom: 8%; left: 8%; }

/* Floating badges */
.pp-float-badge {
    position: absolute;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.pp-float-badge       { bottom: 14%; right: 0%; }
.pp-float-badge-2     { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); bottom: 28%; right: 1%; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .print-promo-inner { grid-template-columns: 1fr; gap: 40px; }
    .print-promo-visual { height: 280px; }
    .pp-card-main { width: 180px; padding: 20px; }
}
@media (max-width: 600px) {
    .print-promo-section { padding: 60px 0; }
    .print-promo-services { grid-template-columns: 1fr; }
    .print-promo-visual { display: none; }
    .print-promo-actions { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════
   BULK ORDERS PAGE
   ══════════════════════════════════════════════ */

/* ── Shared ── */
.bulk-page { color: #1a0510; }
.bulk-red  { color: var(--red); }
.bulk-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; letter-spacing: .1em;
    color: rgba(255,255,255,.7); text-transform: uppercase;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px; padding: 5px 14px; margin-bottom: 20px;
}
.bulk-eyebrow--dark {
    color: var(--red); background: rgba(192,57,43,.08); border-color: rgba(192,57,43,.2);
}
.bulk-section-head { text-align: center; margin-bottom: 48px; }
.bulk-section-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 44px); font-weight: 900;
    color: #0e0408; margin: 0 0 12px; line-height: 1.1;
}
.bulk-section-head p { font-size: 15px; color: #666; max-width: 520px; margin: 0 auto; }
.bulk-section-head--light h2 { color: #fff; }
.bulk-section-head--light p  { color: rgba(255,255,255,.65); }

.bulk-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff; border-radius: 7px;
    padding: 14px 28px; font-size: 14px; font-weight: 700;
    letter-spacing: .03em; text-decoration: none;
    box-shadow: 0 4px 20px rgba(192,57,43,.35);
    transition: background .15s, transform .15s, box-shadow .15s;
}
.bulk-btn-primary:hover { background: #b52c1f; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,57,43,.45); color: #fff; }
.bulk-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.3); border-radius: 7px;
    padding: 14px 28px; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: background .15s, border-color .15s;
}
.bulk-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; }

/* ── Hero ── */
.bulk-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, #2a0c1a 55%, #1a0510 100%);
    color: #fff; position: relative; overflow: hidden; padding: 80px 0;
}
.bulk-hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.bulk-hero-orb-1 { width: 500px; height: 500px; background: rgba(224,55,16,.15); top: -150px; right: 100px; animation: orbFloat 9s ease-in-out infinite; }
.bulk-hero-orb-2 { width: 300px; height: 300px; background: rgba(88,24,51,.35); bottom: -80px; left: -60px; animation: orbFloat 12s ease-in-out infinite reverse; }

.bulk-hero-inner {
    display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center;
}
.bulk-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 5.5vw, 72px); font-weight: 900;
    line-height: .95; letter-spacing: -.02em; margin: 0 0 20px;
    color: #fff;
}
.bulk-hero-desc { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 460px; margin: 0 0 32px; }
.bulk-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual */
.bulk-hero-visual { position: relative; height: 360px; }
.bulk-svg { width: 100%; height: 100%; }
.bulk-tape { animation: heroTapeShimmer 3s ease-in-out infinite; }
.bulk-chip {
    position: absolute;
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px); border-radius: 12px; padding: 10px 16px;
    animation: floatCard 5s ease-in-out infinite;
}
.bulk-chip strong { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.bulk-chip span   { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 2px; }
.bulk-chip-1 { top: 8%;  left: -10px; animation-delay: 0s; }
.bulk-chip-2 { bottom: 20%; right: -10px; animation-delay: 1.8s; }
.bulk-chip-3 { top: 48%; left: -14px; animation-delay: 3.2s; }

/* ── Pricing Tiers ── */
.bulk-tiers { padding: 80px 0; background: #fff; }
.bulk-tiers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px;
}
.bulk-tier {
    position: relative;
    border: 1.5px solid #e8e0e5; border-radius: 14px; padding: 32px 24px;
    text-align: center; transition: box-shadow .2s, transform .2s;
    background: #fff;
}
.bulk-tier:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
.bulk-tier-featured {
    border-color: var(--red); background: linear-gradient(160deg, #fff 60%, rgba(192,57,43,.04));
    box-shadow: 0 4px 24px rgba(192,57,43,.15);
}
.bulk-tier-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: #fff; font-size: 10px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
    white-space: nowrap;
}
.bulk-tier-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(192,57,43,.08); display: flex; align-items: center; justify-content: center;
    color: var(--red); margin: 0 auto 16px;
}
.bulk-tier-featured .bulk-tier-icon { background: var(--red); color: #fff; }
.bulk-tier-disc {
    font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900;
    color: var(--red); line-height: 1; margin-bottom: 4px;
}
.bulk-tier-label { font-size: 13px; font-weight: 700; color: #0e0408; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.bulk-tier-qty   { font-size: 12px; color: #888; margin-bottom: 20px; }
.bulk-tier-cta {
    display: block; padding: 10px 0;
    border: 1.5px solid rgba(192,57,43,.3); border-radius: 6px;
    color: var(--red); font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .15s, color .15s;
}
.bulk-tier-cta:hover { background: var(--red); color: #fff; border-color: var(--red); }
.bulk-tier-featured .bulk-tier-cta { background: var(--red); color: #fff; border-color: var(--red); }
.bulk-tiers-note { font-size: 12px; color: #888; text-align: center; }
.bulk-tiers-note a { color: var(--red); text-decoration: underline; }

/* ── Benefits ── */
.bulk-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--maroon) 0%, #2a0c1a 55%, #1a0510 100%);
}
.bulk-benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.bulk-benefit {
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 24px; transition: background .2s;
}
.bulk-benefit:hover { background: rgba(255,255,255,.08); }
.bulk-benefit-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
    background: rgba(192,57,43,.2); border: 1px solid rgba(192,57,43,.3);
    display: flex; align-items: center; justify-content: center; color: #f87171;
}
.bulk-benefit-title { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.bulk-benefit-desc  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }

/* ── Popular Categories ── */
.bulk-cats { padding: 80px 0; background: #f9f4f7; }
.bulk-cats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bulk-cat-card {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border: 1.5px solid #e8e0e5; border-radius: 12px; padding: 18px 20px;
    text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s, transform .15s;
}
.bulk-cat-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(192,57,43,.1); transform: translateY(-2px); }
.bulk-cat-icon  { font-size: 28px; flex-shrink: 0; }
.bulk-cat-name  { font-size: 14px; font-weight: 700; color: #0e0408; display: block; }
.bulk-cat-count { font-size: 11px; color: #888; display: block; margin-top: 2px; }
.bulk-cat-arrow { margin-left: auto; color: #ccc; flex-shrink: 0; transition: color .2s, transform .2s; }
.bulk-cat-card:hover .bulk-cat-arrow { color: var(--red); transform: translateX(3px); }

/* ── Quote Form ── */
.bulk-quote { padding: 80px 0; background: #fff; }
.bulk-quote-inner { display: grid; grid-template-columns: 42fr 58fr; gap: 60px; align-items: start; }
.bulk-quote-content h2 {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900; color: #0e0408; margin: 0 0 14px;
}
.bulk-quote-content p  { font-size: 14px; color: #666; line-height: 1.7; margin: 0 0 24px; }
.bulk-quote-perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bulk-quote-perks li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #333; }
.bulk-quote-perks svg { color: var(--red); flex-shrink: 0; }

.bulk-form { display: flex; flex-direction: column; gap: 14px; }
.bulk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bulk-form-group { display: flex; flex-direction: column; gap: 5px; }
.bulk-form-group label { font-size: 12px; font-weight: 700; color: #444; letter-spacing: .04em; text-transform: uppercase; }
.bulk-form-group input,
.bulk-form-group select,
.bulk-form-group textarea {
    padding: 11px 14px; border: 1.5px solid #e0d5dc; border-radius: 7px;
    font-size: 14px; color: #1a0510; background: #fdf8fb;
    transition: border-color .15s, box-shadow .15s; font-family: inherit;
    outline: none;
}
.bulk-form-group input:focus,
.bulk-form-group select:focus,
.bulk-form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.bulk-form-group textarea { resize: vertical; }
.bulk-form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 15px; border: none; cursor: pointer; }

/* ── Certifications strip ── */
.bulk-certs {
    background: #0e0408; padding: 24px 0;
}
.bulk-certs .container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.bulk-cert-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600;
    border-radius: 50px; padding: 6px 14px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bulk-hero-inner    { grid-template-columns: 1fr; }
    .bulk-hero-visual   { display: none; }
    .bulk-tiers-grid    { grid-template-columns: repeat(2, 1fr); }
    .bulk-benefits-grid { grid-template-columns: 1fr 1fr; }
    .bulk-cats-grid     { grid-template-columns: repeat(2, 1fr); }
    .bulk-quote-inner   { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .bulk-tiers-grid    { grid-template-columns: 1fr; }
    .bulk-benefits-grid { grid-template-columns: 1fr; }
    .bulk-cats-grid     { grid-template-columns: 1fr; }
    .bulk-form-row      { grid-template-columns: 1fr; }
}

/* Hide product prices */
.price,
.woocommerce-Price-amount,
span.woocommerce-Price-amount.amount,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce .woocommerce-Price-amount.amount,
.product-price,
ins .woocommerce-Price-amount,
del .woocommerce-Price-amount,
.hicon-main,
.mini-cart-panel .woocommerce-Price-amount,
.cart-subtotal .woocommerce-Price-amount,
.order-total .woocommerce-Price-amount {
    display: none !important;
}
