/* ============================================================
   NodoGraphics — nodographics.com
   Blanco dominante · Display: Brigends Expanded · Texto: Hanken Grotesk
   ============================================================ */

@font-face {
  font-family: "Brigends Expanded";
  src: url("/assets/fonts/BrigendsExpanded.woff2") format("woff2"),
       url("/assets/fonts/BrigendsExpanded.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/HankenGrotesk.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --gray-strong: #3f3f46;   /* texto secundario sobre blanco */
  --gray-soft: #b5b5bd;     /* texto secundario sobre negro */
  --band: #f4f4f5;          /* banda gris clara */
  --line: #e4e4e7;
  --line-dark: #2a2a2e;
  --font-display: "Brigends Expanded", "Arial Black", "Segoe UI", sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--paper); }

h1, h2, h3 { text-wrap: balance; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem var(--pad-x);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand { text-decoration: none; display: flex; align-items: center; }

.brand-logo { height: 34px; width: auto; }

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-strong);
  padding: 0.5rem 0;
  transition: color 0.2s var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }

/* ============ Botones ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: transparent; color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-header {
  min-height: 42px;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
}

/* Variantes para fondos oscuros */
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.btn-light:hover { background: transparent; color: var(--paper); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ============ Hero ============ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(88dvh, 60rem);
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  overflow: hidden;
}

/* Fondo animado: los colores del vinilo flotando */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--c);
  opacity: var(--o, 0.85);
  filter: blur(var(--b, 0px));
  animation: hero-float var(--t, 18s) ease-in-out var(--dl, 0s) infinite alternate;
  will-change: transform;
}

.hero-bg .holo {
  background: linear-gradient(120deg, #ffd1ff, #a5f3fc 35%, #fef9c3 65%, #c4b5fd);
}

@keyframes hero-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(var(--dx, 0px), var(--dy, -30px)) scale(var(--sc, 1.15)); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 46rem;
}

.hero-logo {
  width: min(34rem, 82vw);
  height: auto;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 2.4vw, 1.3rem);
  letter-spacing: 0.06em;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}
.hero-tag .dot { opacity: 0.35; }

.hero-sub {
  max-width: 30rem;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--gray-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero-swatches {
  list-style: none;
  display: flex;
  gap: 0.55rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.hero-swatches li,
.swatches li {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c, #ccc);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.hero-swatches .holo,
.swatches .holo {
  background: linear-gradient(120deg, #ffd1ff, #a5f3fc 35%, #fef9c3 65%, #c4b5fd);
}

.hero-swatches-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--gray-strong);
}

/* Entrada del hero */
.hero-inner > * {
  animation: hero-in 0.9s var(--ease-out) both;
}
.hero-inner > *:nth-child(2) { animation-delay: 0.12s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.28s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.46s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ============ Secciones (cabecera común) ============ */

section { padding: clamp(4rem, 8vw, 6.5rem) var(--pad-x); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  max-width: 78rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.12;
}

.section-head p {
  color: var(--gray-strong);
  max-width: 30rem;
  justify-self: end;
}

/* ============ Tienda ============ */

.shop { background: var(--band); }

.product-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 78rem;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease-out);
}
.product-card:hover { border-color: var(--ink); }

.product-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover .product-media img { transform: scale(1.03); }

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  padding: 1.5rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.35;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--gray-strong);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-price {
  font-size: 0.85rem;
  color: var(--gray-strong);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.product-price strong { font-size: 1.3rem; font-weight: 700; color: var(--ink); }

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--ink);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.product-cta:hover { background: var(--ink); color: var(--paper); }

.services-note {
  max-width: 78rem;
  margin: 1.5rem auto 0;
  font-size: 0.9rem;
  color: var(--gray-strong);
}
.services-note a { color: var(--ink); font-weight: 600; }

.features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  max-width: 78rem;
  margin: 3.5rem auto 0;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-strong);
}

.features svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--ink); }

/* ============ Personaliza ============ */

