/* ============================================================
   bastienvisuals.com — design system (porté depuis le handoff hi-fi)
   ============================================================ */

:root {
    --bg-0: #0a0a0b;
    --bg-1: #111114;
    --bg-2: #17171b;
    --bg-3: #1d1d22;
    --ink-0: #ededec;
    --ink-1: #a3a39e;
    --ink-2: #6b6b65;
    --ink-3: #46463f;

    --accent-green: oklch(0.64 0.12 145);
    --accent-green-soft: oklch(0.64 0.12 145 / 0.18);
    --accent-green-glow: oklch(0.64 0.12 145 / 0.35);
    --accent-amber: oklch(0.76 0.13 65);
    --accent-amber-soft: oklch(0.76 0.13 65 / 0.18);
    --accent-amber-glow: oklch(0.76 0.13 65 / 0.35);

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --border-soft: rgba(255, 255, 255, 0.04);

    --font-body: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
    --font-display: "Fraunces", "Times New Roman", serif;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --container: 1440px;
    --pad-x: 56px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-0);
    color: var(--ink-0);
    font-family: var(--font-body);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a { color: inherit; }
img, svg { max-width: 100%; display: block; }

/* grain texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNDAnIGhlaWdodD0nMjQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0nMCAwIDAgMCAxICAwIDAgMCAwIDEgIDAgMCAwIDAgMSAgMCAwIDAgMC4wNiAwJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJy8+PC9zdmc+");
    mix-blend-mode: screen;
    opacity: 0.45;
}

/* ============================================================
   Navigation
   ============================================================ */

.sitenav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px var(--pad-x);
    border-bottom: 1px solid var(--border);
}

.sitenav .logo,
.mnav .logo,
.sitefooter .logo {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: 22px;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--ink-0);
}
.sitenav .logo .dot,
.mnav .logo .dot,
.sitefooter .logo .dot { color: var(--accent-green); }

.sitenav .links {
    display: flex;
    gap: 36px;
    font-size: 13.5px;
    color: var(--ink-1);
}
.sitenav .links a {
    color: inherit;
    text-decoration: none;
    padding-bottom: 2px;
    position: relative;
    transition: color .15s ease;
}
.sitenav .links a:hover { color: var(--ink-0); }
.sitenav .links a.active { color: var(--ink-0); }
.sitenav .links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 1px;
    background: var(--ink-0);
}
.sitenav .lang {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-2);
    letter-spacing: 0.12em;
}
.sitenav .lang b { color: var(--ink-0); font-weight: 500; }

.mnav { display: none; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.mnav .logo { font-size: 17px; }
.mnav-right { display: flex; align-items: center; gap: 16px; }
.mnav .links { display: flex; gap: 18px; font-size: 12.5px; color: var(--ink-1); }
.mnav .links a { text-decoration: none; color: inherit; }
.mnav .links a.active { color: var(--ink-0); border-bottom: 1px solid var(--ink-0); padding-bottom: 2px; }
.mnav .burger {
    color: var(--ink-1); font-size: 18px; line-height: 1;
    background: transparent; border: 0; cursor: pointer; padding: 4px 8px;
}

/* ============================================================
   Footer
   ============================================================ */

.sitefooter {
    padding: 40px var(--pad-x);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    color: var(--ink-2);
    font-size: 12px;
    flex-wrap: wrap;
}
.sitefooter .logo { font-size: 18px; }
.sitefooter .socials { display: flex; gap: 20px; flex-wrap: wrap; }
.sitefooter .socials a { color: var(--ink-1); text-decoration: none; }
.sitefooter .socials a:hover { color: var(--ink-0); }
.sitefooter .fineprint {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   Buttons, chips, tags
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--ink-0);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.2;
}
.btn:hover { border-color: var(--ink-1); background: rgba(255,255,255,0.03); }
.btn.solid { background: var(--ink-0); color: var(--bg-0); border-color: var(--ink-0); }
.btn.solid:hover { background: #fff; }
.btn.green {
    background: var(--accent-green);
    color: #06120a;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0 var(--accent-green-glow);
}
.btn.green:hover { box-shadow: 0 0 22px -4px var(--accent-green-glow); }
.btn.amber {
    background: var(--accent-amber);
    color: #1e1304;
    border-color: var(--accent-amber);
}
.btn.amber:hover { box-shadow: 0 0 22px -4px var(--accent-amber-glow); }
.btn.lg { padding: 16px 26px; font-size: 14px; font-weight: 600; }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    font-size: 12px;
    color: var(--ink-1);
    font-family: var(--font-body);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all .15s ease;
}
.chip:hover { color: var(--ink-0); border-color: var(--ink-1); }
.chip.active { background: var(--ink-0); color: var(--bg-0); border-color: var(--ink-0); }

.tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}
.tag.green { background: var(--accent-green); color: #06150b; }
.tag.amber { background: var(--accent-amber); color: #1e1304; }

/* admin badge */
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px 6px 9px;
    border-radius: 999px;
    background: var(--accent-amber-soft);
    border: 1px solid oklch(0.76 0.13 65 / 0.4);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--accent-amber);
    text-transform: uppercase;
}
.admin-badge::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-amber-glow);
}

.gdot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green-glow);
}

/* ============================================================
   Typography helpers
   ============================================================ */

.eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--ink-2);
    text-transform: uppercase;
}
.display {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.015em;
    line-height: 1;
}
.mono { font-family: var(--font-mono); }
.ink-0 { color: var(--ink-0); }
.ink-1 { color: var(--ink-1); }
.ink-2 { color: var(--ink-2); }
.accent { color: var(--accent-green); }
.accent-amber { color: var(--accent-amber); }

.hr        { height: 1px; background: var(--border); border: 0; margin: 0; }
.hr-dash   { height: 0; border: 0; border-top: 1px dashed var(--border); margin: 0; }

/* placeholder image (utilisé quand pas d'image uploadée) */
.ph {
    position: relative;
    background:
        linear-gradient(180deg, var(--bg-2), var(--bg-1)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 6px, transparent 6px 12px);
    background-blend-mode: overlay;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--ink-3);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
}
.ph.bare { border: 0; border-radius: 0; }

/* wood texture (séparateurs d'ambiance) */
.wood {
    background:
        linear-gradient(90deg, rgba(0,0,0,.45) 0%, transparent 50%, rgba(0,0,0,.45) 100%),
        repeating-linear-gradient(90deg, #3a2a1c 0px, #4a3624 3px, #3a2a1c 6px, #2c2014 9px, #3a2a1c 13px, #5a402a 18px, #3a2a1c 22px),
        #2c2014;
    position: relative;
}
.wood::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(120% 60% at 30% 50%, rgba(0,0,0,.2), transparent 70%),
        radial-gradient(60% 200% at 70% 50%, rgba(255,180,90,.05), transparent 70%);
    pointer-events: none;
}
.wood.line { height: 2px; width: 100%; }

/* ============================================================
   HOME — Hero
   ============================================================ */

.hero {
    position: relative;
    padding: 84px var(--pad-x) 96px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.62) contrast(1.05);
}
.hero-bg.placeholder {
    background:
        linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 50%, var(--bg-3) 100%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.35) 50%, rgba(10,10,11,0.9) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-glow {
    position: absolute;
    left: -12%; top: -40%;
    width: 70%; height: 140%;
    background: radial-gradient(closest-side, var(--accent-green-glow), transparent 70%);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; }
