  /* ---------- RESET & TOKENS ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  img, svg { display: block; max-width: 100%; height: auto; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  input, select, textarea { font: inherit; color: inherit; }

  :root {
    /* Coastal premium palette — sand, fog, ink, deep ocean, warm clay */
    --ink:        #0e1b27;
    --ink-soft:   #253544;
    --sand:       #f6f1e6;
    --sand-deep:  #ece4d3;
    --cream:      #fbf7ee;
    --paper:      #ffffff;
    --fog:        #6e6660;
    --muted:      #6b6355;
    --line:       #d9cfbf;
    --line-dim:   #e8e0ce;
    --clay:       #b8724a;
    --tide:       #4b6e7b;
    --tide-deep:  #2f4e5a;
    --surf:       #d4c2a8;
    --ok:         #2d6a4f;

    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

    --radius-s: 6px;
    --radius:   10px;
    --radius-l: 18px;

    --shadow-1: 0 1px 2px rgba(14,27,39,.06), 0 4px 14px rgba(14,27,39,.05);
    --shadow-2: 0 4px 18px rgba(14,27,39,.08), 0 22px 60px rgba(14,27,39,.10);

    --container: 1240px;
    --gutter: clamp(18px, 4vw, 36px);

    --header-h: 68px;
  }

  html, body { background: var(--cream); color: var(--ink); }
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    font-feature-settings: "ss01","cv01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

  /* ---------- Typography ---------- */
  h1,h2,h3,h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--ink);
  }
  h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 400; letter-spacing: -0.025em; }
  h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
  h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
  h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

  .eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tide-deep);
  }
  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: var(--tide);
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 3px;
  }

  /* ---------- HEADER ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(251,247,238,.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line-dim);
  }
  .site-header__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    height: var(--header-h);
  }
  .brand {
    display: flex; align-items: baseline; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    font-weight: 500;
  }
  .brand__mark {
    width: 30px; height: 30px;
    align-self: center;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
  }
  .brand__tag {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    align-self: center;
    padding-left: 10px;
    border-left: 1px solid var(--line);
    margin-left: 4px;
  }

  .nav { display: none; align-items: center; gap: 28px; }
  @media (min-width: 880px) { .nav { display: flex; } }
  .nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    transition: color .2s;
  }
  .nav a:hover { color: var(--ink); }
  .nav a::after {
    content: "";
    position: absolute; bottom: -5px; left: 0;
    width: 0; height: 1px; background: var(--clay);
    transition: width .25s ease;
  }
  .nav a:hover::after { width: 100%; }

  .header-actions { display: flex; align-items: center; gap: 8px; }
  .icon-btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    height: 40px; padding: 0 14px;
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    color: var(--ink);
    transition: background .2s;
  }
  .icon-btn:hover { background: var(--sand); }
  .icon-btn svg { width: 18px; height: 18px; margin-right: 8px; }
  .cart-count {
    background: var(--clay);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: 6px;
  }
  .cart-count.is-empty { display: none; }

  .menu-btn { display: inline-flex; }
  @media (min-width: 880px) { .menu-btn { display: none; } }
  .menu-btn svg { margin: 0; width: 20px; height: 20px; }

  /* Mobile nav */
  .mnav {
    display: none;
    border-top: 1px solid var(--line-dim);
    background: var(--cream);
    padding: 10px var(--gutter) 20px;
  }
  .mnav.is-open { display: block; }
  .mnav a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--line-dim);
    font-size: 15px; font-weight: 500;
  }
  .mnav a:last-child { border-bottom: 0; }

  .main-logo {
    display: block;
    max-width: 275px;
    width: 100%;
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: clamp(60px, 8vh, 120px) 0;
    background-image: url('../images/travismathew-featured-hero.jpg');
    background-size: cover;
    background-position: center right;
  }
  .hero__inner {
    display: flex;
  }
  .hero__copy {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    background: rgba(251, 247, 238, 0.92);
    border-radius: var(--radius-l);
    padding: clamp(30px, 5vw, 40px);
    color: var(--ink);
  }
  .hero__copy .eyebrow { margin-bottom: 10px; display: inline-block; }
  .hero__copy h1 { margin-bottom: 24px; color: var(--ink); }
  .hero__copy h1 em { font-style: italic; font-weight: 400; color: var(--tide-deep); }
  .hero__lede {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: 32px;
  }
  .hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .hero__copy .btn--ghost {
    color: var(--ink);
    border-color: var(--ink);
  }
  .hero__copy .btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .hero__media { display: none; }
  @media (max-width: 1020px) {
    .hero {
      background-image: none;
      background: var(--cream);
      border-radius: 0;
      padding: 28px 0 0;
    }
    .hero__copy {
      max-width: 100%;
      border-radius: 0;
      background: none;
      color: var(--ink);
    }
    .hero__media {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 2.5;
      overflow: hidden;
    }
    .hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
  }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform .15s ease, box-shadow .2s, background .2s, color .2s;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn--primary {
    background: var(--ink);
    color: var(--cream);
    box-shadow: var(--shadow-1);
  }
  .btn--primary:hover { background: var(--tide-deep); box-shadow: var(--shadow-2); }
  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn--ghost:hover { background: var(--ink); color: var(--cream); }
  .btn--clay {
    background: var(--clay);
    color: white;
  }
  .btn--clay:hover { background: #a1603c; }
  .btn--full { width: 100%; }
  .btn svg { width: 16px; height: 16px; }


  /* ---------- MARQUEE / BRAND BAR ---------- */
  .brand-bar {
    border-block: 1px solid var(--line-dim);
    background: var(--paper);
    padding: 22px 0;
    overflow: hidden;
  }
  .brand-bar__inner {
    display: flex; align-items: center; gap: 48px;
    font-family: var(--font-display); font-style: italic;
    font-size: 15px; color: var(--muted);
    white-space: nowrap;
    animation: marquee 45s linear infinite;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .brand-bar__inner span::after {
    content: "✦";
    margin-left: 48px;
    color: var(--clay);
    font-style: normal;
  }

  /* ---------- SECTIONS ---------- */
  section { padding: clamp(60px, 9vh, 100px) 0; }
  .section-head {
    display: flex; align-items: end; justify-content: space-between;
    flex-wrap: wrap; gap: 22px;
    margin-bottom: 38px;
  }
  .section-head h2 { max-width: 22ch; }
  .section-head p { max-width: 45ch; color: var(--ink-soft); }

  /* ---------- CATEGORY FILTERS ---------- */
  .filter-row {
    display: flex; gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 32px;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .chip {
    display: inline-flex; align-items: center;
    height: 40px; padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-size: 13px; font-weight: 500;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: all .18s;
  }
  .chip:hover { border-color: var(--ink); color: var(--ink); }
  .chip.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
  }
  .chip em { font-style: normal; opacity: .6; margin-left: 6px; font-weight: 400; }

  /* ---------- PRODUCT GRID ---------- */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(16px, 2.2vw, 28px) clamp(14px, 1.8vw, 22px);
  }
  .card {
    display: flex; flex-direction: column;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-dim);
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
    border-color: var(--line);
  }
  .card__img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--sand-deep);
    overflow: hidden;
  }
  .card__img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 8%;
    transition: transform .45s ease;
  }
  .card:hover .card__img img { transform: scale(1.04); }
  .card__badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--ink);
    color: var(--cream);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 999px;
    z-index: 2;
    pointer-events: none;
  }
  .card__badge--new { background: var(--clay); }
  .card__body {
    padding: 18px 20px 22px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .card__cat {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
  }
  .card__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
  }
  .card__foot {
    margin-top: 10px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
  }
  .card__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .card__price small { color: var(--muted); font-weight: 400; font-size: 11px; margin-right: 3px; }
  .card__cta {
    font-size: 12px; font-weight: 600;
    color: var(--tide-deep);
    letter-spacing: 0.02em;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .card__cta::after {
    content: "→";
    transition: transform .2s;
  }
  .card:hover .card__cta::after { transform: translateX(3px); }

  /* ---------- BAND / INLINE FEATURE ---------- */
  .band {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .band::before, .band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .6;
    pointer-events: none;
  }
  .band::before { width: 420px; height: 420px; background: var(--tide); left: -120px; top: -100px; }
  .band::after { width: 520px; height: 520px; background: var(--clay); right: -160px; bottom: -200px; opacity: .25; }
  .band h2, .band h3 { color: var(--cream); }
  .band .eyebrow { color: var(--surf); }
  .band .eyebrow::before { background: var(--surf); }
  .band p { color: #d6ccba; max-width: 55ch; }

  .band__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative; z-index: 1;
  }
  @media (min-width: 880px) {
    .band__grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  }
  .deco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .deco-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background .2s;
  }
  .deco-card:hover { background: rgba(255,255,255,.09); }
  .deco-card__ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--clay);
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
  }
  .deco-card h4 { color: var(--cream); margin-top: 4px; }
  .deco-card p { font-size: 13px; color: #c9bfad; margin: 0; }

  /* ---------- PROCESS (numbered) ---------- */
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  @media (min-width: 760px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  }
  .step {
    padding: 32px 24px;
    background: var(--paper);
    border: 1px solid var(--line-dim);
    border-radius: var(--radius);
    position: relative;
  }
  .step__n {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 3.4rem;
    color: var(--clay);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
  }
  .step h3 { font-family: var(--font-display); margin-bottom: 8px; }
  .step p { font-size: 14.5px; color: var(--ink-soft); }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
  .faq {
    border-bottom: 1px solid var(--line-dim);
    padding: 22px 0;
  }
  .faq summary {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    padding-right: 20px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    color: var(--clay);
    transition: transform .2s;
  }
  .faq[open] summary::after { content: "–"; }
  .faq p {
    padding-top: 14px;
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 70ch;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    color: #c4bbaa;
    padding: 70px 0 26px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 50px;
  }
  @media (min-width: 760px) {
    .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  }
  footer h4 { color: var(--cream); margin-bottom: 14px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
  footer a { color: #c4bbaa; display: block; padding: 4px 0; font-size: 14px; transition: color .2s; }
  footer a:hover { color: var(--cream); }
  .foot-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .foot-brand em { font-style: italic; color: var(--surf); }
  .foot-desc { font-size: 14px; color: #a69c8a; max-width: 32ch; }
  .foot-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
    font-size: 12px; color: #8b8273;
  }

  /* ---------- MODAL / DRAWER ---------- */
  .overlay {
    position: fixed; inset: 0;
    background: rgba(14,27,39,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    z-index: 90;
  }
  .overlay.is-open { opacity: 1; pointer-events: auto; }

  .drawer {
    position: fixed;
    top: 0; right: 0;
    height: 100%;
    width: 100%;
    max-width: 440px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
    z-index: 100;
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line-dim);
  }
  .drawer__head h3 { font-family: var(--font-display); font-size: 1.35rem; }
  .close-btn {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .close-btn:hover { background: var(--sand); }
  .close-btn svg { width: 18px; height: 18px; }
  .drawer__body {
    flex: 1; overflow-y: auto; padding: 22px 24px; -webkit-overflow-scrolling: touch;
  }
  .drawer__foot {
    padding: 22px 24px;
    border-top: 1px solid var(--line-dim);
    background: var(--paper);
  }

  /* Cart items */
  .cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
  }
  .cart-empty svg { width: 52px; height: 52px; margin: 0 auto 18px; color: var(--fog); }
  .cart-empty h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 8px; font-weight: 500; }

  .cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dim);
    align-items: start;
  }
  .cart-item__img {
    width: 72px; height: 72px;
    background: var(--sand-deep);
    border-radius: var(--radius-s);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
  .cart-item__info h5 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.25;
  }
  .cart-item__meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .qty {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    height: 28px;
    overflow: hidden;
  }
  .qty button {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; color: var(--ink-soft);
    transition: background .15s;
  }
  .qty button:hover { background: var(--sand); }
  .qty input {
    width: 42px;
    text-align: center;
    background: transparent;
    border: 0;
    font-size: 13px; font-weight: 600;
    color: var(--ink);
    -moz-appearance: textfield;
  }
  .qty input::-webkit-outer-spin-button,
  .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .cart-item__right {
    text-align: right;
    display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
  }
  .cart-item__price { font-size: 14px; font-weight: 600; }
  .cart-item__remove {
    font-size: 11px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px;
  }
  .cart-item__remove:hover { color: var(--clay); }

  .cart-note {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--sand);
    border-radius: var(--radius-s);
    font-size: 12.5px;
    color: var(--ink-soft);
    display: flex; gap: 10px; align-items: flex-start;
  }
  .cart-note svg { width: 16px; height: 16px; color: var(--clay); flex-shrink: 0; margin-top: 2px; }

  .cart-total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 16px;
  }
  .cart-total strong { font-size: 14px; color: var(--muted); font-weight: 500; }
  .cart-total span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ink);
    font-weight: 500;
  }

  /* ---------- PRODUCT DETAIL MODAL ---------- */
  .modal {
    position: fixed;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 0;
    z-index: 100;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .modal.is-open { opacity: 1; pointer-events: auto; }
  .modal__box {
    background: var(--cream);
    width: 100%;
    max-width: 980px;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    transform: translateY(20px);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
  }
  .modal.is-open .modal__box { transform: translateY(0); }
  @media (min-width: 880px) {
    .modal { padding: 24px; }
    .modal__box {
      grid-template-columns: 1.1fr 1fr;
      height: auto;
      max-height: 90vh;
      border-radius: var(--radius-l);
    }
  }
  .modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 40px; height: 40px;
    background: rgba(251,247,238,.92);
    border-radius: 50%;
    z-index: 2;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-1);
  }
  .modal__close svg { width: 18px; height: 18px; }

  .modal__img {
    background: var(--sand-deep);
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
  }
  .modal__img::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,.04) 100%);
    pointer-events: none;
  }
  .modal__img img { max-width: 100%; max-height: 100%; object-fit: contain; }

  .modal__info {
    padding: 28px 28px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal__cat {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .modal__info h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 8px;
  }
  .modal__sku {
    font-size: 12px; color: var(--fog);
    margin-bottom: 18px;
    font-family: var(--font-body);
    letter-spacing: 0.06em;
  }
  .modal__price {
    font-size: 1.1rem; font-weight: 600;
    color: var(--ink);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-dim);
  }
  .modal__price small { font-weight: 400; color: var(--muted); font-size: 12px; margin-left: 6px; }
  .modal__desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .modal__features {
    display: flex; flex-direction: column; gap: 4px;
    font-size: 13px; color: var(--ink-soft);
    margin-bottom: 22px;
  }
  .modal__features li {
    list-style: none;
    padding-left: 18px;
    position: relative;
  }
  .modal__features li::before {
    content: ""; position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    background: var(--clay);
    border-radius: 50%;
  }

  .size-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 14px;
    gap: 16px;
  }
  .size-head label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
  .size-head .size-hint {
    font-size: 11px; color: var(--muted);
    font-family: var(--font-body);
  }

  /* Size × quantity matrix — each size has its own stepper */
  .size-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }
  .size-cell {
    display: flex; flex-direction: column; gap: 6px;
  }
  .size-cell__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
  }
  .size-stepper {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    height: 40px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
  }
  .size-stepper:focus-within {
    border-color: var(--tide);
    box-shadow: 0 0 0 3px rgba(75,110,123,.15);
  }
  .size-stepper.has-qty {
    border-color: var(--ink);
    background: var(--sand);
  }
  .size-stepper button {
    height: 100%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 400;
    color: var(--ink-soft);
    transition: background .15s, color .15s;
    user-select: none;
  }
  .size-stepper button:hover:not(:disabled) { background: var(--sand-deep); color: var(--ink); }
  .size-stepper button:disabled { opacity: .3; cursor: not-allowed; }
  .size-stepper input {
    width: 100%;
    text-align: center;
    background: transparent;
    border: 0;
    font-size: 14px; font-weight: 600;
    color: var(--ink);
    -moz-appearance: textfield;
    padding: 0;
  }
  .size-stepper input::-webkit-outer-spin-button,
  .size-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  /* Totals bar */
  .totals {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px;
    background: var(--paper);
    border: 1px solid var(--line-dim);
    border-radius: var(--radius-s);
    margin-bottom: 18px;
    gap: 16px;
  }
  .totals__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .totals__qty {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
  }
  .totals__qty small {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-left: 6px;
  }
  .totals__right { text-align: right; }
  .totals__subtotal {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .totals__min {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
  }
  .totals__min.is-warn { color: var(--clay); font-weight: 500; }

  /* ---------- CHECKOUT FORM ---------- */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  @media (min-width: 520px) {
    .form-grid.-cols-2 { grid-template-columns: 1fr 1fr; }
  }
  .field label {
    display: block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .field label.-optional::after {
    content: " · optional";
    font-weight: 400;
    color: var(--fog);
    letter-spacing: 0;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--tide);
    box-shadow: 0 0 0 3px rgba(75,110,123,.15);
  }
  .field textarea { min-height: 80px; resize: vertical; }
  .radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
  .radio-opt {
    flex: 1; min-width: 100px;
    position: relative;
    cursor: pointer;
  }
  .radio-opt input { position: absolute; opacity: 0; pointer-events: none; }
  .radio-opt span {
    display: block;
    padding: 10px 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
    font-size: 13px; font-weight: 500;
    color: var(--ink-soft);
    transition: all .15s;
  }
  .radio-opt input:checked + span {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }

  /* ---------- SUCCESS STATE ---------- */
  .success {
    text-align: center; padding: 40px 24px;
  }
  .success__ico {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--ok);
    color: white;
    margin: 0 auto 20px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .success__ico svg { width: 28px; height: 28px; }
  .success h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: 10px; }
  .success p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto 22px; }

  /* ---------- UTIL ---------- */
  .sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  [hidden] { display: none !important; }

  /* ---------- PRODUCT PAGE (route view) ---------- */
  .pdp {
    padding: clamp(20px, 3vh, 32px) 0 clamp(60px, 9vh, 100px);
    background: var(--cream);
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: clamp(20px, 3vh, 34px);
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--muted); transition: color .15s; }
  .breadcrumb a:hover { color: var(--ink); }
  .breadcrumb .sep { opacity: .5; }
  .breadcrumb .current { color: var(--ink); font-weight: 500; }

  .pdp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
  }
  @media (min-width: 960px) {
    .pdp-grid { grid-template-columns: 1.05fr 1fr; }
  }

  .pdp-media {
    position: sticky;
    top: calc(var(--header-h) + 20px);
  }
  @media (max-width: 959px) { .pdp-media { position: static; } }
  .pdp-media__main {
    aspect-ratio: 3 / 4;
    background: var(--paper);
    border: 1px solid var(--line-dim);
    border-radius: var(--radius-l);
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .pdp-media__main::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 55%, rgba(14,27,39,.04) 100%);
    pointer-events: none;
  }
  .pdp-media__main img {
    width: 85%; height: 85%;
    object-fit: contain;
  }
  .pdp-media__badge {
    position: absolute; top: 18px; left: 18px;
    background: var(--ink); color: var(--cream);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 11px; border-radius: 999px;
  }
  .pdp-media__badge--new { background: var(--clay); }

  .pdp-info {
    display: flex; flex-direction: column;
    gap: 0;
  }
  .pdp-info__cat {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tide-deep);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .pdp-info h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.05;
  }
  .pdp-info__sku {
    font-size: 12px;
    color: var(--fog);
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    font-family: var(--font-body);
  }
  .pdp-info__price {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line-dim);
  }
  .pdp-info__price small {
    font-weight: 400; color: var(--muted);
    font-size: 12px; margin-left: 8px;
    letter-spacing: 0.02em;
  }
  .pdp-info__desc {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin-bottom: 22px;
    max-width: 58ch;
  }
  .pdp-info__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    margin-bottom: 32px;
    font-size: 13.5px;
    color: var(--ink-soft);
  }
  @media (max-width: 520px) { .pdp-info__features { grid-template-columns: 1fr; } }
  .pdp-info__features li {
    list-style: none;
    padding-left: 18px;
    position: relative;
    line-height: 1.45;
    padding-block: 3px;
  }
  .pdp-info__features li::before {
    content: "";
    position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px;
    background: var(--clay); border-radius: 50%;
  }

  /* Related products strip */
  .related-section {
    border-top: 1px solid var(--line-dim);
    padding: clamp(60px, 9vh, 90px) 0;
    background: var(--sand);
  }
  .related-head {
    display: flex; justify-content: space-between; align-items: end;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 32px;
  }
  .related-head h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
  .related-head a {
    font-size: 13px; font-weight: 600;
    color: var(--tide-deep);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .related-head a::after { content: "→"; transition: transform .2s; }
  .related-head a:hover::after { transform: translateX(3px); }
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
  }

/* Card-as-link styles — added when migrating from JS click to native nav */
a.card { color: inherit; text-decoration: none; display: block; }
a.card:hover { text-decoration: none; }