.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 78rem;
  margin: 0 auto;
}

.custom-panel {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
}

.custom-panel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.panel-note {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--gray-strong);
}

.swatches {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.6rem;
  max-width: 17rem;
}

.swatches li {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  transition: transform 0.2s var(--ease-out);
}
.swatches li:hover { transform: scale(1.18); }

.type-samples { list-style: none; display: flex; flex-direction: column; }

.type-samples li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.type-samples li:last-child { border-bottom: none; }

.type-samples small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-strong);
}

.ts { font-size: 1.05rem; }
.ts-moderna { font-weight: 600; }
.ts-script { font-family: "Segoe Script", "Brush Script MT", cursive; }
.ts-deportiva { font-weight: 800; font-style: italic; letter-spacing: 0.02em; }
.ts-minimalista { font-weight: 300; letter-spacing: 0.14em; }
.ts-agresiva { font-family: "Arial Black", sans-serif; font-style: italic; letter-spacing: -0.02em; }
.ts-tecno { font-family: "Consolas", "Courier New", monospace; letter-spacing: 0.05em; }

.sizes { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.size-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.size-info strong { font-weight: 700; min-width: 3.4rem; }
.size-info em { font-style: normal; color: var(--gray-strong); font-size: 0.9rem; }

.size-bar {
  display: block;
  width: var(--w, 50%);
  height: 10px;
  margin-top: 0.35rem;
  background: var(--ink);
}
.sizes .recommended .size-bar { background: var(--ink); }

.tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--ink);
}

/* ============ Cómo pedir ============ */

.how { background: var(--band); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 78rem;
  margin: 0 auto;
}

.step {
  border-top: 2px solid var(--ink);
  padding-top: 1.4rem;
}

.step-num {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }

.step p { color: var(--gray-strong); font-size: 0.95rem; }

/* ============ Trabajos ============ */

.work {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.work-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 1.5rem;
}

.work-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4.4vw, 3rem);
  line-height: 1.14;
}

.work-sub {
  max-width: 32rem;
  margin: 1.5rem auto 0;
  color: var(--gray-soft);
}
.work-sub strong { color: var(--paper); }

.work-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

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

.footer {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x) 0;
  overflow: hidden;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  text-align: center;
}
.footer-title .dot { opacity: 0.4; }

.footer-sub {
  text-align: center;
  color: var(--gray-soft);
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 60rem;
  margin: 3rem auto 0;
}

.footer-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.75rem;
  text-decoration: none;
  border: 1px solid var(--line-dark);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.footer-link .fl-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}
.footer-link:hover { background: var(--paper); color: var(--ink); }
.footer-link:hover .footer-link-label { color: var(--gray-strong); }

.footer-link-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-soft);
  transition: color 0.25s var(--ease-out);
}

.footer-link-value { font-size: 1.1rem; font-weight: 700; overflow-wrap: anywhere; }

.footer-word {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 7rem);
  text-align: center;
  line-height: 0.8;
  white-space: nowrap;
  opacity: 0.09;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  transform: translateY(18%);
  pointer-events: none;
  user-select: none;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
  color: var(--gray-soft);
}
.footer-legal a { color: var(--gray-soft); }

/* ============ Reveal (solo con JS activo) ============ */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
html.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============ Móvil ============ */

@media (max-width: 860px) {
  .site-nav { display: none; }
  .btn-header { margin-left: auto; }

  /* En móvil: solo las manchas suaves (reducidas) y tres puntos en zonas seguras */
  .hero-bg span { display: none; }
  .hero-bg span:nth-child(1),
  .hero-bg span:nth-child(2),
  .hero-bg span:nth-child(3) {
    display: block;
    width: calc(var(--s) * 0.6);
    height: calc(var(--s) * 0.6);
    opacity: calc(var(--o, 0.85) * 0.7);
  }
  .hero-bg span:nth-child(4)  { display: block; left: 8%;  top: 91%; }
  .hero-bg span:nth-child(5)  { display: block; left: 88%; top: 6%; }
  .hero-bg span:nth-child(10) { display: block; left: 55%; top: 93%; }

  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head p { justify-self: start; }

  .footer-legal { flex-direction: column; align-items: center; text-align: center; }
}

