/*
Theme Name: Stab Proof Store
Theme URI: https://stabproofstore.local
Author: Stab Proof Store
Description: WooCommerce theme for a stab-proof clothing shop. Editorial light UI with a measured technical aesthetic.
Version: 0.4.0
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stab-proof-store
Tags: e-commerce, woocommerce, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* === TOKENS === */
:root {
    --bg: #fafaf9;
    --bg-2: #f3f3f0;
    --surface: #ffffff;
    --border: #e5e5e2;
    --border-strong: #d4d4d0;
    --text: #0a0a0a;
    --muted: #6b7280;
    --dim: #9ca3af;
    --accent: #dc2626;
    --accent-hover: #b91c1c;
    --terminal: #16a34a;
    --amber: #d97706;
    --max-width: 1200px;
    --radius: 2px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* === RESET === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 16px; color: var(--text); }
h1 { font-size: clamp(40px, 6.5vw, 72px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 16px; }
::selection { background: var(--accent); color: #fff; }

/* === LAYOUT === */
.site-wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === TOP BANNER === */
.top-banner { background: #0a0a0a; color: #d4d4d4; border-bottom: 1px solid #1a1a1a; }
.top-banner__inner { display: flex; align-items: center; justify-content: center; gap: 28px; height: 34px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; }
.top-banner__inner::-webkit-scrollbar { display: none; }
.top-banner__sep { color: #525252; }

/* === HEADER === */
.site-header { border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 0; background: rgba(250, 250, 249, 0.92); backdrop-filter: blur(10px); z-index: 100; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-brand { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); display: inline-flex; align-items: baseline; max-height: 44px; flex-shrink: 0; }
.site-brand:hover { color: var(--text); }
.site-brand__logo { max-height: 36px; width: auto; height: auto; max-width: 200px; display: block; }
.site-brand__mark { color: var(--accent); }
.site-brand__caret { font-family: var(--font-mono); color: var(--accent); margin-left: 3px; font-weight: 500; animation: blink 1.2s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.site-nav ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.site-nav a { font-size: 14px; font-weight: 500; color: var(--muted); }
.site-nav a:hover { color: var(--text); }
.site-header__actions { display: flex; align-items: center; gap: 20px; }
.cart-link { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.cart-link:hover { color: var(--text); }
.cart-link__count { background: var(--accent); color: #fff; font-weight: 700; padding: 1px 7px; border-radius: 10px; font-size: 11px; min-width: 20px; text-align: center; line-height: 1.4; }
.burger { display: none; background: none; border: 1px solid var(--border-strong); width: 38px; height: 38px; cursor: pointer; padding: 0; align-items: center; justify-content: center; border-radius: var(--radius); }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; transition: transform .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); transition: transform .25s; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 64px 0 0 0; background: var(--bg); padding: 32px 24px; z-index: 99; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 18px 4px; font-size: 18px; color: var(--text); border-bottom: 1px solid var(--border); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; background: var(--text); color: var(--bg); font-weight: 600; border-radius: var(--radius); border: 0; cursor: pointer; font-size: 14px; letter-spacing: 0.02em; transition: background .15s, transform .15s; }
.btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-hover); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn--ghost:hover { background: var(--surface); border-color: var(--text); color: var(--text); transform: translateY(-1px); }
.btn--lg { padding: 18px 34px; font-size: 15px; }

/* === SECTION TAG (techy editorial) === */
.section-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; }
.section-tag .num { color: var(--accent); }
.section-tag .bracket { color: var(--dim); }

/* === HERO === */
.hero { position: relative; padding: 110px 0 120px; border-bottom: 1px solid var(--border); overflow: hidden; }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(10, 10, 10, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: 0 0;
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(220, 38, 38, 0.06), transparent 50%);
    pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero__eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 28px; display: inline-flex; align-items: center; gap: 10px; }
.hero__eyebrow .prompt { color: var(--accent); font-weight: 600; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .cursor { color: var(--accent); animation: blink 1.2s steps(2) infinite; font-weight: 500; font-family: var(--font-mono); font-size: 0.9em; }
.hero__lede { font-size: clamp(16px, 1.4vw, 18px); color: var(--muted); max-width: 480px; margin-bottom: 40px; line-height: 1.6; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 56px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.hero__stat .num { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
.hero__stat .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__visual { position: relative; aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-sm); }
.hero__visual::before {
    content: "";
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid var(--border);
    pointer-events: none;
}
.hero__visual-label {
    position: absolute;
    top: 28px; left: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.08em;
    z-index: 2;
    line-height: 1;
}
.hero__visual-label .bracket { color: var(--dim); margin: 0 2px; }
.hero__visual-specs {
    position: absolute;
    bottom: 28px; right: 28px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    line-height: 1;
}
.hero__visual-specs .sep { color: var(--dim); }
.hero__visual-svg { position: relative; width: 78%; max-width: 320px; }
.hero__visual-model {
    position: relative;
    width: 82%;
    height: 82%;
    max-width: 360px;
    max-height: 360px;
    background: transparent;
    --poster-color: transparent;
    --progress-bar-color: var(--accent);
    --progress-bar-height: 1px;
    --progress-mask: transparent;
    z-index: 1;
}
.hero__visual-model::part(default-progress-bar) { display: none; }
.hero__visual-progress { display: none; }

/* === TRUST STRIP === */
.trust-strip { padding: 22px 0; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust-strip__inner { display: flex; align-items: center; justify-content: center; gap: 48px; overflow-x: auto; scrollbar-width: none; }
.trust-strip__inner::-webkit-scrollbar { display: none; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; white-space: nowrap; }
.trust-item .check { color: var(--terminal); font-size: 13px; }

/* === SECTIONS === */
.section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.section--alt { background: var(--bg-2); }
.section__head { margin-bottom: 64px; max-width: 700px; }
.section__head h2 { margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0; line-height: 1.6; }

/* === FEATURED PRODUCTS === */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { display: block; transition: transform .2s; }
.product-card:hover { transform: translateY(-3px); }
.product-card:hover .product-card__title { color: var(--accent); }
.product-card__media { aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--border); position: relative; overflow: hidden; margin-bottom: 16px; transition: border-color .2s, box-shadow .2s; }
.product-card:hover .product-card__media { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__media-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; }
.product-card__title { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--text); transition: color .15s; }
.product-card__price { font-family: var(--font-mono); font-size: 13px; color: var(--muted); font-weight: 500; }
.product-card__price del { color: var(--dim); margin-right: 6px; }
.section__more { margin-top: 56px; text-align: center; }

/* === TECH === */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tech-card { padding: 0; }
.tech-card__icon { width: 32px; height: 32px; margin-bottom: 24px; color: var(--accent); }
.tech-card h3 { margin-bottom: 10px; }
.tech-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.6; }

/* === STATS === */
.stats-readout { margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat__num { font-family: var(--font-mono); font-size: clamp(26px, 3vw, 34px); font-weight: 600; color: var(--text); display: block; line-height: 1; margin-bottom: 10px; letter-spacing: -0.01em; }
.stat__lbl { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.review { padding: 0; }
.review__stars { color: var(--amber); margin-bottom: 18px; font-size: 14px; letter-spacing: 2px; }
.review__quote { color: var(--text); font-size: 16px; line-height: 1.65; margin-bottom: 22px; }
.review__author { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.review__author b { color: var(--text); font-weight: 600; }

/* === FINAL CTA === */
.cta-band { padding: 130px 0; text-align: center; position: relative; background: var(--bg-2); border-bottom: 1px solid var(--border); overflow: hidden; }
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(10, 10, 10, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 20px; font-size: clamp(32px, 5vw, 52px); }
.cta-band p { color: var(--muted); margin: 0 auto 36px; font-size: 17px; }

/* === FOOTER === */
.site-footer { padding: 80px 0 36px; color: var(--muted); font-size: 14px; background: var(--bg); border-top: 1px solid var(--border); }
.site-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.site-footer__brand { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 14px; display: inline-block; }
.site-footer__col h4 { font-family: var(--font-mono); font-size: 11px; color: var(--text); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; font-weight: 500; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer__col a { color: var(--muted); font-size: 14px; }
.site-footer__col a:hover { color: var(--text); }
.site-footer__base { padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.site-footer__base .status { color: var(--terminal); display: inline-flex; align-items: center; gap: 6px; }
.site-footer__base .status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terminal); box-shadow: 0 0 6px var(--terminal); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ========================================== */
/* === SINGLE PRODUCT PAGE === */
/* ========================================== */

.product-page { display: block; }

.product-crumbs { padding: 18px 0; font-family: var(--font-mono); font-size: 11px; color: var(--muted); border-bottom: 1px solid var(--border); letter-spacing: 0.04em; }
.product-crumbs a { color: var(--muted); }
.product-crumbs a:hover { color: var(--text); }
.product-crumbs .breadcrumb-separator { margin: 0 8px; color: var(--dim); }

.product-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; padding: 56px 0 96px; align-items: start; }

.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-gallery__img { margin: 0; aspect-ratio: 4/5; background: var(--surface); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.product-gallery__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery__img--empty { display: flex; align-items: center; justify-content: center; color: var(--dim); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }

.product-info { position: relative; }
.product-info__sticky { position: sticky; top: 100px; }
.product-info__eyebrow { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.product-info__eyebrow a { color: var(--muted); }
.product-info__eyebrow a:hover { color: var(--text); }
.product-info__title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 18px; }
.product-info__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.product-info__price { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.product-info__price del { color: var(--dim); font-weight: 400; margin-right: 10px; }
.product-info__price ins { text-decoration: none; color: var(--accent); }
.product-info__rating { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.product-info__rating .stars { color: var(--amber); letter-spacing: 2px; font-family: var(--font-sans); }
.product-info__desc { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
.product-info__desc p:last-child { margin-bottom: 0; }

.product-form { margin-bottom: 24px; }
.product-form .cart { display: flex; flex-direction: column; gap: 16px; }
.product-form table.variations { width: 100%; border-collapse: collapse; margin: 0 0 4px; }
.product-form table.variations tr { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.product-form table.variations th,
.product-form table.variations td { padding: 0; border: 0; text-align: left; }
.product-form table.variations th label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 500; }
.product-form table.variations td select { width: 100%; background: var(--surface); color: var(--text); border: 1px solid var(--border-strong); padding: 14px 16px; border-radius: var(--radius); font-size: 14px; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; }
.product-form table.variations td select:focus { outline: 0; border-color: var(--text); }
.product-form .reset_variations { display: inline-block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 6px; }
.product-form .reset_variations:hover { color: var(--text); }
.product-form .single_variation_wrap { margin-top: 8px; }
.product-form .woocommerce-variation-price { margin-bottom: 12px; font-family: var(--font-mono); color: var(--text); }
.product-form .woocommerce-variation-availability { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.product-form .stock { font-family: var(--font-mono); font-size: 11px; color: var(--terminal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.product-form .stock.out-of-stock { color: var(--accent); }

.product-form .quantity { display: inline-flex; align-items: center; }
.product-form .quantity .qty { width: 72px; background: var(--surface); color: var(--text); border: 1px solid var(--border-strong); padding: 14px 0; text-align: center; font-size: 15px; border-radius: var(--radius); font-family: var(--font-mono); }
.product-form .quantity label.screen-reader-text { position: absolute; left: -9999px; }

.product-form .cart { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
.product-form .single_add_to_cart_button {
    flex: 1; min-width: 200px;
    padding: 16px 28px; background: var(--accent); color: #fff; font-weight: 600;
    border: 0; border-radius: var(--radius); cursor: pointer;
    font-size: 15px; letter-spacing: 0.02em;
    transition: background .15s, transform .15s;
}
.product-form .single_add_to_cart_button:hover { background: var(--accent-hover); transform: translateY(-1px); }
.product-form .single_add_to_cart_button.disabled,
.product-form .single_add_to_cart_button:disabled { background: var(--bg-2); color: var(--dim); cursor: not-allowed; transform: none; }
.product-form .cart table.variations { flex-basis: 100%; }

.woocommerce-notices-wrapper { margin-bottom: 12px; }
.woocommerce-message, .woocommerce-info { background: var(--surface); border: 1px solid var(--border); padding: 14px 16px; border-radius: var(--radius); font-size: 14px; color: var(--text); margin-bottom: 12px; box-shadow: var(--shadow-sm); }

.product-perks { list-style: none; padding: 24px 0; margin: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.product-perks li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.product-perks svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--text); }

.product-accordion { margin-top: 28px; }
.product-accordion details { border-bottom: 1px solid var(--border); }
.product-accordion details:first-child { border-top: 1px solid var(--border); }
.product-accordion summary { padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.product-accordion summary::-webkit-details-marker { display: none; }
.product-accordion summary::after { content: "+"; font-size: 20px; color: var(--muted); font-weight: 400; transition: transform .25s; line-height: 1; }
.product-accordion details[open] summary::after { content: "−"; }
.product-accordion__body { padding: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-accordion__body p:last-child { margin-bottom: 0; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th, .spec-table td { padding: 12px 0; text-align: left; font-size: 13px; }
.spec-table th { color: var(--muted); font-weight: 500; width: 45%; padding-right: 16px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
.spec-table td { color: var(--text); font-family: var(--font-mono); }

.product-protection { padding: 96px 0; border-top: 1px solid var(--border); background: var(--bg-2); }
.product-protection .stats-readout { margin-top: 0; padding-top: 0; border-top: 0; }
.product-related { padding: 96px 0; border-top: 1px solid var(--border); }

.woocommerce-product-gallery { display: none; }

/* === RESPONSIVE — PRODUCT === */
@media (max-width: 960px) {
    .product-layout { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 72px; }
    .product-info__sticky { position: static; }
    .product-gallery { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; gap: 8px; margin: 0 -24px; padding: 0 24px; scrollbar-width: none; }
    .product-gallery::-webkit-scrollbar { display: none; }
    .product-gallery__img { flex: 0 0 92%; scroll-snap-align: start; aspect-ratio: 4/5; }
}
@media (max-width: 640px) {
    .product-perks { grid-template-columns: 1fr; }
    .product-form .cart { flex-direction: column; align-items: stretch; }
    .product-form .quantity { width: 100%; }
    .product-form .quantity .qty { width: 100%; }
    .product-form .single_add_to_cart_button { width: 100%; min-width: 0; }
    .product-protection, .product-related { padding: 64px 0; }
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .hero { padding: 60px 0 72px; }
    .hero__grid { grid-template-columns: 1fr; gap: 44px; }
    .hero__visual { aspect-ratio: 4/3; max-height: 360px; }
    .hero__visual-svg { width: 60%; max-width: 280px; }
    .hero__visual-label { top: 20px; left: 20px; font-size: 10px; }
    .hero__visual-specs { bottom: 20px; right: 20px; font-size: 9px; }
    .hero__visual::before { top: 14px; left: 14px; right: 14px; bottom: 14px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .tech-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats-readout { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 36px; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
    .top-banner__inner { justify-content: flex-start; gap: 18px; padding: 0 16px; }
    .top-banner { font-size: 11px; }
    .top-banner__inner { height: 36px; }
    .site-nav { display: none; }
    .burger { display: inline-flex; }
    .site-brand__logo { max-height: 32px; max-width: 140px; }
    .cart-link span:not(.cart-link__count) { display: none; }

    .hero { padding: 44px 0 52px; }
    .hero__grid { gap: 36px; }
    .hero__eyebrow { margin-bottom: 20px; font-size: 11px; letter-spacing: 0.12em; }
    .hero h1 { margin-bottom: 20px; }
    .hero__lede { font-size: 15px; margin-bottom: 28px; }
    .hero__cta { gap: 10px; margin-bottom: 36px; }
    .hero__cta .btn { flex: 1; min-width: 0; }
    .hero__stats { gap: 24px; padding-top: 24px; }
    .hero__stat .num { font-size: 18px; }
    .hero__stat .lbl { font-size: 10px; }
    .hero__visual { aspect-ratio: 4/3; max-height: 300px; }
    .hero__visual-svg { width: 58%; max-width: 240px; }

    .trust-strip { padding: 18px 0; }
    .trust-strip__inner { justify-content: flex-start; gap: 28px; padding: 0 4px; }
    .trust-item { font-size: 11px; }

    .section { padding: 64px 0; }
    .section__head { margin-bottom: 32px; }
    .section__head p { font-size: 15px; }
    .section-tag { margin-bottom: 14px; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .product-card__title { font-size: 14px; }

    .stats-readout { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 32px; margin-top: 40px; }
    .stat__num { font-size: 22px; }

    .review__quote { font-size: 15px; }

    .cta-band { padding: 64px 0; }
    .cta-band p { font-size: 15px; margin-bottom: 28px; }

    .site-footer { padding: 56px 0 24px; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
    .site-footer__base { flex-direction: column; gap: 10px; text-align: center; }
}
