  /* Self-hosted brand type (variable woff2, latin subset). Replaces the Google Fonts link. */
  @font-face {
    font-family: "DM Sans";
    src: url("fonts/DMSans-Variable.woff2") format("woff2");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "JetBrains Mono";
    src: url("fonts/JetBrainsMono-Variable.woff2") format("woff2");
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --primary: #1D1D1F;
    --primary-hover: #000000;
    --secondary: #1D1D1F;
    --text: #1D1D1F;
    --text-muted: #6E6E73;
    --bg: #FFFFFF;
    --bg-section: #F5F5F7;
    --bg-tile: #EAEAEF;
    --border: #D2D2D7;
    --link: #1D1D1F;
    --volt: #D4FF00;  /* electric spark — micro-moments only (focus rings, cart badge, status tags). Never CTA fills. */
    --radius-pill: 2px;  /* sharp per AU streetwear field (CK/US/Thrills 0-1px) */
    --radius-card: 2px;
    --nav-height: 44px;
    --page-max: 1440px;
    --content-max: 980px;
    /* Category accent palette */
    --cat-streetwear: #2B2B2E;
    --cat-basketball: #552583;
    --cat-basketball-accent: #FDB927;
    --cat-moto: #D64C3E;
    --cat-suron: #00A3D9;
    --cat-youth: #84C23A;
    --cat-headwear: #C08B3E;
    --cat-au-streetwear: #7B6A5C;
    --cat-bags: #6B4D2A;
    --cat-grooming: #2E7D6B;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  /* UX skill: smooth in-page scroll, disabled under reduced-motion. */
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    font-family: "DM Sans", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.005em;
  }
  h1, h2, h3, h4, h5 {
    font-family: "DM Sans", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    margin: 0; letter-spacing: -0.02em; font-weight: 700; color: var(--text);
  }
  code, .mono, .nav-logo {
    font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  }
  a { color: var(--link); text-decoration: none; }
  a:hover { text-decoration: underline; }
  button { font: inherit; cursor: pointer; }

  /* Accessibility: skip link + focus-visible */
  .skip-link {
    position: absolute; top: -100px; left: 0; padding: 10px 16px;
    background: var(--primary); color: #fff; font-weight: 600; z-index: 300;
    text-decoration: none;
  }
  .skip-link:focus { top: 0; }
  :focus-visible {
    outline: 2px solid var(--volt);
    outline-offset: 2px;
    border-radius: 4px;
  }
  button:focus-visible, a:focus-visible, input:focus-visible,
  .colour-swatch:focus-visible, .pdp-size:focus-visible, .cat-chip:focus-visible {
    outline: 2px solid var(--volt);
    outline-offset: 3px;
  }

  /* Real product image container */
  .real-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(0,0,0,0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    height: var(--nav-height);
  }
  .nav-inner {
    max-width: var(--page-max); height: 100%; margin: 0 auto; padding: 0 22px;
    display: flex; align-items: center; justify-content: space-between;
    color: #F5F5F7; font-size: 12px;
  }
  .nav-logo {
    font-family: "SF Pro Display","Helvetica Neue",sans-serif;
    font-size: 18px; font-weight: 800; letter-spacing: 0.18em; color: #F5F5F7;
    cursor: pointer; user-select: none;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
  .nav-links li { cursor: pointer; opacity: 0.82; transition: opacity 0.18s; position: relative; }
  .nav-links li:hover { opacity: 1; }
  /* Top-level category anchors: crawlable/keyboard-operable but visually identical to the old li text */
  .nav-cat-link, .nav-cat-link:hover { color: inherit; text-decoration: none; }
  /* UX skill: highlight the active category in nav (active-state HIGH for orientation). */
  .nav-links li.nav-current { opacity: 1; }
  .nav-links li.nav-current::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: #F5F5F7;
  }
  .nav-right { display: flex; gap: 18px; align-items: center; font-size: 12px; cursor: pointer; }
  .bag-count {
    font-size: 10px; background: var(--volt); color: #1D1D1F;
    border-radius: 50%; width: 18px; height: 18px; display: inline-flex;
    align-items: center; justify-content: center; margin-left: 4px;
  }

  /* ============ PAGES ============ */
  .page { display: none; }
  .page.active { display: block; }

  /* ============ PROTOTYPE BANNER ============ */
  .proto-banner {
    background: #FFB800; color: #000; text-align: center; padding: 10px 20px;
    font-size: 12px; font-weight: 500;
  }
  .proto-banner strong { font-weight: 700; }

  /* ============ SVG PLACEHOLDER CARDS ============ */
  .sku-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ph-base) 0%, var(--ph-accent) 100%);
    color: #fff; font-weight: 600; letter-spacing: 0.02em;
    text-align: center; padding: 24px; position: relative; overflow: hidden;
  }
  .sku-placeholder svg { width: 46%; height: auto; opacity: 0.22; margin-bottom: 16px; }
  .sku-placeholder .label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.85; }
  .sku-placeholder .title { font-size: 17px; margin-top: 8px; line-height: 1.2; font-weight: 700; }
  .sku-placeholder .stripe {
    position: absolute; top: 0; left: 0; width: 100%; height: 6px;
    background: var(--ph-stripe);
  }

  /* Category color themes (used via --ph-* custom props on each placeholder) */
  [data-cat="streetwear"] { --ph-base: #2B2B2E; --ph-accent: #3A3A3C; --ph-stripe: #F5F5F7; }
  [data-cat="basketball"] { --ph-base: #552583; --ph-accent: #6B33A3; --ph-stripe: #FDB927; }
  [data-cat="motocross"] { --ph-base: #A03A2F; --ph-accent: #D64C3E; --ph-stripe: #F5F5F7; }
  [data-cat="suron"] { --ph-base: #0088B8; --ph-accent: #00A3D9; --ph-stripe: #F5F5F7; }
  [data-cat="youth"] { --ph-base: #6BA62F; --ph-accent: #84C23A; --ph-stripe: #F5F5F7; }
  [data-cat="headwear"] { --ph-base: #A07430; --ph-accent: #C08B3E; --ph-stripe: #F5F5F7; }
  [data-cat="au-streetwear"] { --ph-base: #5A4F45; --ph-accent: #7B6A5C; --ph-stripe: #F5F5F7; }
  [data-cat="bags"] { --ph-base: #4A3520; --ph-accent: #6B4D2A; --ph-stripe: #D8C9A8; }
  [data-cat="grooming"] { --ph-base: #1F5448; --ph-accent: #2E7D6B; --ph-stripe: #E8E1D4; }
  [data-cat="subscription"] { --ph-base: #1D1D1F; --ph-accent: #3A3A3C; --ph-stripe: #C2CCCC; }

  /* ============ HERO TILES ============ */
  .hero-tile {
    background: var(--bg-section); padding: 56px 0 0 0; margin-bottom: 12px;
    text-align: center; overflow: hidden; position: relative;
  }
  .hero-tile.dark { background: #000; color: #F5F5F7; }
  .hero-tile.dark h1, .hero-tile.dark h2, .hero-tile.dark p { color: #F5F5F7; }
  .hero-tile.dark .btn-secondary { color: #F5F5F7; }
  .hero-tile .accent-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--cat-accent, var(--primary));
  }
  .hero-eyebrow {
    font-size: 13px; color: var(--text-muted); margin-bottom: 6px;
    font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
  }
  .hero-tile.dark .hero-eyebrow { color: #86868B; }
  .hero-title {
    font-size: 72px; font-weight: 800; line-height: 0.98; letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 24px; font-weight: 400; line-height: 1.2;
    color: var(--text); margin: 0 auto 20px auto; max-width: 680px;
  }
  .hero-tile.dark .hero-subtitle { color: #D2D2D7; }
  .hero-ctas {
    display: flex; gap: 14px; justify-content: center; margin: 8px 0 28px 0;
    font-size: 15px; flex-wrap: wrap;
  }
  .hero-image-wrap {
    max-width: 980px; margin: 0 auto; aspect-ratio: 16/9;
    display: flex; align-items: flex-end; justify-content: center;
  }
  .hero-image-wrap .sku-placeholder { max-height: 420px; min-height: 280px; border-radius: var(--radius-card) var(--radius-card) 0 0; }

  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    max-width: 1440px; margin: 0 auto; padding: 0 12px;
  }
  .hero-grid .hero-tile { margin-bottom: 0; padding: 48px 20px 0 20px; }
  .hero-grid .hero-title { font-size: 36px; }
  .hero-grid .hero-subtitle { font-size: 17px; }
  .hero-grid .hero-image-wrap { aspect-ratio: 4/3; max-width: 420px; }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 22px; font-size: 15px; font-weight: 500;
    border-radius: var(--radius-pill); border: 1px solid transparent;
    cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s;
    text-decoration: none; font-family: inherit; line-height: 1.2;
    letter-spacing: -0.022em;
  }
  .btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
  .btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); text-decoration: none; }
  .btn-secondary { background: transparent; color: var(--link); border-color: transparent; }
  .btn-secondary:hover { text-decoration: underline; }
  .btn-outline { background: transparent; color: var(--link); border-color: var(--link); }
  .btn-outline:hover { background: var(--link); color: #fff; text-decoration: none; }
  .btn-large { padding: 14px 26px; font-size: 17px; }
  .btn-applepay {
    background: #000; color: #fff; border-color: #000;
    padding: 14px 0;
    width: 100%;
  }
  .btn-applepay:hover { background: #1D1D1F; }
  .btn-applepay svg { width: 36px; height: 14px; }
  .btn[disabled], .btn.disabled {
    opacity: 0.4; cursor: not-allowed;
  }
  .btn[disabled]:hover, .btn.disabled:hover { background: inherit; text-decoration: none; }

  /* ============ SHOP ============ */
  .shop-header { max-width: var(--page-max); margin: 0 auto; padding: 56px 22px 20px 22px; }
  .shop-header h1 { font-size: 60px; font-weight: 800; letter-spacing: -0.03em; }
  .shop-header p { font-size: 19px; color: var(--text-muted); margin: 8px 0 0 0; }
  .category-filter {
    max-width: var(--page-max); margin: 12px auto 0 auto; padding: 0 22px 24px 22px;
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .cat-chip {
    padding: 8px 14px; border-radius: var(--radius-pill);
    background: transparent; color: var(--text-muted);
    font-size: 14px; cursor: pointer; border: 1px solid var(--border);
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    user-select: none; font-weight: 500;
  }
  .cat-chip:hover { color: var(--text); border-color: var(--text-muted); }
  .cat-chip.active { background: var(--text); color: #fff; border-color: var(--text); }

  /* ============ SHOP FACET FILTERS ============ */
  .shop-facet-bar {
    max-width: var(--page-max); margin: 0 auto 24px auto; padding: 0 22px;
  }
  .facet-inner {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  }
  .facet-group {
    position: relative;
  }
  .facet-label {
    padding: 8px 14px; border-radius: var(--radius-pill);
    background: transparent; color: var(--text-muted);
    font-size: 14px; cursor: pointer; border: 1px solid var(--border);
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    user-select: none; font-weight: 500;
  }
  .facet-label:hover { color: var(--text); border-color: var(--text-muted); }
  .facet-label:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }
  .facet-dropdown {
    position: absolute; top: 100%; left: 0; z-index: 10;
    background: white; border: 1px solid var(--border); border-radius: 4px;
    margin-top: 6px; min-width: 160px; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    /* the colour facet has 50+ options — cap and scroll, or the absolutely-
       positioned list runs past the viewport and options become unreachable */
    max-height: min(60vh, 420px); overflow-y: auto;
  }
  .facet-options {
    display: flex; flex-direction: column; padding: 8px 0;
  }
  .facet-option {
    padding: 10px 14px; font-size: 14px; color: var(--text);
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    transition: background 0.12s;
    user-select: none;
  }
  .facet-option:hover { background: var(--bg-section); }
  .facet-option input[type="checkbox"],
  .facet-option input[type="radio"] {
    width: 16px; height: 16px; cursor: pointer; flex-shrink: 0;
  }
  .facet-option input[type="checkbox"]:focus-visible,
  .facet-option input[type="radio"]:focus-visible {
    outline: 2px solid var(--text); outline-offset: 1px;
  }
  .facet-controls {
    display: flex; gap: 8px; align-items: center; margin-left: auto;
  }
  .facet-chip {
    font-size: 12px; color: var(--text-muted);
    padding: 6px 10px; background: var(--bg-section); border-radius: var(--radius-pill);
    font-weight: 500;
  }
  .facet-clear {
    font-size: 12px; padding: 6px 10px; border: 1px solid var(--border);
    border-radius: var(--radius-pill); background: transparent; color: var(--text);
    cursor: pointer; font-weight: 500; transition: background 0.12s, border-color 0.12s;
  }
  .facet-clear:hover { background: var(--bg-section); border-color: var(--text-muted); }
  .facet-clear:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }

  @media (max-width: 768px) {
    .facet-controls { margin-left: 0; margin-top: 8px; width: 100%; }
    .facet-inner { gap: 8px; }
  }

  .product-grid {
    max-width: var(--page-max); margin: 0 auto; padding: 0 22px 72px 22px;
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .product-card { cursor: pointer; transition: transform 0.2s; text-align: left; }
  .product-card:hover { transform: translateY(-2px); }
  .product-card-img {
    background: var(--bg-tile); border-radius: var(--radius-card);
    overflow: hidden; aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
  }
  /* Top-1 (tubik FluxWear): card image scales on hover. transform-only, reduced-motion safe. */
  .product-card-img .real-img,
  .product-card-img .sku-placeholder { transition: transform 0.35s ease; will-change: transform; }
  @media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card-img .real-img,
    .product-card:hover .product-card-img .sku-placeholder { transform: scale(1.04); }
  }
  @media (prefers-reduced-motion: reduce) {
    .product-card-img .real-img, .product-card-img .sku-placeholder { transition: none; }
    .product-card:hover .product-card-img .real-img,
    .product-card:hover .product-card-img .sku-placeholder { transform: none; }
  }
  /* Top-1 signature: hover reveals colour-variant swatches on the card. Desktop-only;
     variants always reachable on PDP (hover-vs-tap HIGH). */
  .product-card-variants {
    display: flex; gap: 5px; margin-top: 5px; min-height: 12px;
    opacity: 1; transition: opacity 0.18s ease;
  }
  .product-card-variants .pcv {
    width: 12px; height: 12px; border-radius: 50%;
    border: 1px solid var(--border); box-sizing: border-box;
  }
  .product-card-variants .pcv-more { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 10px; color: var(--text-muted); line-height: 12px; }
  @media (hover: hover) and (pointer: fine) {
    .product-card-variants { opacity: 0; }
    .product-card:hover .product-card-variants,
    .product-card:focus-within .product-card-variants { opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) { .product-card-variants { transition: none; } }
  .product-card-category {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 10px; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.14em; margin-bottom: 3px; font-weight: 500;
  }
  .product-card-category .cat-dot {
    display: inline-block; width: 7px; height: 7px; border-radius: 50%;
    margin-right: 6px; background: var(--cat-dot-color);
  }
  .product-card-name { font-size: 13.5px; font-weight: 500; color: var(--text); margin-bottom: 2px; line-height: 1.35; }
  .product-card-price { font-size: 12.5px; color: var(--text); font-weight: 500; }
  .product-card-price .inc-gst { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 10px; color: var(--text-muted); margin-left: 4px; }
  .product-card-rating { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 11px; color: var(--text); margin-top: 2px; margin-bottom: 2px; display: flex; align-items: center; gap: 4px; }
  .product-card-rating .star { color: #946B00; font-size: 12px; line-height: 1; } /* darkened from #E0A82E — 2.14:1 on white failed WCAG AA text contrast; #946B00 = 4.81:1 */
  .product-card-rating .count { color: var(--text-muted); font-size: 10px; }
  .product-card-rating.empty { color: var(--text-muted); font-size: 10px; letter-spacing: 0.04em; }
  .badge-bestseller {
    position: absolute; top: 10px; right: 10px;
    background: var(--volt); color: #1D1D1F;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
    padding: 4px 8px; border-radius: 2px; text-transform: uppercase;
    z-index: 2;
  }

  /* ============ TIER A1 — hover-reveal quick-add (mobile-first: tap-safe) ============ */
  .quick-add {
    position: absolute; left: 8px; right: 8px; bottom: 8px;
    background: var(--text); color: var(--bg);
    border: none; border-radius: 2px;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 11px 0; min-height: 44px; cursor: pointer; z-index: 3;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  /* Touch devices + small screens: always visible (hover-vs-tap HIGH severity). */
  .quick-add { opacity: 1; transform: translateY(0); }
  /* Pointer-fine (desktop mouse) only: hide until card hover. */
  @media (hover: hover) and (pointer: fine) {
    .quick-add { opacity: 0; transform: translateY(6px); }
    .product-card:hover .quick-add,
    .product-card:focus-within .quick-add { opacity: 1; transform: translateY(0); }
  }
  .quick-add:hover { background: #000; }
  @media (prefers-reduced-motion: reduce) {
    .quick-add { transition: none; }
  }

  /* ============ TIER A4 — editorial lifestyle row ============ */
  .lifestyle-row {
    grid-column: 1 / -1;
    position: relative; overflow: hidden;
    border-radius: 2px; aspect-ratio: 21 / 9; min-height: 220px;
    display: flex; align-items: flex-end;
    background: var(--bg-tile);
  }
  .lifestyle-row img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .lifestyle-row .lifestyle-copy {
    position: relative; z-index: 2; padding: 28px 32px;
    background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
    width: 100%; color: #F5F5F7;
  }
  .lifestyle-row .lifestyle-eyebrow {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-bottom: 6px;
  }
  .lifestyle-row .lifestyle-title { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
  @media (max-width: 600px) { .lifestyle-row { aspect-ratio: 4 / 3; } .lifestyle-row .lifestyle-title { font-size: 22px; } }

  /* ============ TIER B1 — mega-menu ============ */
  .nav-links li { position: relative; }
  .mega-panel {
    position: fixed; left: 0; right: 0; top: var(--nav-height);
    background: rgba(0,0,0,0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 99; padding: 0; overflow: hidden;
    max-height: 0; opacity: 0; transition: max-height 0.22s ease, opacity 0.18s ease;
  }
  .nav-mega-wrap:hover .mega-panel,
  .nav-mega-wrap:focus-within .mega-panel { max-height: 340px; opacity: 1; }
  .mega-inner {
    max-width: var(--page-max); margin: 0 auto; padding: 28px 22px 32px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  }
  .mega-col-label {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #8E8E93; margin-bottom: 12px; font-weight: 600;
  }
  .mega-col a {
    display: block; color: #F5F5F7; font-size: 13px; padding: 6px 0;
    opacity: 0.82; cursor: pointer; text-decoration: none; transition: opacity 0.15s;
  }
  .mega-col a:hover { opacity: 1; }
  @media (prefers-reduced-motion: reduce) { .mega-panel { transition: none; } }
  @media (max-width: 880px) { .mega-panel { display: none; } }

  /* ============ TIER B2 — PDP zoom ============ */
  .pdp-gallery-main { cursor: zoom-in; position: relative; }
  .pdp-gallery-main.zoomed { cursor: zoom-out; }
  .pdp-gallery-main .real-img { transition: transform 0.25s ease; transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%); }
  .pdp-gallery-main.zoomed .real-img { transform: scale(2.2); }
  @media (prefers-reduced-motion: reduce) { .pdp-gallery-main .real-img { transition: none; } }

  /* ============ TIER B3 — out-of-stock renotify ============ */
  .oos-notify { margin: 16px 0; padding: 16px; border: 1px solid var(--border); border-radius: 2px; background: var(--bg-section); }
  .oos-notify .oos-label {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cat-moto); margin-bottom: 8px; font-weight: 600;
  }
  .oos-notify form { display: flex; gap: 8px; flex-wrap: wrap; }
  .oos-notify input[type=email] {
    flex: 1; min-width: 180px; min-height: 44px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: 2px; font: inherit; font-size: 14px;
  }
  .oos-notify button {
    min-height: 44px; padding: 0 18px; background: var(--text); color: var(--bg);
    border: none; border-radius: 2px; font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  }
  .oos-notify .oos-done { font-size: 13px; color: var(--sage, #4f7a4a); }

  /* ============ PDP ============ */
  .pdp { max-width: var(--page-max); margin: 0 auto; padding: 44px 22px; }
  .pdp-breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; letter-spacing: 0.02em; }
  .pdp-breadcrumb a { color: var(--text-muted); }
  .pdp-title-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 32px; gap: 24px; flex-wrap: wrap;
  }
  .pdp-title h1 { font-size: 40px; font-weight: 700; }
  .pdp-title .from { font-size: 17px; color: var(--text-muted); margin-top: 4px; }
  .pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; }
  .pdp-tag {
    padding: 6px 12px; background: var(--bg-section); border-radius: var(--radius-pill);
    color: var(--text); border: 1px solid var(--border);
  }
  .pdp-body { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
  .pdp-gallery-main {
    background: var(--bg-tile); border-radius: var(--radius-card);
    overflow: hidden; aspect-ratio: 4/5; margin-bottom: 12px;
  }
  .pdp-gallery-thumbs {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  }
  .pdp-thumb {
    background: var(--bg-tile); border-radius: 2px; aspect-ratio: 1;
    border: 2px solid transparent; cursor: pointer; overflow: hidden;
    opacity: 0.7; transition: opacity 0.18s, border-color 0.18s;
  }
  .pdp-thumb.active { border-color: var(--text); opacity: 1; }

  .pdp-buy-panel {
    position: sticky; top: calc(var(--nav-height) + 22px);
    align-self: flex-start;
    display: flex; flex-direction: column; gap: 18px;
  }
  .pdp-price-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
  }
  .pdp-price { font-size: 28px; font-weight: 700; color: var(--text); }
  .pdp-price .inc-gst { font-size: 12px; color: var(--text-muted); margin-left: 6px; font-weight: 500; }
  .pdp-review { font-size: 12px; color: var(--text-muted); }
  .pdp-review.empty { font-style: italic; }

  .pdp-section-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
  .pdp-size-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .pdp-size {
    min-height: 44px; padding: 0 6px; display: flex; align-items: center; justify-content: center;
    text-align: center; border: 1px solid var(--border);
    border-radius: 4px; cursor: pointer; font-size: 14px; color: var(--text);
    transition: border-color 0.18s, background 0.18s;
    user-select: none;
  }
  .pdp-size:hover { border-color: var(--text); }
  .pdp-size.selected { border-color: var(--text); background: var(--text); color: #fff; }
  .pdp-size-onesize {
    padding: 10px 16px; border: 1px solid var(--text); border-radius: 4px;
    background: var(--text); color: #fff; display: inline-block; font-size: 14px;
  }
  .pdp-colour-swatches { display: flex; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
  .colour-swatch {
    width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
    border: 2px solid transparent; box-shadow: 0 0 0 1px var(--border);
    transition: box-shadow 0.18s; position: relative;
  }
  /* Expand the tap target to >=44px without changing the visible swatch size (Apple 44px / Google 48dp). */
  .colour-swatch::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; }
  .colour-swatch.selected { box-shadow: 0 0 0 2px var(--text); }

  .pdp-buttons { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
  .btn-add { padding: 14px 0; font-size: 15px; width: 100%; }

  .payment-trust-line {
    font-size: 13px; color: var(--text-muted); text-align: center;
    padding: 12px 0; border-top: 1px solid var(--border); margin-bottom: 8px;
  }

  .pdp-payment-methods {
    display: flex; gap: 6px; align-items: center; justify-content: center;
    margin-top: 2px; font-size: 10px; color: var(--text-muted); flex-wrap: wrap;
  }

  /* ============ COOKIE CONSENT BANNER ============ */
  #consent-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--bg); border-top: 1px solid var(--border);
    padding: 16px 22px; box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
    font-size: 14px; color: var(--text); display: flex;
    gap: 12px; align-items: center; flex-wrap: wrap;
    justify-content: space-between; max-height: 120px; overflow-y: auto;
  }
  .consent-banner-message { flex: 1; min-width: 200px; }
  .consent-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
  .consent-btn { padding: 10px 16px; font-size: 13px; }
  .pay-logo {
    display: inline-flex; align-items: center; justify-content: center;
    height: 20px; padding: 2px 8px; font-size: 10px; font-weight: 700;
    color: #fff; border-radius: 4px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .pay-apple { background: #000; }
  .pay-gpay { background: #4285F4; }
  .pay-afterpay { background: #B2FCE4; color: #000; }
  .pay-zip { background: #6D3FD1; } /* darkened from #AA8EE6 — white text at 2.72:1 failed WCAG AA; #6D3FD1 = 6.4:1 */
  .pay-visa { background: #1A1F71; }
  .pay-mc { background: #EB001B; }
  .pay-amex { background: #006FCF; }
  .pay-paypal { background: #00457C; }

  .pdp-trust-signals {
    font-size: 11px; color: var(--text-muted); text-align: center;
    padding-top: 8px; border-top: 1px solid var(--border);
    line-height: 1.5;
  }
  .pdp-trust-signals a { color: var(--link); }

  .pdp-description {
    max-width: var(--content-max); margin: 72px auto; padding: 0 22px;
  }
  .pdp-description h2 { font-size: 36px; font-weight: 700; margin-bottom: 14px; }
  .pdp-description p { font-size: 17px; line-height: 1.5; color: var(--text); }
  .pdp-description-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 32px; }
  .pdp-description-grid .cell { padding: 18px; background: var(--bg-section); border-radius: var(--radius-card); }
  .pdp-description-grid h3 { font-size: 17px; margin-bottom: 6px; }
  .pdp-description-grid p { font-size: 13px; color: var(--text-muted); margin: 0; }

  .info-accordion { max-width: var(--content-max); margin: 32px auto; padding: 0 22px; }
  .info-accordion details { border-top: 1px solid var(--border); padding: 18px 0; }
  .info-accordion details:last-child { border-bottom: 1px solid var(--border); }
  .info-accordion summary {
    font-size: 17px; font-weight: 500; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
  }
  .info-accordion summary::-webkit-details-marker { display: none; }
  .info-accordion summary::after { content: "+"; font-size: 22px; font-weight: 300; }
  .info-accordion details[open] summary::after { content: "−"; }
  .info-accordion details p { font-size: 15px; color: var(--text-muted); margin-top: 8px; }

  .related-products { max-width: var(--page-max); margin: 64px auto; padding: 0 22px; }
  .related-products h2 { font-size: 28px; margin-bottom: 24px; font-weight: 700; }

  /* ============ MOBILE FOOTER ACTION BAR ============ */
  .mobile-buy-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff; border-top: 1px solid var(--border);
    padding: 10px 16px 16px 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  }
  .mobile-buy-bar .row { display: flex; gap: 8px; align-items: center; }
  .mobile-buy-bar .mb-price { font-size: 15px; font-weight: 700; flex: 0 0 auto; }
  .mobile-buy-bar .btn { flex: 1; padding: 12px 0; font-size: 14px; }

  /* ============ BAG ============ */
  .bag { max-width: var(--content-max); margin: 0 auto; padding: 56px 22px; }
  .bag h1 { font-size: 36px; margin-bottom: 6px; font-weight: 700; }
  .bag .sub { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; }
  .bag-item {
    display: grid; grid-template-columns: 100px 1fr auto;
    gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .bag-item-img { background: var(--bg-tile); border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/5; }
  .bag-item-name { font-size: 16px; font-weight: 500; }
  .bag-item-meta { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
  .bag-item-remove { font-size: 13px; color: var(--link); cursor: pointer; margin-top: 12px; background: none; border: none; padding: 0; }
  .bag-item-price { font-size: 17px; font-weight: 500; text-align: right; }
  .bag-totals-row {
    display: flex; justify-content: space-between; padding: 14px 0;
    font-size: 15px; color: var(--text);
  }
  .bag-totals-row.muted { color: var(--text-muted); }
  .bag-total-final {
    display: flex; justify-content: space-between; padding: 16px 0;
    border-top: 1px solid var(--border);
    font-size: 19px; font-weight: 700; color: var(--text);
  }
  .bag-afterpay-notice {
    background: #B2FCE4; color: #000; padding: 12px 16px; border-radius: var(--radius-card);
    font-size: 13px; margin: 20px 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 8px;
  }
  .bag-afterpay-notice .underline { text-decoration: underline; cursor: pointer; font-weight: 700; }

  .bag-launch-note {
    margin: 0 0 18px; padding: 12px 14px; border-radius: 4px;
    background: var(--surface-alt, #f4f4f5); border: 1px solid var(--border);
    font-size: 13px; line-height: 1.45; color: var(--text);
  }
  .bag-checkout-section { margin-top: 28px; }
  .bag-checkout-section h3 { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
  .bag-pay-options { display: flex; flex-direction: column; gap: 8px; }
  .bag-pay-options .btn { padding: 14px 0; font-size: 15px; text-align: center; width: 100%; }
  .bag-trust-strip {
    margin-top: 20px; padding: 14px 0; border-top: 1px solid var(--border);
    font-size: 11px; color: var(--text-muted); text-align: center;
  }
  .bag-trust-strip a { color: var(--link); }

  /* ============ MINI-CART DRAWER (slide-in) ============ */
  .cart-drawer-backdrop {
    position: fixed; inset: 0; background: rgba(29,29,31,0.5);
    z-index: 480; opacity: 0; transition: opacity 0.32s ease;
  }
  .cart-drawer-backdrop:not([hidden]) { opacity: 1; }
  .cart-drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 100vw;
    background: var(--bg, #fff); z-index: 490; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.32s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12); will-change: transform;
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px 16px; border-bottom: 1px solid var(--border);
  }
  .cart-drawer-head h2 { font-size: 18px; font-weight: 700; margin: 0; color: var(--text); }
  .cart-drawer-count {
    display: inline-block; margin-left: 6px; font-size: 13px; font-weight: 600;
    color: var(--text-muted);
  }
  .cart-drawer-close {
    background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer;
    color: var(--text); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  }
  .mc-free-ship { padding: 14px 22px; border-bottom: 1px solid var(--border); }
  .mc-free-ship-msg { font-size: 13px; color: var(--text); margin-bottom: 8px; }
  .mc-free-ship-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
  .mc-free-ship-fill { height: 100%; width: 0; background: var(--primary); border-radius: 3px; transition: width 0.3s ease; }
  .cart-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 8px 22px; }
  .mc-empty { padding: 40px 0; text-align: center; color: var(--text-muted); font-size: 14px; }
  .mc-link { background: none; border: none; color: var(--link); cursor: pointer; text-decoration: underline; font: inherit; }
  .mc-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .mc-item-img { width: 56px; height: 56px; border-radius: 4px; overflow: hidden; background: var(--surface-alt, #f4f4f5); }
  .mc-item-img img, .mc-item-img svg { width: 100%; height: 100%; object-fit: cover; }
  .mc-item-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .mc-item-meta { font-size: 12px; color: var(--text-muted); margin: 2px 0 8px; }
  .mc-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; }
  .mc-qty-btn {
    width: 34px; height: 34px; min-width: 34px; background: none; border: none; cursor: pointer;
    font-size: 18px; line-height: 1; color: var(--text); display: flex; align-items: center; justify-content: center;
  }
  .mc-qty-val { min-width: 28px; text-align: center; font-size: 14px; }
  .mc-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
  .mc-item-price { font-size: 14px; font-weight: 600; color: var(--text); }
  .mc-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 12px; text-decoration: underline; padding: 4px; }
  .cart-drawer-foot { border-top: 1px solid var(--border); padding: 16px 22px 20px; background: var(--bg, #fff); }
  .mc-subtotal-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .mc-foot-note { font-size: 12px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.4; }
  .mc-checkout { width: 100%; padding: 15px 0; font-size: 15px; text-align: center; }
  .mc-viewbag { width: 100%; margin-top: 10px; background: none; border: none; color: var(--link); cursor: pointer; font-size: 13px; text-decoration: underline; padding: 8px; }
  body.cart-drawer-lock { overflow: hidden; }
  @media (max-width: 560px) {
    .cart-drawer { width: 100vw; }
  }

  /* ============ ORDER LIFECYCLE (confirmation / status / cancel) ============ */
  .order-wrap { max-width: var(--content-max); margin: 0 auto; padding: 56px 22px; }
  .confirm-check {
    width: 64px; height: 64px; border-radius: 50%; background: var(--text);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 32px; margin: 0 auto 20px auto;
  }
  .confirm-title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 8px; }
  .confirm-sub { text-align: center; color: var(--text-muted); margin-bottom: 24px; }
  .order-number { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 32px; font-family: "JetBrains Mono", ui-monospace, monospace; }
  .order-number strong { color: var(--text); font-weight: 700; }
  .confirm-items { border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px; margin-bottom: 24px; }
  .confirm-item { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
  .confirm-item + .confirm-item { border-top: 1px solid var(--border); }
  .whats-next { background: var(--bg-section); border-radius: var(--radius-card); padding: 20px; font-size: 13px; color: var(--text-muted); }
  .whats-next strong { color: var(--text); display: block; margin-bottom: 6px; font-size: 13px; }

  .status-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    font-family: "JetBrains Mono", ui-monospace, monospace;
  }
  .status-badge.placed { background: var(--bg-tile); color: #5E5E63; } /* darkened from --text-muted (#6E6E73, 4.23:1) — WCAG AA vs --bg-tile */
  .status-badge.processing { background: #0058B8; color: #fff; } /* WCAG AA text contrast vs --primary */
  .status-badge.shipped { background: var(--text); color: #fff; }
  .status-badge.delivered { background: var(--text); color: #fff; }
  .status-badge.cancelled { background: #B71C1C; color: #fff; }

  .timeline { position: relative; padding-left: 32px; margin-top: 24px; }
  .timeline-item { position: relative; padding-bottom: 28px; }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item::before {
    content: ""; position: absolute; left: -32px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--bg-tile); border: 2px solid var(--bg-tile);
  }
  .timeline-item.done::before { background: var(--text); border-color: var(--text); }
  .timeline-item.cancelled::before { background: #B71C1C; border-color: #B71C1C; }
  .timeline-item::after {
    content: ""; position: absolute; left: -26px; top: 18px; bottom: -28px; width: 2px;
    background: var(--border);
  }
  .timeline-item:last-child::after { display: none; }
  .timeline-status { font-size: 15px; font-weight: 600; }
  .timeline-item:not(.done):not(.cancelled) .timeline-status { color: var(--text-muted); font-weight: 500; }
  .timeline-time { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-family: "JetBrains Mono", ui-monospace, monospace; }
  .timeline-msg { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
  .order-lookup-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }

  /* ============ SUB TILE ============ */
  .sub-tile {
    background: linear-gradient(135deg, #1D1D1F 0%, #3A3A3C 100%);
    color: #F5F5F7; padding: 52px 24px; text-align: center;
    margin: 0 12px 12px 12px; border-radius: var(--radius-card); position: relative; overflow: hidden;
  }
  .sub-tile::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--primary);
  }
  .sub-tile h2 { color: #F5F5F7; font-size: 36px; margin-bottom: 8px; font-weight: 700; }
  .sub-tile p { color: #C7C7CC; font-size: 17px; margin-bottom: 20px; max-width: 540px; margin-left: auto; margin-right: auto; }
  .sub-tile .eyebrow { color: #86868B; font-size: 12px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.14em; }
  .sub-tile .badge-soon {
    display: inline-block; background: var(--volt); color: #1D1D1F;
    padding: 3px 9px; border-radius: var(--radius-pill); font-size: 11px;
    font-weight: 700; margin-left: 8px; text-transform: uppercase; letter-spacing: 0.08em;
  }

  /* ============ FOOTER ============ */
  .footer { background: var(--bg-section); padding: 48px 22px 32px 22px; font-size: 12px; color: var(--text-muted); }
  .footer-inner { max-width: var(--page-max); margin: 0 auto; }
  .footer-disclaimer { border-top: 1px solid var(--border); margin-top: 28px; padding-top: 16px; font-size: 11px; }
  .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 24px; }
  .footer-col h4 { font-size: 12px; margin-bottom: 10px; color: var(--text); font-weight: 600; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 7px; }
  .footer-col a { color: var(--text-muted); }

  /* ============ MODALS ============ */
  .modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.5); align-items: center; justify-content: center;
    padding: 20px;
  }
  .modal-backdrop.open { display: flex; }
  .modal {
    background: #fff; border-radius: var(--radius-card); padding: 28px;
    max-width: 480px; width: 100%; position: relative;
  }
  .modal h2 { font-size: 24px; margin-bottom: 12px; font-weight: 700; }
  .modal p { font-size: 15px; color: var(--text); line-height: 1.5; margin-bottom: 14px; }
  .modal .modal-close {
    position: absolute; top: 8px; right: 8px; background: none; border: none;
    font-size: 24px; cursor: pointer; color: var(--text-muted);
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  }
  .modal-age-input {
    width: 100%; padding: 10px 14px; border: 1px solid var(--border);
    border-radius: 4px; font-size: 16px; font-family: inherit; margin-bottom: 10px;
  }
  .modal-error { color: #B71C1C; font-size: 13px; margin-bottom: 10px; display: none; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 17px; }
    .pdp-body { grid-template-columns: 1fr; }
    .pdp-buy-panel { position: static; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-grid .hero-title { font-size: 28px; }
    .pdp-description-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .pdp-title-row { flex-direction: column; }
    /* Show mobile buy bar when on PDP */
    #page-product.active ~ .mobile-buy-bar { display: block; }
    /* Pad body to not overlap mobile bar */
    #page-product.active { padding-bottom: 96px; }
  }
  @media (max-width: 600px) {
    .shop-header h1 { font-size: 32px; }
    .hero-title { font-size: 28px; }
    .pdp-title h1 { font-size: 28px; }
    .bag-item { grid-template-columns: 70px 1fr auto; gap: 10px; }
  }
  @media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-card-img { aspect-ratio: 4/5; }
    .product-card-name { font-size: 14px; }
    /* Nav overflow fix: at narrow widths the logo + Shop/Bag/hamburger group
       no longer fit .nav-inner's 44px of padding, pushing the hamburger off
       the right edge. Tighten padding/logo/gap AND drop the redundant "Shop"
       text shortcut (Shop is already reachable via the hamburger menu) —
       removing a whole label is a certain fix; shaving a few px of padding
       alone was not enough margin once real font metrics are accounted for. */
    .nav-inner { padding: 0 12px; }
    .nav-logo { font-size: 15px; letter-spacing: 0.1em; }
    .nav-right { gap: 10px; }
    .nav-shop-link { display: none; }
  }

  /* ========================================================
     v4 ADDITIONS (2026-04-27)
     6 changes: black streetwear CTAs, orchestrated reveal,
     atmospheric background, 44px H2 hero ladder,
     0/4/8px card radius ladder, Georgia storytelling serif.
     ======================================================== */

  /* --- 1. Atmospheric background (radial gradient + SVG noise) --- */
  /* Inline SVG noise via base CSS background. Single data-URI, no network call.
     Opacity is 2.5% via the 'opacity' attribute on the feTurbulence layer. */
  body {
    background-image:
      url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' /%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.025 0' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    background-attachment: fixed;
  }
  .hero-tile { position: relative; }
  .hero-tile:not(.dark)::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(circle at 25% 18%, var(--cat-accent, rgba(0,0,0,0.04)), transparent 60%);
    opacity: 0.06;
  }
  .hero-tile > * { position: relative; z-index: 1; }
  .hero-tile.dark::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(circle at 70% 25%, var(--cat-accent, rgba(255,255,255,0.06)), transparent 65%);
    opacity: 0.18;
  }

  /* --- 2. 44px H2 on category landing heroes --- */
  /* Single-section hero stays at 56px (chassis discipline).
     The hero-grid sub-tiles bump from 36px to 44px. */
  .hero-grid .hero-title { font-size: 44px; }
  @media (max-width: 900px) { .hero-grid .hero-title { font-size: 32px; } }

  /* --- 3. 0/4/8px card radius ladder --- */
  /* Tier 1 (sharp 0px): streetwear, AU streetwear — lift from 18px chassis.
     Tier 2 (4px): basketball, motocross, headwear.
     Tier 3 (8px): suron, youth.
     Apply to product-card-img and pdp-gallery-main via :has() against the
     inner data-cat element. Falls back gracefully where :has() is unsupported. */
  .product-card-img:has([data-cat="streetwear"]),
  .product-card-img:has([data-cat="au-streetwear"]),
  .pdp-gallery-main:has([data-cat="streetwear"]),
  .pdp-gallery-main:has([data-cat="au-streetwear"]) { border-radius: 0; }
  .product-card-img:has([data-cat="basketball"]),
  .product-card-img:has([data-cat="motocross"]),
  .product-card-img:has([data-cat="headwear"]),
  .pdp-gallery-main:has([data-cat="basketball"]),
  .pdp-gallery-main:has([data-cat="motocross"]),
  .pdp-gallery-main:has([data-cat="headwear"]) { border-radius: 4px; }
  .product-card-img:has([data-cat="suron"]),
  .product-card-img:has([data-cat="youth"]),
  .pdp-gallery-main:has([data-cat="suron"]),
  .pdp-gallery-main:has([data-cat="youth"]) { border-radius: 8px; }
  /* Body-scoped fallback for whole-page surface when category landing is active */
  body[data-cat-active="streetwear"] .pdp-gallery-main,
  body[data-cat-active="au-streetwear"] .pdp-gallery-main { border-radius: 0; }
  body[data-cat-active="basketball"] .pdp-gallery-main,
  body[data-cat-active="motocross"] .pdp-gallery-main,
  body[data-cat-active="headwear"] .pdp-gallery-main { border-radius: 4px; }
  body[data-cat-active="suron"] .pdp-gallery-main,
  body[data-cat-active="youth"] .pdp-gallery-main { border-radius: 8px; }

  /* --- 4. Black primary CTAs on streetwear and AU streetwear surfaces --- */
  body[data-cat-active="streetwear"] .btn-primary,
  body[data-cat-active="au-streetwear"] .btn-primary {
    background: #000; border-color: #000; color: #fff;
  }
  body[data-cat-active="streetwear"] .btn-primary:hover,
  body[data-cat-active="au-streetwear"] .btn-primary:hover {
    background: #1D1D1F; border-color: #1D1D1F;
  }
  /* Streetwear hero tile on the home page is the streets entry point —
     scope its primary CTA to black even before the user navigates. */
  .hero-tile[data-streetwear-hero] .btn-primary {
    background: #000; border-color: #000; color: #fff;
  }
  .hero-tile[data-streetwear-hero] .btn-primary:hover {
    background: #1D1D1F; border-color: #1D1D1F;
  }

  /* --- 5. Georgia serif on storytelling sections --- */
  /* Apply to pdp-description headings (the editorial moment on PDP) and
     any element tagged .serif-storytelling. SF Pro stays everywhere else. */
  .pdp-description h2,
  .pdp-description-grid h3,
  .serif-storytelling,
  .serif-storytelling h1,
  .serif-storytelling h2,
  .serif-storytelling h3 {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    letter-spacing: -0.012em;
  }
  .pdp-description h2 { font-weight: 700; }

  /* --- 6. Orchestrated page-load reveal --- */
  /* Initial state: invisible + offset down 18px.
     Animated state (.is-revealed): full opacity, neutral position.
     Apple-style ease-out-quint timing. Page-load orchestration via JS;
     IntersectionObserver triggers below-fold reveals. */
  .reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal.is-revealed { opacity: 1; transform: translateY(0); }
  .reveal-stagger-1 { transition-delay: 0.10s; }
  .reveal-stagger-2 { transition-delay: 0.20s; }
  .reveal-stagger-3 { transition-delay: 0.30s; }
  .reveal-stagger-4 { transition-delay: 0.40s; }
  /* Reduced-motion respect — turn the orchestration off entirely */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-revealed {
      opacity: 1; transform: none; transition: none;
    }
  }

  /* ============ MOBILE HAMBURGER & DRAWER ============ */
  .hamburger-btn {
    display: none; width: 36px; height: 36px; background: none; border: none;
    cursor: pointer; padding: 6px; align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
  }
  .hamburger-btn span {
    display: block; width: 24px; height: 2px; background: #F5F5F7;
    border-radius: 1px; transition: all 0.28s ease;
  }
  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 900px) {
    .hamburger-btn { display: flex; }
  }

  .mobile-nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0);
    z-index: 140; transition: background 0.28s ease;
  }
  .mobile-nav-overlay.active {
    display: block; background: rgba(0,0,0,0.4);
  }

  .mobile-nav-drawer {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px;
    height: 100vh; background: rgba(0,0,0,0.97); z-index: 150;
    transition: right 0.28s ease; overflow-y: auto; flex-direction: column;
    display: flex;
  }
  .mobile-nav-drawer.active { right: 0; }
  .mobile-nav-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .mobile-nav-drawer-header .nav-logo {
    font-size: 16px; cursor: pointer;
  }
  .mobile-nav-drawer-header .close-btn {
    background: none; border: none; font-size: 28px; color: #F5F5F7;
    cursor: pointer; padding: 0; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-nav-drawer-content {
    padding: 20px 0; flex: 1; overflow-y: auto;
  }
  .mobile-nav-drawer-content a,
  .mobile-nav-drawer-content div {
    display: block; color: #F5F5F7; font-size: 15px; padding: 12px 20px;
    cursor: pointer; text-decoration: none; transition: opacity 0.18s;
  }
  .mobile-nav-drawer-content a:hover,
  .mobile-nav-drawer-content div:hover {
    opacity: 0.7;
  }
  .mobile-nav-drawer-content .drawer-divider {
    height: 1px; background: rgba(255,255,255,0.08); margin: 12px 0;
    cursor: default; padding: 0;
  }
  .mobile-nav-drawer-content .drawer-label {
    font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 10px;
    letter-spacing: 0.16em; text-transform: uppercase; color: #8E8E93;
    padding: 8px 20px 8px 20px; cursor: default; margin-top: 8px;
  }
  .mobile-nav-drawer-content .bag-link {
    display: flex; justify-content: space-between; align-items: center;
  }

  body.mobile-nav-open { overflow: hidden; }

  .style_1 { --cat-accent: var(--cat-streetwear); }
  .style_10 { border-radius: 2px 2px 0 0; max-height: 320px; width: auto; }
  .style_11 { --cat-accent: var(--cat-headwear); }
  .style_12 { border-radius: 4px 4px 0 0; max-height: 320px; width: auto; }
  .style_13 { max-width: var(--page-max); margin: 0 auto 16px auto; padding: 0 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
  .style_14 { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
  .style_15 { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .style_16 { padding: 6px 12px; border: 1px solid var(--border); border-radius: 2px; background: var(--bg); font-size: 13px; cursor: pointer; }
  .style_17 { padding: 6px 12px; border: 1px solid var(--border); border-radius: 2px; background: var(--bg); font-size: 13px; cursor: pointer; }
  .style_18 { padding: 6px 12px; border: 1px solid var(--border); border-radius: 2px; background: var(--bg); font-size: 13px; cursor: pointer; }
  .style_19 { display: flex; gap: 8px; align-items: center; }
  .style_2 { border-radius: 0; max-height: 480px; width: auto; }
  .style_20 { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .style_21 { padding: 7px 30px 7px 12px; border: 1px solid var(--border); border-radius: 2px; background: var(--bg); font-size: 13px; cursor: pointer; font-family: inherit; }
  .style_22 { color:var(--text-muted);font-size:14px; }
  .style_23 { color:var(--text-muted);font-weight:400; }
  .style_24 { font-size:12px;color:var(--text-muted); }
  .style_25 { font-size:14px; }
  .style_3 { --cat-accent: var(--cat-basketball-accent); }
  .style_35 { padding:0; }
  .style_36 { padding:12px 0; }
  .style_37 { margin: 12px 0 18px 0; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-section); display:none; }
  .style_38 { font-size: 13px; color: var(--text); margin-bottom: 8px; font-weight: 500; }
  .style_39 { height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; }
  .style_4 { border-radius: 4px 4px 0 0; max-height: 480px; width: auto; }
  .style_40 { height: 100%; width: 0%; background: var(--primary); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 999px; }
  .style_41 { display:none;padding:40px 0;color:var(--text-muted);font-size:17px; }
  .style_42 { display:none; }
  .style_43 { display:none; }
  .style_44 { text-align:center; margin-top:24px; }
  .style_45 { background: var(--bg); padding: 56px 22px 24px 22px; border-top: 1px solid var(--border); }
  .style_46 { max-width: var(--page-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; text-align: center; }
  .style_47 { font-size: 28px; margin-bottom: 12px; }
  .style_48 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
  .style_49 { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
  .style_5 { --cat-accent: var(--cat-moto); }
  .style_50 { font-size: 28px; margin-bottom: 12px; }
  .style_51 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
  .style_52 { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
  .style_53 { font-size: 28px; margin-bottom: 12px; }
  .style_54 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
  .style_55 { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
  .style_56 { background: var(--bg-section); padding: 56px 22px; }
  .style_57 { max-width: 760px; margin: 0 auto; }
  .style_58 { font-size: 24px; margin: 0 0 24px 0; text-align: center; }
  .style_59 { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .style_6 { border-radius: 4px 4px 0 0; max-height: 320px; width: auto; }
  .style_60 { cursor:pointer; font-weight:600; }
  .style_61 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_62 { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .style_63 { cursor:pointer; font-weight:600; }
  .style_64 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_65 { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .style_66 { cursor:pointer; font-weight:600; }
  .style_67 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_68 { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .style_69 { cursor:pointer; font-weight:600; }
  .style_7 { --cat-accent: var(--cat-suron); }
  .style_70 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_71 { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .style_72 { cursor:pointer; font-weight:600; }
  .style_73 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_74 { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .style_75 { cursor:pointer; font-weight:600; }
  .style_76 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_77 { padding: 14px 0; }
  .style_78 { cursor:pointer; font-weight:600; }
  .style_79 { font-size:14px; color:var(--text-muted); line-height:1.55; margin:8px 0 0; }
  .style_8 { border-radius: 2px 2px 0 0; max-height: 320px; width: auto; }
  .style_9 { --cat-accent: var(--cat-youth); }


  /* ============ EXTRACTED INLINE STYLES BATCH 2 (CSP refactor, renumbered to avoid collision with batch 1) ============ */
  .style_80 { background: var(--bg-section); padding: 48px 22px; }
  .style_81 { max-width: 560px; margin: 0 auto; text-align: center; }
  .style_82 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
  .style_83 { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
  .style_84 { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .style_85 { flex: 1; min-width: 240px; min-height: 44px; padding: 12px 16px; border: 1px solid var(--border); border-radius: 2px; font-size: 16px; font-family: inherit; }
  .style_86 { padding: 12px 24px; }
  .style_87 { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
  .style_88 { max-width: 680px; margin: 0 auto 36px auto; text-align: center; padding: 20px 0; }
  .style_89 { font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
  .style_90 { font-size: 15px; line-height: 1.5; color: var(--text); margin: 0 0 10px 0; }
  .style_91 { font-size: 13px; color: var(--text-muted); margin: 0; }
  .style_92 { width:100%; }
  .style_93 { width:100%; }
  .style_94 { display:flex; gap:10px; }
  .style_95 { flex:1; color:#B71C1C; border-color:#B71C1C; }
  .style_96 { flex:1; background:var(--bg-tile); color:var(--text); border-color:var(--bg-tile); }

  /* ============ REFACTORED INLINE STYLES (CSP compliance) ============ */
  .new-badge { position: absolute; top: 10px; left: 10px; background: var(--text); color: var(--bg); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; z-index: 2; }
  .card-img-wrapper { position: relative; }
  .oos-done { display: none; }
  .error-msg-unresolved { color: #B71C1C; font-size: 13px; margin-top: 12px; }
  .checkout-held-box { background: #fff; max-width: 460px; width: 100%; border-radius: 6px; padding: 32px; font-family: inherit; }
  .checkout-held-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .checkout-held-body { color: #3A3A3C; line-height: 1.5; font-size: 14px; margin: 0; }
  .checkout-held-ref { color: #6E6E73; font-size: 12px; margin-top: 12px; font-family: 'JetBrains Mono', ui-monospace, monospace; }
  .checkout-held-buttons { display: flex; gap: 12px; margin-top: 24px; }
  .btn-keep-shopping { flex: 1; padding: 12px; background: var(--text, #1D1D1F); color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; }
  .btn-close-modal { flex: 1; padding: 12px; background: #fff; color: var(--text, #1D1D1F); border: 1px solid #C2CCCC; border-radius: 4px; cursor: pointer; font-size: 14px; }
  .order-total-bold { font-weight: 700; }
  .order-lookup-title { font-size: 24px; }
  .timeline-skipped { opacity: 0.45; }
  .timeline-cancelled { color: #B71C1C; }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .order-status-header { font-size: 24px; margin-bottom: 4px; }
  .order-status-badge-wrapper { margin-bottom: 8px; }
  .order-timeline-list { list-style: none; }
  .order-actions-wrapper { margin-top: 28px; }
  .btn-cancel-order { color: #B71C1C; border-color: #B71C1C; }

  /* ============ RUNTIME-INJECTED STYLES (blue-parity.js) ============ */
  .be-search { height: 36px; border: 1px solid var(--border, #ddd); border-radius: 2px; font-size: 16px; padding: 0 10px; font-family: "DM Sans", sans-serif; box-sizing: border-box; width: 200px; }
  .be-results { margin-left: 8px; font-size: 13px; color: #666; font-family: "DM Sans", sans-serif; }
  .be-wl-btn { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.9); border: none; border-radius: 2px; cursor: pointer; font-size: 18px; z-index: 2; padding: 0; }
  .be-wl-count { position: fixed; bottom: 80px; right: 16px; background: #111; color: #fff; padding: 8px 14px; border-radius: 2px; font-size: 13px; font-family: "DM Sans", sans-serif; cursor: pointer; z-index: 50; display: none; }
  .be-wl-count.on { display: block; }
  .be-sg { cursor: pointer; text-decoration: underline; font-size: 13px; color: #111; font-family: "DM Sans", sans-serif; margin-left: 10px; white-space: nowrap; }
  .be-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); display: none; align-items: center; justify-content: center; z-index: 100; }
  .be-modal.on { display: flex; }
  .be-modal-card { background: #fff; border-radius: 2px; padding: 24px; max-width: 420px; width: 90%; position: relative; font-family: "DM Sans", sans-serif; }
  .be-modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; }
  .be-modal h3 { margin: 0 0 16px; font-size: 16px; color: #111; }
  .be-modal table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 12px; }
  .be-modal th, .be-modal td { padding: 6px 8px; text-align: center; border: 1px solid #eee; }
  .be-modal th { background: #f5f5f5; font-weight: 600; }
  .be-modal p { margin: 0; font-size: 12px; color: #666; }
  .be-bnpl { font-size: 12.5px; color: #666; font-family: "DM Sans", sans-serif; margin-top: 4px; }

  /* ============ EXIT INTENT POPUP STYLES (CSP refactor) ============ */
  .bs-exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998; display: flex; align-items: center; justify-content: center; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
  .bs-exit-card { background: #fff; border-radius: 2px; max-width: 420px; width: 90%; padding: 28px 24px 24px; position: relative; }
  .bs-exit-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; line-height: 1; color: #444; }
  .bs-exit-title { margin: 0 0 10px; font-size: 22px; font-weight: 600; color: #111; }
  .bs-exit-body { margin: 0 0 20px; font-size: 15px; color: #333; line-height: 1.5; }
  .bs-exit-input { width: 100%; min-height: 44px; padding: 10px 12px; font-size: 16px; border: 1px solid #ccc; border-radius: 2px; box-sizing: border-box; margin-bottom: 12px; }
  .bs-exit-submit { box-sizing: border-box; width: 100%; min-height: 44px; font-size: 15px; font-weight: 500; background: #111; color: #fff; border: none; border-radius: 2px; cursor: pointer; }
  .bs-exit-done { display: none; margin: 16px 0 0; font-size: 15px; color: #2e7d32; text-align: center; }

  /* ============ STICKY MOBILE CTA BUTTON (CSP refactor) ============ */
  .bs-sticky-btn { width: 100%; height: 48px; font-size: 15px; font-weight: 500; background: #111; color: #fff; border: none; border-radius: 2px; cursor: pointer; }

  /* Held-payment disclosure caption on the mobile buy bar (pre-launch affordance honesty) */
  .mobile-buy-bar-note { font-size: 10px; color: var(--text-muted); text-align: center; padding: 2px 8px 0; line-height: 1.3; }

  /* ============ RECENTLY VIEWED RAIL (FIX-02) ============ */
  .recently-viewed { max-width: var(--content-max, 1440px); margin: 56px auto; padding: 0 22px; }
  .recently-viewed[hidden] { display: none; }
  .recently-viewed h2 { font-size: 20px; font-weight: 700; margin: 0 0 18px; color: var(--text); }

  /* ============ APPLIED-FILTER PILLS (FIX-07) ============ */
  .facet-pill {
    display: inline-flex; align-items: center; gap: 6px;
    min-height: 32px; padding: 4px 10px; margin: 0;
    background: var(--bg-section, #f5f5f7); color: var(--text);
    border: 1px solid var(--border); border-radius: 16px;
    font-size: 12px; font-family: inherit; cursor: pointer;
  }
  .facet-pill:hover { border-color: var(--text-muted); }
  .facet-pill:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }
  .facet-pill span { font-size: 14px; line-height: 1; }

  /* ============ PDP REVIEWS (FIX-09) ============ */
  .pdp-reviews { max-width: var(--content-max, 1440px); margin: 56px auto; padding: 0 22px; }
  .pdp-reviews[hidden] { display: none; }
  .pdp-reviews h2 { font-size: 22px; font-weight: 700; margin: 0 0 16px; color: var(--text); }
  .pdp-review-empty { font-size: 14px; color: var(--text-muted); max-width: 640px; line-height: 1.55; }
  .pdp-review-summary { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
  .pdp-review-avg { font-size: 20px; font-weight: 700; color: var(--text); }
  .pdp-review-count { font-size: 13px; color: var(--text-muted); }
  .pdp-review-photos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .pdp-review-photos img { width: 84px; height: 84px; object-fit: cover; border-radius: 6px; }
  .pdp-review-item { padding: 14px 0; border-top: 1px solid var(--border); }
  .pdp-review-stars { color: #E8A33D; font-size: 14px; letter-spacing: 1px; }
  .pdp-review-meta { font-size: 12px; color: var(--text-muted); margin: 2px 0 6px; }
  .pdp-review-body { font-size: 14px; color: var(--text); line-height: 1.55; margin: 0; }