.hero-title {
    margin: 0;
    font-size: clamp(56px, 11vw, 148px);
    line-height: 0.88;
    letter-spacing: -0.025em;
}
.hero-title .accent { font-style: italic; }
.hero-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 68px;
    flex-wrap: wrap;
}
.hero-foot-left { display: flex; gap: 32px; align-items: flex-end; flex-wrap: wrap; }
.hero-foot p { margin: 0; color: var(--ink-1); font-size: 16px; line-height: 1.55; max-width: 380px; }
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
    border-left: 1px solid var(--border-strong);
}
.hero-stats .label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.12em; text-transform: uppercase; }
.hero-stats .value { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 22px; line-height: 1; color: var(--ink-0); }
.hero-stats .sub { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.1em; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   HOME — Vidéos YouTube
   ============================================================ */

.section { padding: 72px var(--pad-x) 96px; }
.section.compact { padding: 60px var(--pad-x) 32px; }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    flex-wrap: wrap;
}
.section-head .left { display: flex; align-items: center; gap: 16px; }
.section-head h2 { margin: 0; font-size: 44px; }
.section-head .right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.yt-badge {
    width: 28px; height: 28px; border-radius: 5px;
    background: var(--accent-amber);
    display: inline-flex; align-items: center; justify-content: center;
    color: #1e1304; font-size: 13px; font-weight: 700;
}
.updated-label { color: var(--ink-2); font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.video-card { display: flex; flex-direction: column; gap: 10px; cursor: pointer; text-decoration: none; color: inherit; }
.video-card .thumb {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-2);
}
.video-card .thumb img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.video-card .play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
    transition: background .2s ease;
}
.video-card:hover .play { background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 100%); }
.video-card .dur {
    position: absolute;
    right: 8px; bottom: 8px;
    background: rgba(0,0,0,.7);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--ink-0);
    font-family: var(--font-mono);
}
.video-card .title { font-size: 13px; color: var(--ink-0); font-weight: 500; line-height: 1.3; }
.video-card.big .title { font-size: 15px; }
.video-card .meta { font-size: 11px; color: var(--ink-2); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ============================================================
   EQUIPMENT
   ============================================================ */

.equip-shell { display: flex; align-items: flex-start; min-height: 1200px; }

.profile-side {
    width: 320px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 0;
    align-self: flex-start;
}
.profile-side .portrait {
    width: 168px; height: 168px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    background: var(--bg-2);
}
.profile-side .portrait img { width: 100%; height: 100%; object-fit: cover; }
.profile-side .name-block { text-align: center; }
.profile-side .name { font-size: 42px; margin: 0 0 6px; }
.profile-side .name-block p { color: var(--ink-1); font-size: 13px; line-height: 1.55; margin-top: 18px; margin-bottom: 0; }

.socials-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.social-dot {
    width: 36px; height: 36px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-strong);
    color: var(--ink-1);
    font-size: 10px;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
}
.social-dot:hover { color: var(--ink-0); border-color: var(--ink-0); }
.social-dot.featured {
    border-color: var(--accent-amber);
    background: var(--accent-amber-soft);
    color: var(--accent-amber);
    box-shadow: 0 0 14px -2px var(--accent-amber-glow);
}

.beacons-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--accent-green);
    border-radius: 12px;
    background: var(--accent-green-soft);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease;
}
.beacons-link:hover { box-shadow: 0 0 20px -4px var(--accent-green-glow); }
.beacons-link .ico {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--accent-green);
    color: #06150b;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.beacons-link .label-block { flex: 1; min-width: 0; }
.beacons-link .label-block .eyebrow { font-size: 9px; color: var(--accent-green); margin-bottom: 2px; }
.beacons-link .label-block .url { font-family: var(--font-mono); font-size: 12px; color: var(--ink-0); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.stats-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    background: var(--bg-1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.stats-card .v { font-family: var(--font-mono); font-size: 18px; color: var(--ink-0); }
.stats-card .l { font-family: var(--font-mono); font-size: 9px; color: var(--ink-2); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }

.featured-video { display: block; }
.featured-video .label { margin-bottom: 10px; }
.featured-video .frame-thumb {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-2);
}
.featured-video .frame-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-video .featured-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--accent-amber);
    color: #1e1304;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.featured-video .play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.featured-video .dur {
    position: absolute; right: 8px; bottom: 8px;
    background: rgba(0,0,0,.7);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--ink-0);
    font-family: var(--font-mono);
}
.featured-video .title { font-size: 13px; margin-top: 10px; line-height: 1.4; color: inherit; text-decoration: none; display: block; }

/* main column */
.equip-main { flex: 1; padding: 44px var(--pad-x) 60px; min-width: 0; }
.equip-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    flex-wrap: wrap;
}
.equip-head h1 { font-size: 64px; margin: 0; }
.equip-head .sum { color: var(--ink-1); font-size: 14px; margin-top: 12px; max-width: 480px; }

