/* Pulse Fitness — Performance-Tech Monochrome */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Bebas+Neue&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-elev: #121212;
  --bg-elev-2: #1a1a1a;
  --line: #232323;
  --line-soft: #1c1c1c;
  --fg: #f5f5f5;
  --fg-mute: #a8a8a8;
  --fg-dim: #6e6e6e;
  --accent: #f5f5f5; /* monochrome — accent is just white */

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--fg); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: #fff; color: #000; }

/* ====== Type ====== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}
.h1 { font-size: clamp(56px, 9vw, 132px); }
.h2 { font-size: clamp(40px, 6vw, 88px); }
.h3 { font-size: clamp(28px, 3.6vw, 52px); }
.body { font-size: 15px; line-height: 1.6; color: var(--fg-mute); }
.label-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ====== Layout ====== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  border-radius: var(--r-sm);
  transition: all .25s ease;
}
.btn:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn-primary { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn-primary:hover { background: var(--bg); color: var(--fg); border-color: var(--fg); }
.btn-ghost { border-color: transparent; padding: 14px 0; }
.btn-ghost:hover { background: transparent; color: var(--fg); border-color: transparent; opacity: .6; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ====== Nav ====== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo-wrap { flex: 0 0 auto; margin: 0 auto; padding: 0 16px; }
.nav-links { display: flex; gap: 28px; flex: 1 1 0; min-width: 0; }
.nav-links-right { display: flex; gap: 24px; flex: 1 1 0; min-width: 0; align-items: center; justify-content: flex-end; }
.nav-links-right > a + a { margin-left: 0; }
.nav-links-right .nav-icon-btn { margin-left: 4px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--fg);
}
.nav-right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.nav-icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  position: relative;
  color: var(--fg);
  transition: background .2s ease;
}
.nav-icon-btn:hover { background: var(--bg-elev-2); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  background: var(--fg); color: var(--bg);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ====== Logo ====== */
.logo { display: inline-flex; align-items: center; gap: 18px; }
.logo-mark { width: 110px; height: 56px; color: var(--fg); }
.logo-mark .pulse-bg { stroke: rgba(255,255,255,0.10); }
.logo-text {
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: 0.18em;
  font-weight: 700;
  line-height: 1;
}

/* ====== Footer ====== */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px var(--pad-x) 32px;
  margin-top: 120px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.footer-mark {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-mark .logo-mark { width: 72px; height: 36px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 0;
  justify-self: end;
  text-align: right;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--fg); opacity: .85; }
.footer ul a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--container);
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ====== Placeholder media (no AI imagery) ====== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, #161616 0 12px, #0f0f0f 12px 24px);
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.ph-hero {
  background:
    radial-gradient(120% 80% at 30% 10%, #1a1a1a 0%, #0a0a0a 60%),
    repeating-linear-gradient(135deg, #141414 0 14px, #0d0d0d 14px 28px);
}
.ph-hero::before { color: #4a4a4a; font-size: 11px; }

/* Crosshair corners on placeholders for "tech" feel */
.ph-tech::after {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ====== Cards ====== */
.product-card {
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
}
.product-media {
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-elev);
}
.product-media .ph { position: absolute; inset: 0; transition: transform .8s ease; }
.product-card:hover .product-media .ph { transform: scale(1.04); }
.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .5s ease, transform .8s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-swatches {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.product-swatches .swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.product-swatches .swatch-more {
  font-size: 10px; font-family: var(--font-mono, monospace);
  color: #fff; background: rgba(0,0,0,0.5);
  border-radius: 999px; padding: 2px 6px;
  letter-spacing: 0.05em;
}
.product-media .quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 12px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--fg);
  cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.product-media .quick-add:hover { background: var(--fg); color: var(--bg); }
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 10px;
  background: var(--fg); color: var(--bg);
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px;
}
.product-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.product-name { font-size: 14px; font-weight: 500; letter-spacing: 0.01em; }
.product-cat { font-family: var(--font-mono); font-size: 10px; color: var(--fg-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.product-price { font-family: var(--font-mono); font-size: 13px; }

/* ====== Filter Pills ====== */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-mute);
  transition: all .2s ease;
}
.pill:hover { color: var(--fg); border-color: var(--fg-mute); }
.pill.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ====== Cart Drawer ====== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  z-index: 101;
  background: var(--bg-elev);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.cart-item-media { aspect-ratio: 3/4; background: var(--bg-elev-2); border-radius: var(--r-sm); overflow: hidden; position: relative; }
.cart-item-name { font-size: 13px; font-weight: 500; }
.cart-item-meta { font-family: var(--font-mono); font-size: 10px; color: var(--fg-dim); margin-top: 4px; letter-spacing: 0.08em; }
.qty {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-family: var(--font-mono); font-size: 11px;
}
.qty button {
  width: 22px; height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-mute);
}
.qty button:hover { color: var(--fg); border-color: var(--fg-mute); }
.cart-item-price { font-family: var(--font-mono); font-size: 13px; }
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.cart-row { display: flex; justify-content: space-between; align-items: center; }
.cart-empty {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 40px;
}

/* ====== Section helpers ====== */
.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }
.section-head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ====== Hero ====== */
.hero { position: relative; }
.hero-media { position: relative; height: clamp(560px, 86vh, 900px); overflow: hidden; }
.hero-media .ph { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.0) 30%, rgba(10,10,10,0.85) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 var(--pad-x) 56px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  align-items: end;
  max-width: var(--container); margin: 0 auto;
}
.hero-meta {
  position: absolute; top: 32px; left: 0; right: 0;
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
  max-width: var(--container); margin: 0 auto;
}
.hero-thumbs {
  position: absolute; top: 80px; right: var(--pad-x);
  display: flex; flex-direction: column; gap: 8px;
}
.hero-thumbs .ph {
  width: 80px; height: 100px;
  border-radius: var(--r-sm);
}