/* ============ Movimiento reducido ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-inner > * { animation: none; }
  .hero-bg span { animation: none; }
  .swatches li { transition: none; }
  .btn, .product-card, .product-media img, .product-cta, .footer-link { transition: none; }
}

/* ============ Página de producto ============ */

.pp {
  max-width: 78rem;
  margin: 0 auto;
  padding: 2rem var(--pad-x) clamp(4rem, 8vw, 6rem);
}

.pp-breadcrumb { margin-bottom: 1.75rem; font-size: 0.9rem; }
.pp-breadcrumb a { color: var(--gray-strong); text-decoration: none; font-weight: 500; }
.pp-breadcrumb a:hover { color: var(--ink); }

.pp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.pp-main { border: 1px solid var(--line); }
.pp-main-img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.pp-thumbs { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.pp-thumb {
  width: 84px;
  padding: 0;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
}
.pp-thumb img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.pp-thumb.active { border-color: var(--ink); }

.pp-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1.2;
}

.pp-pricing { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; }
#pp-price { font-size: 1.9rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.pp-pricing small { color: var(--gray-strong); font-size: 0.85rem; }

.pp-desc { margin-top: 1.25rem; color: var(--gray-strong); }

.pp-form { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.75rem; }

.opt-group { border: none; min-width: 0; }

.opt-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.opt-input {
  width: 100%;
  max-width: 22rem;
  min-height: 48px;
  padding: 0.6rem 0.9rem;
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.opt-note { margin-top: 0.8rem; font-size: 0.8rem; color: var(--gray-strong); }

/* Selector de color */
.swatch-picker { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 26rem; }
.swatch-opt { position: relative; cursor: pointer; }
.swatch-opt input { position: absolute; opacity: 0; pointer-events: none; }
.swatch-opt span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c, #ccc);
  border: 1px solid rgba(0, 0, 0, 0.18);
  transition: transform 0.2s var(--ease-out);
}
.swatch-opt span.holo { background: linear-gradient(120deg, #ffd1ff, #a5f3fc 35%, #fef9c3 65%, #c4b5fd); }
.swatch-opt:hover span { transform: scale(1.12); }
.swatch-opt input:checked + span,
.swatch-opt input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.swatch-opt i {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Selector de tipografía */
.chip-picker { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt span { font-size: 1rem; line-height: 1.2; }
.chip-opt i {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-strong);
}
.chip-opt:hover { border-color: var(--ink); }
.chip-opt:has(input:checked) { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip-opt:has(input:checked) i { color: var(--gray-soft); }
.chip-opt:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }

/* Selector de tamaño */
.size-picker { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.size-opt {
  position: relative;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.size-opt input { position: absolute; opacity: 0; pointer-events: none; }
.size-opt span { display: flex; align-items: center; gap: 0.55rem; font-variant-numeric: tabular-nums; }
.size-opt em { font-style: normal; color: var(--gray-strong); font-size: 0.85rem; }
.size-opt .tag { font-weight: 700; }
.size-opt:hover { border-color: var(--ink); }
.size-opt:has(input:checked) { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.size-opt:has(input:checked) em { color: var(--gray-soft); }
.size-opt:has(input:checked) .tag { border-color: currentColor; }
.size-opt:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }

.pp-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.pp-copy-note { font-size: 0.85rem; color: var(--gray-strong); }

.pp-features {
  list-style: none;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gray-strong);
  font-size: 0.92rem;
}
.pp-features li::before { content: "— "; color: var(--ink); }

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

@media (prefers-reduced-motion: reduce) {
  .swatch-opt span, .chip-opt, .size-opt { transition: none; }
}