.equip-sections { display: flex; flex-direction: column; gap: 44px; }
.equip-section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
}
.equip-section-head h3 { font-size: 28px; margin: 0; }
.equip-section-head .count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.06em; }
.equip-section-head .line { flex: 1; opacity: 1; }
/* Séparateur de section : on remplace la texture bois (oranger) par un trait
   discret #2a2a2a cohérent avec le reste du design sombre. */
.equip-section-head .line.wood {
    background: #2a2a2a;
}
.equip-section-head .line.wood::after { display: none; }

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.product-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-1);
    transition: all .15s ease;
    text-decoration: none;
    color: inherit;
}
.product-card:hover { border-color: var(--border-strong); background: var(--bg-2); }
.product-card .img {
    width: 68px; height: 68px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-2);
}
.product-card .img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { flex: 1; min-width: 0; }
.product-card .body .eyebrow { font-size: 12px; margin-bottom: 6px; color: #aaaaaa; letter-spacing: 0.14em; }
.product-card .body .name { font-size: 16px; font-weight: 500; color: var(--ink-0); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.product-card .body .note { font-size: 13px; color: #aaaaaa; line-height: 1.45; }
.product-card .arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-1);
    flex-shrink: 0;
}

.equip-footer {
    margin-top: 56px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-2);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

/* Marqueur "*" des liens d'affiliation : remplace l'amber (bois/orange posé
   en inline-style dans equipment.php) par le vert accent du site (#4a7c59).
   Scoping aux deux conteneurs spécifiques pour ne pas affecter d'autres pages. */
.equip-head .sum span[style*="accent-amber"],
.equip-footer span[style*="accent-amber"] {
    color: var(--accent-green) !important;
}

/* ============================================================
   SHOP
   ============================================================ */

.shop-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.shop-head h1 { font-size: 72px; margin: 0; }
.shop-head p { color: var(--ink-1); font-size: 15px; margin-top: 14px; max-width: 540px; }
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 32px var(--pad-x) 60px;
}
.shop-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-1);
    transition: all .2s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}
.shop-card.dark { background: var(--bg-2); }
.shop-card:hover { border-color: var(--ink-1); transform: translateY(-2px); }
.shop-card .bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
}
.shop-card .bg img { width: 100%; height: 100%; object-fit: cover; }
.shop-card .cat-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    padding: 4px 9px;
    border-radius: 6px;
    color: var(--ink-0);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.shop-card .hot {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--accent-amber);
    color: #1e1304;
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.shop-card .overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 60px 16px 16px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.85) 60%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.shop-card .name { font-size: 16px; font-weight: 500; color: var(--ink-0); margin-bottom: 2px; }
.shop-card .sub { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.shop-card .price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shop-card .price {
    font-family: var(--font-display); font-style: italic; font-weight: 300;
    font-size: 24px; color: var(--ink-0);
    background: rgba(255,255,255,0.1);
    padding: 2px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.shop-footer {
    padding: 32px var(--pad-x);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-2);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    :root { --pad-x: 32px; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-title { font-size: clamp(48px, 9vw, 96px); }
    .equip-head h1 { font-size: 48px; }
    .shop-head h1 { font-size: 52px; }
    .equip-shell { flex-direction: column; }
    .profile-side {
        width: 100%;
        position: static;
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 32px 24px;
    }
}

@media (max-width: 720px) {
    :root { --pad-x: 22px; }
    .sitenav { display: none; }
    .mnav { display: flex; }
    .hero { padding: 44px 22px 52px; }
    .hero-title { font-size: clamp(40px, 12vw, 56px); line-height: 0.96; }
    .hero-foot { margin-top: 24px; }
    .hero-foot-left { gap: 16px; }
    .hero-stats { padding-left: 0; border-left: 0; }
    .section, .section.compact { padding: 32px 22px; }
    .section-head h2 { font-size: 28px; }
    .videos-grid { grid-template-columns: 1fr; gap: 20px; }
    .equip-head h1 { font-size: 38px; }
    .equip-main { padding: 28px 22px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 12px 14px; gap: 14px; }
    .product-card .img { width: 56px; height: 56px; }
    .product-card .body .name { font-size: 14px; }
    .shop-head h1 { font-size: 38px; }
    .shop-grid { grid-template-columns: 1fr 1fr; padding: 22px; gap: 12px; }
    .sitefooter { padding: 28px 22px; flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr; }
}