/* ====== Marquee ====== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 48px; animation: marquee 32s linear infinite; padding-left: 48px; }
.marquee-track > span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fg-mute); display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ====== Reveal anim ====== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .65s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .75s; opacity: 1; transform: none; }

/* Logo pulse line is now scroll-driven (offset set inline by JS).
   Heartbeat scale pulse stays as ambient motion. */
@keyframes pulseBeat {
  0%   { transform: scale(1);    animation-timing-function: cubic-bezier(.2,.7,.3,1); }
  8%   { transform: scale(1.10); animation-timing-function: cubic-bezier(.5,0,.5,1); }
  18%  { transform: scale(1);    animation-timing-function: cubic-bezier(.2,.7,.3,1); }
  26%  { transform: scale(1.05); animation-timing-function: cubic-bezier(.5,0,.5,1); }
  36%  { transform: scale(1);    animation-timing-function: linear; }
  100% { transform: scale(1); }
}
.logo-mark {
  transform-origin: 50% 50%;
  animation: pulseBeat 5s linear infinite;
  will-change: transform;
}
.logo-mark .pulse-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200; /* empty by default — JS animates this on scroll */
  transition: stroke-dashoffset .15s linear;
  will-change: stroke-dashoffset;
}

/* Inputs */
.input, .textarea, select.input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  border-radius: var(--r-sm);
  transition: border-color .2s ease;
}
.input:focus, .textarea:focus, select.input:focus { outline: none; border-color: var(--fg-mute); }
.textarea { resize: vertical; min-height: 140px; }
label.field { display: flex; flex-direction: column; gap: 8px; }
label.field > span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-mute); }

/* responsive */
@media (max-width: 1100px) {
  .nav { gap: 20px; }
  .nav-logo-wrap { padding: 0 8px; }
  .nav-links { gap: 18px; }
  .nav-links-right { gap: 16px; }
}
@media (max-width: 960px) {
  .nav-links a, .nav-links-right > a { display: none; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero-thumbs { display: none; }
  .hero-content { grid-template-columns: 1fr; }
}

/* ====== Product Modal ====== */
.pm-overlay {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.pm-overlay.open { opacity: 1; pointer-events: auto; }
.pm-dialog {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1080px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  z-index: 100;
  animation: pm-in .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes pm-in {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.pm-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg); cursor: pointer;
  z-index: 2;
  transition: background .2s ease;
}
.pm-close:hover { background: var(--fg); color: var(--bg); }
.pm-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
}
.pm-media {
  position: relative;
  background: var(--bg-soft);
  height: min(78vh, 720px);
  max-height: 720px;
  overflow: hidden;
}
.pm-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: pm-fade .25s ease;
}
@keyframes pm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pm-thumbs {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; gap: 8px;
}
.pm-thumb {
  width: 56px; height: 70px;
  padding: 0; overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s ease, border-color .2s ease;
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-thumb:hover { opacity: 1; }
.pm-thumb.active { opacity: 1; border-color: var(--fg); }
.pm-info {
  padding: 56px 48px 40px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.pm-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--fg); color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pm-name {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.pm-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.pm-price {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
}
.pm-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft, #c7c5be);
  margin: 4px 0 0;
}
.pm-section { display: flex; flex-direction: column; gap: 10px; }
.pm-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.pm-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.pm-swatch {
  width: 36px; height: 36px;
  padding: 3px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.pm-swatch > span {
  display: block; width: 100%; height: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.pm-swatch.active { border-color: var(--fg); }
.pm-swatch:hover { border-color: var(--fg-dim); }
.pm-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-size {
  min-width: 48px; height: 44px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.pm-size:hover { border-color: var(--fg); }
.pm-size.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.pm-actions { margin-top: 6px; }
.pm-specs {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 10px; column-gap: 16px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
.pm-specs dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding-top: 2px;
}
.pm-specs dd {
  margin: 0;
  font-size: 13px;
  color: var(--fg);
}
@media (max-width: 880px) {
  .pm-grid { grid-template-columns: 1fr; }
  .pm-media { height: 60vh; max-height: 520px; }
  .pm-info { padding: 32px 24px; }
  .pm-name { font-size: 36px; }
}
