/* BoxRegalos · industrial workshop · strict B&W */

:root {
  --ink: #0A0A0A;
  --paper: #F4F1EB;
  --paper-2: #E8E3D8;
  --smoke: #1A1A1A;
  --smoke-2: #242424;
  --ash: #6B6B66;
  --line: rgba(244, 241, 235, 0.12);
  --line-ink: rgba(10, 10, 10, 0.14);
  --grain-opacity: 0.06;

  --display: "Anton", "Bebas Neue", "Arial Narrow", sans-serif;
  --serif:   "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --body:    "Manrope", "DM Sans", system-ui, sans-serif;

  --max: 1480px;
  --gut: clamp(20px, 4vw, 64px);
}

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

html {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
}

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

button { font: inherit; color: inherit; }

/* GRAIN OVERLAY (toggleable) */
.grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Type ramp */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.86;
  text-transform: uppercase;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ash);
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Layout helpers */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

.full {
  padding-left: var(--gut);
  padding-right: var(--gut);
}

/* hairline */
.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}
.rule-ink { background: var(--line-ink); }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1100ms cubic-bezier(.2,.7,.2,1), transform 1100ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1400ms cubic-bezier(.7,.05,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal-clip.in { clip-path: inset(0 0 0 0); }

.reveal-blur { filter: blur(14px); }
.reveal-blur.in { filter: blur(0); transition: filter 1200ms ease, opacity 1200ms ease, transform 1200ms ease; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background 400ms ease, border-color 400ms ease, backdrop-filter 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.7);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .8;
  transition: opacity 200ms ease;
}
.nav-links a:hover { opacity: 1; }

/* Mega-menús desplegables al hover */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { transition: transform 220ms ease; opacity: 0.8; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-mega {
  position: absolute; top: 100%; left: 0; transform: translate(0, 10px);
  margin-top: 14px; width: min(560px, 80vw);
  background: rgba(16,16,16,0.96);
  -webkit-backdrop-filter: blur(20px) saturate(160%); backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 18px; z-index: 120;
  opacity: 0; pointer-events: none; visibility: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
}
/* Puente invisible para que el mouse llegue al panel sin cerrarlo */
.nav-mega::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-item:hover .nav-mega { opacity: 1; pointer-events: auto; visibility: visible; transform: translate(0, 0); }
/* InkSide se abre alineado a la derecha del trigger para no salir de pantalla */
.nav-item-ink .nav-mega { left: auto; right: 0; }
/* Empresas: alineado a la derecha */
.nav-mega-right { left: auto; right: 0; }
/* Diseños: panel ancho con scroll interno */
.nav-mega-wide { width: min(680px, 86vw); }
.nav-mega-scroll { max-height: 340px; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; }
.nav-mega-scroll::-webkit-scrollbar { width: 8px; }
.nav-mega-scroll::-webkit-scrollbar-thumb { background: rgba(244,241,235,0.18); border-radius: 999px; }
.nav-mega-grid-3 { grid-template-columns: repeat(2, 1fr); }
.nav-mega-item-sm { padding: 9px 12px; }
.nav-mega-item-sm .nav-mega-name { font-size: 13px; font-weight: 600; }
/* Los <a> dentro del mega heredan estilo de ítem, sin subrayado */
.nav-mega .nav-mega-item { text-decoration: none; }
.nav-mega-hd {
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash);
  padding: 4px 10px 14px;
}
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-mega-item {
  display: flex; flex-direction: column; gap: 3px; text-align: left; cursor: pointer;
  background: transparent; border: 0; border-radius: 10px; padding: 11px 12px;
  transition: background 180ms ease;
}
.nav-mega-item:hover { background: rgba(244,241,235,0.08); }
.nav-mega-name {
  font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--paper);
  letter-spacing: 0.01em;
}
.nav-mega-meta {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ash); font-weight: 600;
}
/* Variante InkSide (violeta) */
.nav-mega-ink { border-color: rgba(200,169,250,0.28); }
.nav-mega-ink .nav-mega-hd { color: var(--ink-lila); }
.nav-mega-ink .nav-mega-item:hover { background: rgba(138,80,240,0.16); }
.nav-mega-ink .nav-mega-item:hover .nav-mega-meta { color: var(--ink-lila); }
.nav-item-ink:hover .nav-trigger { color: var(--ink-lila); }

.cart-btn {
  appearance: none; border: 1px solid var(--paper); background: transparent;
  color: var(--paper);
  padding: 10px 14px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 200ms ease, color 200ms ease;
}
.cart-btn:hover { background: var(--paper); color: var(--ink); }
.cart-count {
  background: var(--paper); color: var(--ink);
  font-size: 10px; padding: 2px 6px; border-radius: 999px; min-width: 16px; text-align: center;
  font-variant-numeric: tabular-nums;
  transition: background 200ms ease, color 200ms ease;
}
.cart-btn:hover .cart-count { background: var(--ink); color: var(--paper); }

/* NAV SEARCH */
.nav-search-btn {
  appearance: none; border: 1px solid var(--line); background: transparent;
  color: var(--paper);
  padding: 10px 14px; margin-left: 4px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.nav-search-btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav-search-btn svg { display: block; }

/* SEARCH OVERLAY */
.search-scrim {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,10,10,0.6); backdrop-filter: blur(6px);
  display: flex; justify-content: center; align-items: flex-start;
  padding: clamp(70px, 12vh, 150px) 20px 40px;
  animation: searchFade 200ms ease;
}
@keyframes searchFade { from { opacity: 0; } to { opacity: 1; } }
.search-panel {
  width: min(680px, 100%);
  background: var(--paper); color: var(--ink);
  display: flex; flex-direction: column;
  max-height: 78vh;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  animation: searchRise 260ms cubic-bezier(.2,.7,.2,1);
}
@keyframes searchRise { from { transform: translateY(-18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.search-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px; border-bottom: 1px solid rgba(10,10,10,0.12);
}
.search-ico { color: rgba(10,10,10,0.45); flex: 0 0 auto; }
.search-input {
  flex: 1; border: 0; background: transparent; color: var(--ink);
  font-family: var(--body); font-size: 18px; font-weight: 500;
  letter-spacing: 0.01em;
}
.search-input:focus { outline: none; }
.search-input::placeholder { color: rgba(10,10,10,0.4); }
.search-clear {
  appearance: none; border: 0; background: transparent; color: rgba(10,10,10,0.5);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px;
}
.search-clear:hover { color: var(--ink); }
.search-close {
  appearance: none; border: 1px solid rgba(10,10,10,0.2); background: transparent;
  color: rgba(10,10,10,0.55); border-radius: 6px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding: 5px 8px; cursor: pointer; flex: 0 0 auto;
}
.search-close:hover { border-color: var(--ink); color: var(--ink); }
.search-results { overflow-y: auto; padding: 8px 0 12px; }
.search-hint, .search-empty {
  padding: 34px 26px; color: rgba(10,10,10,0.55); font-size: 14px; line-height: 1.6;
}
.search-empty { text-align: center; }
.search-empty p { margin: 0 0 18px; font-size: 15px; }
.search-count {
  padding: 12px 24px 8px; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; color: rgba(10,10,10,0.4);
}
.search-hit {
  width: 100%; appearance: none; border: 0; background: transparent; cursor: pointer;
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(10,10,10,0.06);
  transition: background 140ms ease;
}
.search-hit:hover { background: rgba(10,10,10,0.05); }
.search-hit-ph {
  width: 48px; height: 48px; flex: 0 0 auto;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.search-hit-ph img { width: 100%; height: 100%; object-fit: cover; }
.search-hit-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.search-hit-name {
  font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-hit-cat {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(10,10,10,0.45); font-weight: 600;
}
.search-hit-price {
  flex: 0 0 auto; font-family: var(--display); font-size: 17px; color: var(--ink);
  letter-spacing: 0.01em;
}
@media (max-width: 560px) {
  .nav-search-label { display: none; }
  .nav-search-btn { padding: 10px; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px;
  border: 1px solid var(--paper);
  background: var(--paper); color: var(--ink);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease, transform 200ms ease;
}
.btn:hover { background: transparent; color: var(--paper); }
.btn-ghost {
  background: transparent; color: var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-ink {
  border-color: var(--ink); background: var(--ink); color: var(--paper);
}
.btn-ink:hover { background: transparent; color: var(--ink); }

/* MARQUEE */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  gap: 60px;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 32s linear infinite;
  flex-shrink: 0;
  align-items: center;
}
.marquee-item {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 88px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-item.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--paper);
}
.marquee-spark { width: clamp(28px, 4vw, 56px); height: clamp(28px, 4vw, 56px); flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gut) 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 75% 30%, rgba(255,255,255,0.08), transparent 65%),
    radial-gradient(600px 500px at 10% 90%, rgba(255,255,255,0.04), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
  opacity: .6;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.84;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero h1 .it {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.015em;
}
.hero-sub {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 20px; max-width: 480px;
}
.hero-sub p {
  margin: 0; font-size: 16px; line-height: 1.55; color: rgba(244,241,235,0.78);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

.hero-vis {
  position: relative; z-index: 2;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #1A1A1A, #0A0A0A);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-meta {
  position: absolute; z-index: 3;
  top: 110px; right: var(--gut);
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
  text-align: right;
}
.hero-meta .label { color: var(--ash); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-meta .val   { font-family: var(--display); font-size: 28px; line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; }

.scroll-cue {
  position: absolute; left: var(--gut); bottom: 30px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  color: var(--ash); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 60px; background: var(--paper);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, var(--ink), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* SECTION HEAD */
.section {
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
}
.section.dark { background: var(--ink); color: var(--paper); }
.section.paper { background: var(--paper); color: var(--ink); }
.section.paper .eyebrow { color: rgba(10,10,10,0.5); }

.head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
  padding-bottom: 56px;
}
.head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.84;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.head h2 .it { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: -0.015em; }
.head p { font-size: 16px; line-height: 1.55; max-width: 460px; margin: 0; opacity: .78; }
.head .right { justify-self: end; max-width: 460px; }

/* PRODUCT GRID */
.products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product {
  background: var(--ink);
  padding: 32px 28px 28px;
  position: relative;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background 350ms ease;
  min-height: 540px;
}
.product:hover { background: #131313; }
.product.out-of-stock { opacity: 0.55; cursor: not-allowed; }
.product.out-of-stock:hover { background: var(--ink); }
.product.out-of-stock:hover .ph-inner { transform: none; }
.product.out-of-stock:hover .add .arrow { background: transparent; color: var(--paper); transform: none; }
.product .ph {
  flex: 1; margin: 18px 0 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product .ph-inner {
  width: 88%; height: 92%;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, #1f1f1f, #0e0e0e);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.product:hover .ph-inner { transform: scale(1.04); }
.product .ph svg { width: 50%; height: 50%; opacity: .85; }
.product-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash);
  font-weight: 600;
}
.product-info {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
}
.product h3 {
  font-family: var(--display); font-size: 36px; line-height: 0.9; margin: 0;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.product .meta { font-size: 11px; color: var(--ash); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }
.product .price { font-family: var(--display); font-size: 28px; line-height: 1; }
.product .add {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--paper);
  transition: color 200ms ease;
}
.product .add .arrow {
  display: inline-flex; width: 28px; height: 28px;
  border: 1px solid var(--paper); border-radius: 999px;
  align-items: center; justify-content: center;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease;
}
.product:hover .add .arrow { background: var(--paper); color: var(--ink); transform: translateX(4px); }

/* PROCESS */
.process {
  background: var(--paper); color: var(--ink);
}
.process .steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.step {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--line-ink);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 360px;
}
.step:last-child { border-right: none; }
.step .num {
  font-family: var(--display); font-size: 96px; line-height: 0.8;
  letter-spacing: -0.02em;
}
.step h4 {
  font-family: var(--display); font-size: 28px; margin: 0;
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 0.95;
}
.step p { margin: 0; font-size: 14px; line-height: 1.55; opacity: .72; }
.step .ico { margin-top: auto; opacity: .9; }

/* CATEGORIES */
.cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1px;
  background: var(--line);
}
.cat {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 26px;
  cursor: pointer;
  transition: background 300ms ease;
}
.cat:hover { background: #161616; }
.cat .name {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.005em;
  position: relative; z-index: 2;
}
.cat .count {
  position: absolute; top: 22px; left: 26px; z-index: 2;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash);
}
.cat .vis {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
  transition: opacity 500ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}
.cat:hover .vis { opacity: 0.85; transform: scale(1.06); }
.cat .vis svg { width: 45%; height: 45%; }
.cat .arrow {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  width: 36px; height: 36px; border: 1px solid var(--line);
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
}
.cat:hover .arrow { background: var(--paper); color: var(--ink); transform: translate(2px,-2px); border-color: var(--paper); }

.cat.span-2 { grid-column: span 2; }
.cat.span-3 { grid-column: span 3; }
.cat.span-6 { grid-column: span 6; }
.cat.row-2  { grid-row: span 2; }

/* Hero category (diseños exclusivos) — full width, taller, more dramatic */
.cat.hero {
  grid-row: span 2;
  padding: 48px var(--gut);
  background:
    radial-gradient(700px 400px at 80% 40%, rgba(244,241,235,0.06), transparent 65%),
    var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.cat.hero .name {
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.88;
}
.cat.hero .name .it {
  font-family: var(--serif); font-style: italic; text-transform: none;
  letter-spacing: -0.015em;
}
.cat.hero .desc {
  font-size: 14px; line-height: 1.55; max-width: 460px; margin-top: 16px;
  color: rgba(244,241,235,0.78); position: relative; z-index: 2;
}
.cat.hero .vis {
  position: relative; inset: auto; opacity: 1;
  width: clamp(160px, 18vw, 240px); height: clamp(160px, 18vw, 240px);
  margin-right: 60px;
}
.cat.hero .vis svg { width: 100%; height: 100%; }
.cat.hero .arrow {
  top: 32px; right: 32px;
  width: 44px; height: 44px;
}
.cat.hero .count {
  top: 32px; left: var(--gut);
  font-size: 11px; letter-spacing: 0.24em;
}

/* OCCASIONS */
.occ {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-ink);
}
.occ-item {
  background: var(--paper); padding: 56px 32px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 360px;
  cursor: pointer;
  transition: background 300ms ease;
}
.occ-item:hover { background: var(--paper-2); }
.occ-item .roman {
  font-family: var(--serif); font-style: italic; font-size: 22px;
}
.occ-item h4 {
  font-family: var(--display); font-size: clamp(40px, 4vw, 68px);
  text-transform: uppercase; line-height: 0.86; margin: 0; letter-spacing: -0.01em;
}
.occ-item p { margin: 0; font-size: 14px; line-height: 1.6; opacity: .72; max-width: 280px; }
.occ-item .tag { margin-top: auto; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }

/* GALLERY */
.gallery {
  display: flex; gap: 24px; overflow-x: auto; padding: 0 var(--gut);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: clamp(280px, 36vw, 540px);
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #1f1f1f, #0a0a0a);
  border: 1px solid var(--line);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.gallery-item:nth-child(3n) { aspect-ratio: 1/1; }
.gallery-item:nth-child(4n) { aspect-ratio: 3/4; }
.gallery-item .ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0.55;
}
.gallery-item .ph svg { width: 35%; height: 35%; }
.gallery-item .cap {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 3;
}
.gallery-item .cap .ti { font-family: var(--display); font-size: 22px; text-transform: uppercase; line-height: 1; letter-spacing: -0.005em; color: var(--paper); }
.gallery-item .cap .nu { font-size: 10px; letter-spacing: 0.22em; color: rgba(244,241,235,0.72); }
/* Foto real del trabajo — se muestra cuando el asset carga bien.
   Si falla el src, onError la oculta y agrega .no-photo → ícono fallback. */
.gallery-item .gallery-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  transition: transform 0.6s ease;
}
.gallery-item.has-photo .ph { display: none; }
.gallery-item.has-photo.no-photo .ph { display: flex; }
.gallery-item.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.72) 100%);
}
.gallery-item.has-photo:hover .gallery-photo { transform: scale(1.04); }
.gallery-item.has-photo.no-photo::after { background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 100%); }

/* MANIFESTO */
.manifesto {
  padding: clamp(80px, 12vh, 140px) var(--gut);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  background: var(--paper); color: var(--ink);
}
.manifesto .label { color: rgba(10,10,10,0.5); }
.manifesto h2 {
  font-family: var(--display); font-size: clamp(48px, 6.8vw, 108px);
  line-height: 0.88; margin: 0;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.manifesto h2 .it { font-family: var(--serif); font-style: italic; text-transform: none; }
.manifesto .body {
  display: flex; flex-direction: column; gap: 28px;
  font-size: 18px; line-height: 1.55; max-width: 560px;
}
.manifesto .body p { margin: 0; }
.manifesto .body strong { font-weight: 700; }
.manifesto .stats {
  margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--line-ink); padding-top: 28px;
}
.manifesto .stats .n {
  font-family: var(--display); font-size: 56px; line-height: 0.9; letter-spacing: -0.01em;
}
.manifesto .stats .l {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(10,10,10,0.55); margin-top: 6px;
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: baseline; justify-content: space-between; gap: 30px;
}
.faq-q .num {
  font-family: var(--display); font-size: 20px; color: var(--ash);
}
.faq-q .t {
  font-family: var(--display); font-size: clamp(24px, 2.6vw, 38px);
  text-transform: uppercase; line-height: 1; flex: 1;
  letter-spacing: -0.005em;
}
.faq-q .plus {
  width: 36px; height: 36px; border: 1px solid var(--paper);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  transition: transform 400ms ease, background 250ms, color 250ms;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--paper); color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 500ms ease, opacity 400ms ease, padding 400ms ease;
  opacity: 0;
  font-size: 16px; line-height: 1.6; color: rgba(244,241,235,0.78);
  max-width: 700px;
  padding-left: 36px;
}
.faq-item.open .faq-a { max-height: 400px; opacity: 1; padding-top: 18px; }

/* CART DRAWER */
.cart-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 300ms ease;
}
.cart-scrim.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(520px, 100vw);
  background: var(--ink);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(.7,.05,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-hd {
  padding: 22px 28px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart-hd .ti { font-family: var(--display); font-size: 28px; text-transform: uppercase; letter-spacing: -0.005em; }
.cart-close {
  width: 36px; height: 36px; border: 1px solid var(--paper); background: transparent; color: var(--paper);
  border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 200ms, color 200ms;
}
.cart-close:hover { background: var(--paper); color: var(--ink); }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 28px 22px; }
.cart-empty { padding: 80px 28px; text-align: center; color: var(--ash); }
.cart-empty .big { font-family: var(--display); font-size: 56px; text-transform: uppercase; line-height: 0.9; color: var(--paper); margin-bottom: 12px; }
.cart-line {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line .img {
  width: 80px; height: 80px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 6px, transparent 6px 12px),
    linear-gradient(180deg, #1f1f1f, #0e0e0e);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.cart-line .img svg { width: 60%; height: 60%; opacity: .85; }
.cart-line .ti { font-family: var(--display); font-size: 18px; text-transform: uppercase; line-height: 1.05; margin: 0 0 4px; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cart-line .ti-tag {
  display: inline-flex; align-items: center;
  font-family: var(--body); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--ink);
  background: var(--paper); padding: 2px 6px;
}
.cart-line .px { font-size: 12px; color: var(--ash); letter-spacing: 0.06em; }
.cart-line .qty { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
.cart-line .qty button {
  width: 24px; height: 24px; border: 1px solid var(--line); background: transparent; color: var(--paper);
  cursor: pointer; font-size: 14px; line-height: 1;
}
.cart-line .qty button:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cart-line .qty .n { width: 28px; text-align: center; font-variant-numeric: tabular-nums; font-size: 13px; }
.cart-line .total { font-family: var(--display); font-size: 20px; }
.cart-line .rm { background: transparent; border: 0; color: var(--ash); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; margin-top: 4px; }
.cart-line .rm:hover { color: var(--paper); }

.cart-personalize {
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.cart-personalize .cp-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--paper);
  gap: 10px;
}
.cart-personalize .cp-hint {
  color: var(--ash); font-weight: 500; letter-spacing: 0.14em; font-size: 9px;
  text-align: right;
}
.cart-personalize textarea,
.cart-personalize input {
  flex: 1; background: transparent; border: 1px solid var(--line); color: var(--paper);
  padding: 10px 12px; font-size: 13px; font-family: var(--body); line-height: 1.4;
  letter-spacing: 0.02em; resize: vertical;
}
.cart-personalize textarea:focus,
.cart-personalize input:focus { outline: none; border-color: var(--paper); }
.cart-personalize textarea::placeholder,
.cart-personalize input::placeholder { color: var(--ash); }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 22px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}

/* ── CHECKOUT FORM ── */
.checkout-back {
  appearance: none; background: transparent; border: 0;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ash); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; padding: 14px 0;
}
.checkout-back:hover { color: var(--paper); }

.checkout-summary {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(244,241,235,0.02);
}
.checkout-summary .lbl {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash);
  font-weight: 700;
}
.checkout-summary .prods {
  font-size: 12px; color: var(--paper); line-height: 1.45; opacity: 0.85;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.checkout-section {
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.checkout-section:last-child { border-bottom: 0; margin-bottom: 0; }
.checkout-section h5 {
  font-family: var(--body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--ash);
  margin: 0 0 14px;
}

.field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.field-label {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--paper);
}
.field-label .req { color: var(--ash); margin-left: 2px; }
.field-error {
  font-size: 10px; letter-spacing: 0.14em; color: #c98b8b;
  text-transform: uppercase; font-weight: 700;
}
.field input,
.field textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: border-color 200ms ease, background 200ms ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--paper);
  background: rgba(244,241,235,0.03);
}
.field input::placeholder { color: var(--ash); }
.field.has-error input,
.field.has-error textarea { border-color: rgba(201,139,139,.6); }

.envio-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 14px;
}
.envio-opt {
  appearance: none; background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 14px;
  display: flex; align-items: center; gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}
.envio-opt:hover { border-color: rgba(244,241,235,0.4); }
.envio-opt.active {
  border-color: var(--paper);
  background: rgba(244,241,235,0.04);
}
.envio-radio {
  width: 16px; height: 16px; border: 1px solid var(--paper);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.envio-radio span {
  width: 8px; height: 8px; background: var(--paper); border-radius: 999px;
}
.envio-name {
  display: block;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  line-height: 1.2;
}
.envio-sub {
  display: block;
  font-size: 10px; color: var(--ash); margin-top: 4px; letter-spacing: 0.08em;
}

/* Toggle sucursal / domicilio dentro de cada carrier */
.envio-modo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin: 4px 0 14px;
}
.envio-modo-btn {
  appearance: none; background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  transition: border-color 200ms ease, background 200ms ease;
}
.envio-modo-btn:hover { border-color: rgba(244,241,235,0.4); }
.envio-modo-btn.active {
  border-color: var(--paper);
  background: rgba(244,241,235,0.04);
}
.envio-modo-radio {
  width: 14px; height: 14px; border: 1px solid var(--paper);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.envio-modo-radio span {
  width: 7px; height: 7px; background: var(--paper); border-radius: 999px;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--display); font-size: 32px; text-transform: uppercase;
}
.cart-total .lbl { font-size: 11px; letter-spacing: 0.22em; font-family: var(--body); color: var(--ash); font-weight: 700; }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 22px;
  background: var(--paper); color: var(--ink); border: 1px solid var(--paper);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  cursor: pointer;
  transition: background 250ms, color 250ms;
}
.wa-btn:hover { background: transparent; color: var(--paper); }
.wa-note { font-size: 11px; color: var(--ash); text-align: center; line-height: 1.5; }

/* FOOTER */
.foot {
  background: var(--ink);
  padding: 100px var(--gut) 30px;
  border-top: 1px solid var(--line);
}
.foot-big {
  font-family: var(--display);
  font-size: clamp(60px, 14vw, 240px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}
.foot-big .it { font-family: var(--serif); font-style: italic; text-transform: none; }
.foot-cols {
  margin-top: 80px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.foot-cols h5 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash); margin: 0 0 16px; font-weight: 700; }
.foot-cols a { color: var(--paper); text-decoration: none; font-size: 14px; opacity: .82; display: block; margin-bottom: 8px; }
.foot-cols a:hover { opacity: 1; }
.foot-bottom {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash);
}

/* ─────────── CATEGORY MODAL ─────────── */
.cat-scrim {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 350ms ease;
}
.cat-scrim.open { opacity: 1; pointer-events: auto; }

.cat-modal {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 220;
  background: var(--ink); color: var(--paper);
  transform: translateY(100%);
  transition: transform 600ms cubic-bezier(.7,.05,.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cat-modal.open { transform: translateY(0); }

.cat-modal-hd {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px var(--gut);
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 5;
}
.cat-modal-back {
  appearance: none; background: transparent; border: 0; color: var(--paper);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 0;
}
.cat-modal-back:hover { opacity: .7; }
.cat-modal-ti {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 1;
  text-align: center;
}
.cat-modal-meta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash);
  text-align: right;
}

.cat-modal-body {
  flex: 1; overflow-y: auto;
}

.cat-modal-hero {
  padding: 60px var(--gut) 48px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.cat-modal-hero h2 {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.84;
  margin: 0; letter-spacing: -0.01em; text-transform: uppercase;
}
.cat-modal-hero p { font-size: 15px; line-height: 1.6; opacity: .78; max-width: 460px; margin: 0; }
.cat-modal-hero .stats {
  display: flex; gap: 36px; margin-top: 18px;
}
.cat-modal-hero .stat .n { font-family: var(--display); font-size: 36px; line-height: 0.95; }
.cat-modal-hero .stat .l { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash); margin-top: 4px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-card {
  background: var(--ink);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: background 300ms ease;
  min-height: 480px;
}
.cat-card:hover { background: #131313; }
.cat-card .ph {
  flex: none;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 14px 0 20px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 100% at 30% 20%, rgba(230, 140, 70, 0.10), transparent 55%),
    radial-gradient(140% 110% at 80% 90%, rgba(200, 120, 80, 0.06), transparent 60%),
    linear-gradient(180deg, #1a1712 0%, #0F0D0A 100%);
  border: 1px solid rgba(230, 180, 130, 0.08);
  position: relative; overflow: hidden;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.cat-card .ph::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
}
.cat-card:hover .ph { transform: scale(1.015); }
.cat-card .ph svg { width: 48%; height: 48%; }
.cat-card .top { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); font-weight: 600; }
.cat-card h4 {
  font-family: var(--display); font-size: 28px; line-height: 0.95; margin: 0;
  text-transform: uppercase; letter-spacing: -0.005em;
}
.cat-card .desc { font-size: 12px; line-height: 1.55; color: var(--ash); margin-top: 6px; }
.cat-card .price { font-family: var(--display); font-size: 22px; margin-top: 14px; }

/* stock badge & lines */
.stock-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ash);
  white-space: nowrap;
}
.stock-pill .dot {
  width: 6px; height: 6px; border-radius: 999px; background: currentColor;
}
.stock-pill.high  { color: #b4cbb4; border-color: rgba(180,203,180,.3); }
.stock-pill.mid   { color: var(--paper); border-color: var(--line); }
.stock-pill.low   { color: #d4b378; border-color: rgba(212,179,120,.32); }
.stock-pill.zero  { color: #c98b8b; border-color: rgba(201,139,139,.4); }
.stock-pill.design { color: var(--paper); border-color: var(--paper); background: rgba(244,241,235,0.06); }

.cat-card .stock-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-top: 10px;
}
.cat-card .stock-row .price {
  margin-top: 0;
}

.cat-card.out-of-stock { opacity: 0.6; cursor: not-allowed; }
.cat-card.out-of-stock:hover { background: var(--ink); }
.cat-card.out-of-stock .add .arrow { background: transparent; color: var(--paper); }
.cat-card.out-of-stock:hover .add .arrow { transform: none; }

/* Stock on featured product cards */
.product .stock-pill {
  position: absolute;
  top: 28px; right: 28px;
}
.product .product-top .ref-only { display: inline-flex; }
.cat-card .add {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
}
.cat-card .add .arrow {
  width: 26px; height: 26px;
  border: 1px solid var(--paper); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 250ms, color 250ms, transform 250ms;
}
.cat-card:hover .add .arrow { background: var(--paper); color: var(--ink); transform: translateX(3px); }
.cat-card.added { background: #1a1a1a; }
.cat-card.added .add { color: var(--paper); }
.cat-card.added .add .arrow { background: var(--paper); color: var(--ink); }

/* Diseño exclusivo card */
.cat-card.design-card .ph {
  background:
    radial-gradient(circle at 50% 50%, rgba(244,241,235,0.08), transparent 60%),
    linear-gradient(135deg, #1a1a1a, #0a0a0a);
}
.cat-card.design-card .ph svg { width: 55%; height: 55%; }
.cat-card.design-card h4 {
  font-size: 32px;
}

/* Personalization tag (on product cards) */
.perso-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--paper);
  padding: 4px 8px;
  border: 1px dashed rgba(244,241,235,0.32);
  border-radius: 999px;
  background: rgba(244,241,235,0.04);
}

.cat-modal-foot {
  padding: 56px var(--gut) 80px;
  text-align: center;
}
.cat-modal-foot h3 {
  font-family: var(--display); font-size: clamp(36px, 5vw, 60px); margin: 0 0 16px;
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 1;
}
.cat-modal-foot .it { font-family: var(--serif); font-style: italic; text-transform: none; }
.cat-modal-foot p { color: var(--ash); font-size: 14px; max-width: 460px; margin: 0 auto 26px; line-height: 1.6; }

/* ─────────── DISEÑOS EXCLUSIVOS SECTION ─────────── */
.disenos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-ink);
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.diseno-card {
  background: var(--paper);
  padding: 22px;
  display: flex; flex-direction: column; gap: 18px;
  cursor: pointer;
  transition: background 300ms ease;
}
.diseno-card:hover { background: var(--paper-2); }
.diseno-frame {
  position: relative;
  aspect-ratio: 5/4;
  background: #141414;
  border: 1px solid rgba(230, 180, 130, 0.10);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ph-dark, .cat-card .ph.ph-dark, .cat-card.design-card .ph.ph-dark, .cat-modal.inkside .cat-card .ph.ph-dark { background: #141414; background-image: none; }
.ph-light, .cat-card .ph.ph-light, .cat-card.design-card .ph.ph-light, .cat-modal.inkside .cat-card .ph.ph-light { background: #FFFFFF !important; background-image: none !important; border-color: rgba(0,0,0,0.06); }
.ph-light .cat-card-poster { mix-blend-mode: multiply; }
/* Todas las cards de diseños tienen el mismo fondo grafito unificado.
   El nombre en tipografía representativa (DesignTextLogo) le da carácter. */
.diseno-frame::before {
  display: none;
}
.diseno-frame--noiseoff {
  content: "";
}
.diseno-corner {
  position: absolute; width: 14px; height: 14px;
  border: 1.5px solid rgba(10,10,10,0.28);
  z-index: 2;
}
.diseno-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.diseno-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.diseno-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.diseno-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.diseno-engraving {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 0 22px;
  text-align: center;
}
.diseno-name-big {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #1a1208;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.18),
    0 -1px 0 rgba(0,0,0,0.4);
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.4));
}
.diseno-icon-sm {
  color: rgba(26,18,8,0.55);
  display: inline-flex;
}
.diseno-info {
  display: flex; justify-content: space-between; align-items: center;
}
.diseno-ref {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(10,10,10,0.5); font-weight: 700;
}
.diseno-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--ink);
  transition: gap 200ms ease;
}
.diseno-card:hover .diseno-cta { gap: 12px; }

/* ── Logos de diseños exclusivos (image-slot) ── */
.diseno-corner { pointer-events: none; }
.diseno-frame > image-slot {
  position: absolute; inset: 8px;
  width: auto; height: auto; display: block;
  z-index: 1;
}
.diseno-info-click { cursor: pointer; }
.diseno-name-row {
  font-family: var(--display);
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1; letter-spacing: -0.005em;
  text-transform: uppercase; color: var(--ink);
}
/* Logo dentro del modal de detalle */
.design-stage > image-slot {
  position: absolute; inset: 13%;
  width: auto; height: auto; display: block;
  z-index: 3;
}
.design-mark-foot {
  position: absolute; bottom: 22px; left: 0; right: 0;
  z-index: 4; text-align: center; padding: 0;
}

/* ─────────── PRODUCT DETAIL MODAL ─────────── */
.prod-modal {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 230;
  width: min(1320px, 100vw);
  background: var(--ink);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 600ms cubic-bezier(.7,.05,.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.prod-modal.open { transform: translateX(0); }
.prod-close {
  position: absolute; top: 22px; right: 22px; z-index: 5;
  width: 40px; height: 40px;
  border: 1px solid var(--paper); background: transparent; color: var(--paper);
  border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, color 200ms;
}
.prod-close:hover { background: var(--paper); color: var(--ink); }

.prod-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  overflow: hidden;
}
.prod-photo {
  position: relative;
  background: #EDEBE8;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  min-height: 0; min-width: 0; overflow: hidden;
}
.prod-photo-meta {
  position: absolute; bottom: 18px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #6B6560; font-weight: 600;
  z-index: 5;
}

.prod-info {
  padding: 64px 48px 40px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.prod-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase; letter-spacing: -0.005em;
}
.prod-desc {
  margin-top: 16px;
  font-size: 15px; line-height: 1.55; opacity: 0.78; max-width: 460px;
}
.prod-meta-row {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prod-meta-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ash); font-weight: 700; margin-bottom: 8px;
}
.prod-price {
  font-family: var(--display); font-size: 34px; line-height: 0.95;
}
.prod-deliv {
  font-family: var(--display); font-size: 22px; line-height: 1;
}

.prod-perso {
  margin-top: 32px;
  padding: 22px;
  border: 1px dashed rgba(244,241,235,0.32);
  background: rgba(244,241,235,0.025);
}
.prod-perso-hd {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 12px;
}
.prod-perso-ti {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--paper);
}
.prod-perso-hint {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ash); font-weight: 600;
}
.prod-perso textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--body); font-size: 14px;
  resize: vertical;
}
.prod-perso textarea:focus { outline: none; border-color: var(--paper); background: rgba(244,241,235,0.04); }
.prod-perso textarea::placeholder { color: var(--ash); }
.prod-perso-note {
  margin-top: 8px;
  font-size: 11px; color: var(--ash); line-height: 1.5;
}

.prod-bulk {
  margin-top: 18px; padding: 14px 16px;
  border: 1px solid rgba(200,169,250,0.4); border-radius: 12px;
  background: rgba(200,169,250,0.07);
  display: flex; flex-direction: column; gap: 8px;
}
.prod-bulk-row, .prod-bulk-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.prod-bulk-row span, .prod-bulk-total span { font-size: 13px; color: rgba(244,241,235,0.7); }
.prod-bulk-row b { font-family: var(--display); font-size: 20px; color: var(--paper); }
.prod-bulk-total { padding-top: 8px; border-top: 1px solid rgba(200,169,250,0.2); }
.prod-bulk-total b { font-family: var(--display); font-size: 24px; color: var(--ink-lila); }
.prod-bulk-hint { font-size: 12px; color: rgba(200,169,250,0.85); }
.prod-actions {
  margin-top: 32px;
  display: flex; gap: 14px; align-items: stretch;
}
.prod-qty {
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--paper);
  padding: 0 10px;
}
.prod-qty button {
  width: 36px; height: 100%;
  background: transparent; border: 0; color: var(--paper);
  font-size: 18px; line-height: 1; cursor: pointer;
}
.prod-qty button:hover { color: rgba(244,241,235,0.55); }
.prod-qty .n {
  min-width: 32px; text-align: center;
  font-family: var(--display); font-size: 22px; line-height: 1;
  background: transparent; border: 0; color: var(--paper); width: 56px;
  -moz-appearance: textfield;
}
.prod-qty .n::-webkit-outer-spin-button, .prod-qty .n::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.prod-qty .n:focus { outline: none; }

.prod-add {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--paper);
  background: var(--paper); color: var(--ink);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 250ms, color 250ms;
}
.prod-add:hover:not(:disabled) { background: transparent; color: var(--paper); }
.prod-add:disabled { opacity: 0.4; cursor: not-allowed; }

.prod-incart {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(244,241,235,0.06);
  border-left: 2px solid var(--paper);
  font-size: 12px;
  color: var(--paper);
}

/* Info block: ¿Qué puedo grabar? */
.info-block {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: rgba(244,241,235,0.02);
}
.info-block-ti {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.info-block-body {
  margin: 0;
  font-size: 13px; line-height: 1.6;
  color: rgba(244,241,235,0.78);
}
.info-block-body strong { color: var(--paper); font-weight: 700; }
.info-block-body em { font-style: italic; color: var(--paper); }
.info-block-sublim { border-color: rgba(140,120,220,0.55); border-left-width: 3px; background: rgba(140,120,220,0.06); }
.info-block-sublim .info-block-ti { color: var(--paper); }

/* Callout — contact via WhatsApp */
.prod-callout {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(244,241,235,0.04);
  border-left: 3px solid var(--paper);
  font-size: 13px; line-height: 1.55;
  color: rgba(244,241,235,0.92);
}
.prod-callout-icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  margin-top: 2px;
}
.prod-callout strong { color: var(--paper); font-weight: 700; }

/* Payments block — product detail */
.prod-payments {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(244,241,235,0.04);
  border-radius: 10px;
  border: 1px solid rgba(244,241,235,0.08);
}
.prod-payments-ti {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper); font-weight: 700; margin-bottom: 6px;
}
.prod-payments-body {
  font-size: 13px; line-height: 1.55;
  color: rgba(244,241,235,0.85);
}
.prod-payments-body strong { color: var(--paper); font-weight: 600; }

/* Personalization — note-only (sin textarea) */
.prod-perso-note-only { }
.prod-perso-note-only .prod-perso-note {
  margin-top: 8px;
  padding: 12px 14px;
  background: rgba(244,241,235,0.03);
  border-left: 2px solid var(--paper);
  border-radius: 4px;
  font-size: 13px; line-height: 1.5;
  color: rgba(244,241,235,0.85);
}

/* Cart line — nota de personalización simplificada */
.cart-personalize-note {
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 12px; line-height: 1.45;
  color: var(--ash);
  background: rgba(244,241,235,0.03);
  border-left: 2px solid rgba(244,241,235,0.25);
  border-radius: 4px;
}

/* File upload */
.prod-upload {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.prod-upload-btn {
  appearance: none; background: transparent;
  border: 1px dashed rgba(244,241,235,0.4);
  color: var(--paper);
  padding: 14px 16px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 12px;
  transition: border-color 200ms ease, background 200ms ease;
}
.prod-upload-btn:hover {
  border-color: var(--paper);
  background: rgba(244,241,235,0.04);
}
.prod-upload-list {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.prod-upload-thumb {
  position: relative;
  width: 80px; height: 80px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.prod-upload-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-upload-thumb button {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--ink); color: var(--paper); border: 1px solid var(--paper);
  font-size: 14px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.prod-upload-thumb button:hover { background: var(--paper); color: var(--ink); }

/* Cart line: photos preview */
.cart-photos {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.cart-photo-thumb {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.cart-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-photos-label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ash); font-weight: 600;
}

/* Checkout notice */
.checkout-notice {
  margin-top: 8px;
  padding: 16px 18px;
  background: rgba(244,241,235,0.04);
  border-left: 3px solid var(--paper);
}
.checkout-notice strong {
  display: block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}
.checkout-notice p {
  margin: 0;
  font-size: 12px; line-height: 1.55; color: rgba(244,241,235,0.78);
}

/* ── PHOTO STAGES ── */
.photo-stage {
  flex: 1; min-height: 0; position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.photo-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 28% 18%, rgba(244,241,235,0.18), transparent 55%),
    radial-gradient(500px 400px at 80% 80%, rgba(244,241,235,0.04), transparent 60%);
}
.photo-floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 8px);
}
.photo-product {
  position: relative; z-index: 2;
  width: 60%; height: 60%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
}
.photo-product > svg {
  width: 100% !important; height: 100% !important;
}
.photo-engraving {
  position: absolute; bottom: -8%; left: 50%; transform: translateX(-50%);
  padding: 6px 14px;
  border: 1px solid rgba(244,241,235,0.18);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,241,235,0.85);
  background: rgba(10,10,10,0.6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.photo-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}

/* Design photo (logo sobre placa limpia) */
.design-stage {
  background: #ECE7DD;
}
.photo-wood {
  display: none;
}

/* ── Video giratorio de diseños (termo Nacional en loop) ── */
.design-stage.video-stage {
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.video-stage .design-video {
  position: relative; inset: auto;
  width: auto; height: auto;
  max-width: 92%;
  max-height: 760px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  /* Grado muy sutil: limpia el fondo sin lavar ni marcar artefactos */
  filter: brightness(1.05) contrast(1.04) saturate(1.02);
}
.diseno-poster {
  position: absolute; inset: 8px;
  z-index: 1;
  width: calc(100% - 16px); height: calc(100% - 16px);
  object-fit: contain;
  display: block;
  background: #ffffff;
  filter: brightness(1.05) contrast(1.04) saturate(1.02);
}
.diseno-frame-click { cursor: pointer; }
/* Poster de producto dentro de la card de colección (CategoryView) */
.cat-card-poster {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border-radius: 2px;
  filter: brightness(1.05) contrast(1.04) saturate(1.02);
}
.design-mark {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.design-mark-name {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #1a1208;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.2),
    0 -1px 0 rgba(0,0,0,0.5),
    0 0 2px rgba(0,0,0,0.4);
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.5));
}
.design-mark-sub {
  display: block;
  margin-top: 18px;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(26,18,8,0.65); font-weight: 700;
}

/* MEDIA */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-vis { aspect-ratio: 4/3; }
  .hero-meta { display: none; }
  .head { grid-template-columns: 1fr; }
  .head .right { justify-self: start; }
  .products { grid-template-columns: 1fr; }
  .product { min-height: 460px; }
  .process .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--line-ink); }
  .step:nth-child(even) { border-right: none; }
  .cats { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .cat.span-2, .cat.span-3 { grid-column: span 2; }
  .cat.row-2 { grid-row: span 1; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-big { font-size: clamp(48px, 14vw, 120px); }
  .cat-modal-hero { grid-template-columns: 1fr; gap: 24px; padding: 40px var(--gut) 32px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .disenos-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-modal { width: 100vw; }
  .prod-grid { grid-template-columns: 1fr; overflow-y: auto; }
  .prod-photo { min-height: 50vh; border-right: 0; border-bottom: 1px solid var(--line); }
  .prod-info { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .head h2 { font-size: clamp(40px, 12vw, 72px); }
  .foot-cols { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 380px; }
  .disenos-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-meta-row { grid-template-columns: 1fr 1fr; }
  .prod-actions { flex-direction: column; }
  .prod-qty { width: 100%; justify-content: space-between; }
}


/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  background: var(--paper); color: var(--ink);
  border-bottom: 1px solid var(--line-ink);
  overflow: hidden;
  height: 36px;
  display: flex; align-items: center;
}
.announce-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
.announce-row {
  display: flex; flex-shrink: 0; align-items: center;
  white-space: nowrap;
  animation: announce-scroll 40s linear infinite;
  will-change: transform;
}
.announce-group {
  display: inline-flex; align-items: center; gap: 16px;
  padding-right: 16px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}
.announce-bar strong { font-weight: 800; letter-spacing: 0.18em; }
.announce-spark {
  font-size: 12px; opacity: 0.45;
  flex: 0 0 auto;
}
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.announce-bar:hover .announce-row {
  animation-play-state: paused;
}
.announce-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: var(--paper); border: 0; color: var(--ink);
  width: 28px; height: 28px; border-radius: 999px;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: -8px 0 8px var(--paper);
}
.announce-close:hover { background: rgba(10,10,10,0.08); }

/* Nudge nav down when banner is present */
body:has(.announce-bar) .nav { top: 36px; }
body:has(.announce-bar) .hero { padding-top: 180px; }

@media (max-width: 720px) {
  .announce-group { font-size: 10px; letter-spacing: 0.1em; }
}

/* ── FREE SHIPPING WIDGET (cart) ── */
.free-shipping {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(244,241,235,0.03);
  font-size: 12px; line-height: 1.45; color: rgba(244,241,235,0.85);
}
.free-shipping.qualified {
  background: rgba(180,203,180,0.06);
  border-color: rgba(180,203,180,0.32);
  color: #c7dcc7;
}
.free-shipping strong { color: var(--paper); font-weight: 700; }
.free-shipping.qualified strong { color: #d8e7d8; }
.fs-icon {
  font-size: 14px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 700;
}
.free-shipping.qualified .fs-icon {
  background: rgba(180,203,180,0.18);
}
.fs-bar {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(244,241,235,0.08);
  overflow: hidden;
}
.fs-bar-fill {
  height: 100%; background: var(--paper);
  transition: width 400ms ease;
}
.free-shipping.qualified .fs-bar-fill { background: #b4cbb4; }

/* Barra de progreso hacia envío gratis (debajo del aviso) */
.fs-progress {
  height: 4px;
  background: rgba(244,241,235,0.10);
  border-radius: 999px;
  overflow: hidden;
  margin: 8px 0 12px;
}
.fs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--paper), #b4cbb4);
  border-radius: 999px;
  transition: width 400ms ease;
}

/* Sugerencias "Sumá para envío gratis" */
.cart-suggest {
  margin: 10px 0 14px;
  padding: 12px;
  background: rgba(244,241,235,0.03);
  border: 1px solid rgba(244,241,235,0.08);
  border-radius: 8px;
}
.cart-suggest-hd {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.cart-suggest-ti {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper); font-weight: 700;
}
.cart-suggest-hint {
  font-size: 11px; color: var(--ash); font-weight: 600;
}
.cart-suggest-grid {
  display: flex; flex-direction: column; gap: 8px;
}
.cart-suggest-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; background: rgba(244,241,235,0.04);
  border-radius: 6px;
  transition: background 200ms ease;
}
.cart-suggest-item:hover { background: rgba(244,241,235,0.07); }
.cart-suggest-img {
  width: 44px; height: 44px; flex: 0 0 auto;
  background: rgba(244,241,235,0.05);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-suggest-img img {
  width: 100%; height: 100%; object-fit: contain;
}
.cart-suggest-body {
  flex: 1; min-width: 0;
}
.cart-suggest-name {
  font-size: 12px; line-height: 1.3; color: var(--paper);
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.cart-suggest-price {
  font-family: var(--display); font-size: 14px;
  color: var(--paper); margin-top: 2px;
}
.cart-suggest-add {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  font-size: 20px; line-height: 1; font-weight: 400;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}
.cart-suggest-add:hover { background: var(--paper); color: var(--ink); }

.cart-free-tag {
  padding: 8px 12px;
  background: rgba(180,203,180,0.12);
  color: #c7dcc7;
  border-left: 2px solid #b4cbb4;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.cart-free-tag.warn {
  background: rgba(212,179,120,0.08);
  color: #d4b378;
  border-left-color: #d4b378;
}

/* ════════════════════════════════════════════
   CAMBIOS 2026 · colores, formas, diseños, vacíos
   ════════════════════════════════════════════ */

/* ── Selector de opciones en ProductDetail (color / forma) ── */
.prod-options {
  margin-top: 28px;
}
.prod-options-hd {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.prod-options-ti {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--paper);
}
.prod-options-val {
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--paper); font-family: var(--serif); font-style: italic;
  text-transform: none;
}
.prod-swatches {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.prod-swatch {
  appearance: none; background: transparent; border: 0; padding: 4px;
  cursor: pointer; line-height: 0; border-radius: 999px;
  transition: transform 160ms ease;
}
.prod-swatch:hover { transform: translateY(-2px); }
.prod-swatch.active { transform: translateY(-2px); }

.prod-shapes {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.prod-shape {
  appearance: none; cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  color: rgba(244,241,235,0.7);
  padding: 10px 16px;
  font-family: var(--body); font-size: 12px; letter-spacing: 0.04em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.prod-shape:hover { border-color: rgba(244,241,235,0.5); color: var(--paper); }
.prod-shape.active {
  border-color: var(--paper); color: var(--ink); background: var(--paper); font-weight: 700;
}
.prod-shape { position: relative; }
.shape-thumb {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%) scale(0.94);
  width: 108px; height: 132px; padding: 6px; border-radius: 4px;
  background: #fff; border: 1px solid rgba(10,10,10,0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; z-index: 30;
  transition: opacity 160ms ease, transform 160ms ease;
}
.shape-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.prod-shape:hover .shape-thumb, .prod-shape:focus-visible .shape-thumb { opacity: 1; transform: translateX(-50%) scale(1); }

/* ── Diseño exclusivo: aviso "no se edita" + nombre ── */
.design-locked-note {
  font-size: 12px; line-height: 1.55;
  color: rgba(244,241,235,0.78);
  margin-bottom: 14px;
}
.design-locked-note strong { color: var(--paper); font-weight: 700; }
.design-name-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 13px 14px;
  font-family: var(--body); font-size: 14px;
}
.design-name-input:focus { outline: none; border-color: var(--paper); background: rgba(244,241,235,0.04); }
.design-name-input::placeholder { color: var(--ash); }

/* ── Color dots en cards de catálogo / featured ── */
.cat-card-colors {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
  margin-top: 12px;
}
.cat-card-colors .more {
  font-size: 10px; letter-spacing: 0.12em; font-weight: 700;
  color: var(--ash);
}

/* ── Sello "destacado" en diseños (Peñarol / Nacional) ── */
.diseno-card { position: relative; }
.diseno-card.destacado .diseno-frame {
  box-shadow:
    inset 0 0 0 2px oklch(0.52 0.11 55);
}
.diseno-seal {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 5px;
  background: oklch(0.52 0.11 55);
  color: #fff;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* ── Categoría "Próximamente" en la grilla ── */
.cat.coming-soon { cursor: pointer; }
.cat.coming-soon .vis { opacity: 0.4; }
.cat.coming-soon .name { opacity: 0.85; }
.cat.coming-soon .count {
  color: rgba(244,241,235,0.55);
  border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 999px;
  display: inline-block;
}

/* ── Estado vacío dentro del modal de categoría ── */
.cat-empty {
  padding: 64px var(--gut) 90px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cat-empty-mark {
  width: 100px; height: 100px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--line);
  border-radius: 999px;
}
.cat-empty h3 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px); margin: 0;
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 1;
}
.cat-empty p {
  color: var(--ash); font-size: 14px; max-width: 440px; line-height: 1.6;
  margin: 8px 0 26px;
}
.cat-empty p strong { color: var(--paper); }

/* ── Variante (color/forma) en línea de carrito ── */
.cart-variant {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 8px;
}
.cart-variant-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: rgba(244,241,235,0.75);
  border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 999px;
}

@media (max-width: 720px) {
  .prod-swatches { gap: 12px; }
}

/* ── Catálogo completo · encabezados de grupo por categoría ── */
.catalog-group { margin-top: clamp(48px, 7vh, 90px); }
.catalog-group:first-of-type { margin-top: clamp(40px, 6vh, 72px); }
.catalog-group-hd {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 0 var(--gut) 18px;
}
.catalog-group-name {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.catalog-group-count {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ash); font-weight: 700; white-space: nowrap;
}

/* ─────────── EMPRESARIALES SECTION ─────────── */
.emp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-ink);
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.emp-card {
  background: var(--paper);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: background 300ms ease;
}
.emp-card:hover { background: var(--paper-2); }
.emp-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: rgba(10,10,10,0.5);
}
.emp-min {
  color: oklch(0.52 0.11 55);
  border: 1px solid oklch(0.52 0.11 55 / 0.4);
  padding: 3px 9px; border-radius: 999px;
  font-size: 10px;
}
.emp-vis {
  margin: 20px 0 22px;
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(10,10,10,0.035) 0 8px, transparent 8px 16px);
  border: 1px solid var(--line-ink);
}
.emp-vis svg { width: 56px; height: 56px; opacity: 0.85; }
.emp-name {
  font-family: var(--display);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 0.92; margin: 0;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.emp-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: oklch(0.52 0.11 55);
  margin-top: 6px;
}
.emp-desc {
  font-size: 13px; line-height: 1.55; color: rgba(10,10,10,0.66);
  margin: 14px 0 16px;
}
.emp-incluye {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.emp-incluye li {
  font-size: 12px; color: rgba(10,10,10,0.78);
  letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 9px;
}
.emp-incluye li::before {
  content: "—"; color: oklch(0.52 0.11 55);
  flex-shrink: 0;
}
.emp-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--ink);
  padding-top: 16px; border-top: 1px solid var(--line-ink);
  transition: gap 200ms ease, color 200ms ease;
}
.emp-card:hover .emp-cta { gap: 13px; color: oklch(0.52 0.11 55); }

.emp-cta-band {
  margin-top: clamp(40px, 6vh, 72px);
}
.emp-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--line-ink);
  padding-top: clamp(32px, 5vh, 52px);
}
.emp-cta-inner h3 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.9; margin: 0;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.emp-cta-inner h3 .it {
  font-family: var(--serif); font-style: italic;
  text-transform: none; letter-spacing: -0.015em;
}
.emp-cta-inner p {
  font-size: 14px; line-height: 1.55; color: rgba(10,10,10,0.66);
  max-width: 460px; margin: 14px 0 0;
}

/* ── Aviso destacado en el catálogo (diseños exclusivos + a medida) ── */
.cat-notice{margin:0 var(--gut) clamp(28px,4vh,48px);}
.cat-notice-in{display:flex;align-items:center;justify-content:space-between;gap:clamp(24px,4vw,56px);flex-wrap:wrap;border:1px solid rgba(244,241,235,0.16);border-radius:4px;padding:clamp(26px,3.4vw,44px) clamp(26px,3.4vw,48px);background:linear-gradient(135deg,rgba(244,241,235,0.05),rgba(244,241,235,0.015));}
.cat-notice-l{flex:1 1 420px;min-width:280px;}
.cat-notice-eyebrow{display:inline-block;font-size:11px;letter-spacing:.24em;text-transform:uppercase;color:rgba(244,241,235,0.5);margin-bottom:16px;}
.cat-notice-ti{font-family:var(--display);font-size:clamp(26px,3.4vw,46px);line-height:1.02;text-transform:uppercase;letter-spacing:-0.01em;margin:0;color:var(--paper);}
.cat-notice-ti .it{font-family:var(--serif);font-style:italic;text-transform:none;letter-spacing:-0.015em;}
.cat-notice-desc{margin:16px 0 0;font-size:14px;line-height:1.6;color:rgba(244,241,235,0.68);max-width:560px;}
.cat-notice-desc strong{color:var(--paper);}
.cat-notice-actions{display:flex;flex-direction:column;gap:12px;flex:0 0 auto;}
.cat-notice-wa{display:inline-flex;align-items:center;gap:9px;}
@media (max-width:760px){.cat-notice-actions{flex-direction:row;flex-wrap:wrap;width:100%;}.cat-notice-actions .btn{flex:1 1 auto;justify-content:center;}}

@media (max-width: 1080px) {
  .emp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .emp-grid { grid-template-columns: 1fr; }
  .emp-card { min-height: 0; }
}

/* ══════════════════════════════════════════════════════════════════
   INKSIDE BOX · bloque de marca (sublimación & vinilo)
   Identidad violeta #8A50F0 sobre tinta #131317 · Space Grotesk
   ══════════════════════════════════════════════════════════════════ */
:root { --ink-violet: #8A50F0; --ink-violet-2: #6D34D6; --ink-lila: #C8A9FA; --ink-tinta: #131317; }

.inkside-band {
  position: relative;
  background: #0E0A14;
  color: #F4ECFF;
  padding: clamp(72px, 11vh, 132px) 0 clamp(56px, 8vh, 96px);
  overflow: hidden;
  border-top: 1px solid rgba(200,169,250,0.1);
  border-bottom: 1px solid rgba(200,169,250,0.1);
  --sp: 0.5;
}
.inkside-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(12px); z-index: 0; will-change: transform; }
.inkside-glow-1 { width: 680px; height: 680px; top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(138,80,240,0.5) 0%, rgba(138,80,240,0) 68%);
  transform: translateY(calc((var(--sp) - 0.5) * -120px)); }
.inkside-glow-2 { width: 520px; height: 520px; bottom: -260px; left: -160px;
  background: radial-gradient(circle, rgba(109,52,214,0.38) 0%, rgba(109,52,214,0) 70%);
  transform: translateY(calc((var(--sp) - 0.5) * 100px)); }
.inkside-grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(200,169,250,0.05) 1px, transparent 1px);
  background-size: 100% 46px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.inkside-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }

.inkside-head {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 6vw, 88px);
  align-items: end; margin-bottom: clamp(40px, 6vh, 60px);
}
.inkside-eyebrow {
  font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-lila);
  display: flex; align-items: center; gap: 11px; margin-bottom: 26px;
}
.inkside-diamond { color: var(--ink-violet); font-size: 9px; }
.inkside-logo-plate {
  display: inline-block; background: #fff; border-radius: 16px;
  padding: 18px 24px; margin-bottom: 26px;
  box-shadow: 0 18px 40px rgba(30,10,70,0.4);
}
.inkside-logo { width: clamp(140px, 16vw, 190px); height: auto; display: block; }
.inkside-h2 {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(42px, 6.6vw, 88px); line-height: 0.96; letter-spacing: -0.035em; margin: 0;
}
.inkside-accent {
  background: linear-gradient(96deg, #C8A9FA, #8A50F0 55%, #A97CF5);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.inkside-lead {
  font-family: "Manrope", sans-serif; font-size: clamp(15px, 1.3vw, 16.5px);
  line-height: 1.65; color: #B8AECC; margin: 22px 0 0; max-width: 480px;
}
.inkside-lead strong { color: #F4ECFF; font-weight: 700; }

.inkside-head-r { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.inkside-facts { display: flex; gap: 30px; flex-wrap: wrap; }
.inkside-fact { display: flex; flex-direction: column; gap: 6px; }
.inkside-fact .n {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 34px;
  line-height: 0.9; color: #fff; letter-spacing: -0.02em;
}
.inkside-fact .l {
  font-family: "Manrope", sans-serif; font-size: 10.5px; line-height: 1.35;
  letter-spacing: 0.14em; text-transform: uppercase; color: #877E9B; font-weight: 600;
}
.inkside-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.inkside-chips span, .inkside-chips a {
  font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em; padding: 8px 15px; border-radius: 100px;
  background: rgba(138,80,240,0.12); border: 1px solid rgba(138,80,240,0.35);
  color: var(--ink-lila); text-decoration: none; white-space: nowrap;
}
.inkside-chips a:hover { background: var(--ink-violet); color: #fff; border-color: var(--ink-violet); }

/* Encabezado del riel */
.inkside-rail-hd {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 22px; margin-bottom: 22px;
  border-top: 1px solid rgba(200,169,250,0.12);
}
.inkside-rail-label {
  font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: #877E9B;
}
.inkside-rail-nav { display: flex; align-items: center; gap: 14px; }
.inkside-rail-count {
  font-family: "Space Grotesk", sans-serif; font-size: 13px; color: #877E9B; letter-spacing: 0.08em;
}
.inkside-rail-count b { color: var(--ink-lila); font-weight: 700; }
.inkside-arrow {
  width: 42px; height: 42px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(200,169,250,0.3); background: transparent; color: #F4ECFF;
  display: flex; align-items: center; justify-content: center;
  transition: background 220ms, color 220ms, border-color 220ms;
}
.inkside-arrow:hover { background: var(--ink-violet); border-color: var(--ink-violet); color: #fff; }

/* Filtros por técnica */
.inkside-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.inkside-filter {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 100px;
  background: transparent; border: 1px solid rgba(200,169,250,0.24); color: #B8AECC;
  transition: background 220ms, color 220ms, border-color 220ms;
}
.inkside-filter em {
  font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px 6px; border-radius: 100px; background: rgba(200,169,250,0.12); color: #9086A0;
}
.inkside-filter:hover { border-color: rgba(138,80,240,0.55); color: #F4ECFF; }
.inkside-filter.active { background: var(--ink-violet); border-color: var(--ink-violet); color: #fff; }
.inkside-filter.active em { background: rgba(255,255,255,0.22); color: #fff; }

/* Placeholder de riel vacío */
.inkside-rail-empty {
  flex: 1 1 auto; min-height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #B8AECC; gap: 8px; padding: 30px;
}
.inkside-rail-empty-mark { color: var(--ink-violet); font-size: 20px; }
.inkside-rail-empty h4 { font-family: "Space Grotesk", sans-serif; font-size: 22px; margin: 0; color: #F4ECFF; }
.inkside-rail-empty p { font-family: "Manrope", sans-serif; font-size: 14px; margin: 0; max-width: 380px; line-height: 1.55; }

/* Riel horizontal con scroll-snap */
.inkside-rail {
  position: relative; z-index: 2;
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 20px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.inkside-rail::-webkit-scrollbar { display: none; }
.inkside-rail-pad { flex: 0 0 max(var(--gut), calc((100vw - var(--max)) / 2 + var(--gut))); }

.inkside-card {
  flex: 0 0 clamp(260px, 26vw, 320px);
  scroll-snap-align: center;
  background: #fff; color: #1A1030;
  border-radius: 22px; overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(10,4,24,0.35);
  transition: transform 450ms cubic-bezier(.2,.7,.2,1), box-shadow 450ms;
}
.inkside-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(30,10,70,0.5); }
.inkside-card.is-active { outline: 2px solid rgba(138,80,240,0.5); outline-offset: 3px; }
.inkside-card-ph {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center; padding: 12%;
}
.inkside-card-ph.is-photo {
  background: #FFFFFF;
}
.inkside-card-ph.is-photo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  mix-blend-mode: multiply;
  will-change: transform;
}
.inkside-card-ph.is-pad {
  padding: 16% 12%;
  background: #FFFFFF;
}
.inkside-card-ph.is-pad img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  border-radius: 12px;
  mix-blend-mode: multiply;
  will-change: transform;
}
.inkside-card-idx {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px;
  color: #6D34D6; letter-spacing: 0.1em; opacity: 0.55;
}
.inkside-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.inkside-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.inkside-card-top h4 {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 21px;
  line-height: 1.05; margin: 0; letter-spacing: -0.02em; color: #17111F;
}
.inkside-card-from {
  font-family: "Manrope", sans-serif; font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #9086A0;
  white-space: nowrap; flex: 0 0 auto; text-align: right; line-height: 1.5;
}
.inkside-card-from b { font-family: "Space Grotesk", sans-serif; font-size: 17px; color: var(--ink-violet); letter-spacing: -0.01em; }
.inkside-card-tag { font-family: "Manrope", sans-serif; font-size: 13.5px; color: #6E6680; line-height: 1.45; margin-top: 6px; }
.inkside-card-cta {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-violet);
  transition: gap 250ms;
}
.inkside-card:hover .inkside-card-cta { gap: 13px; }

.inkside-foot {
  margin-top: clamp(28px, 4vh, 44px); padding-top: 26px;
  border-top: 1px solid rgba(200,169,250,0.14);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: "Manrope", sans-serif; font-size: 13px; color: #877E9B; font-weight: 500;
  letter-spacing: 0.03em;
}
.inkside-wa {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 14px;
  background: var(--ink-violet); color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: 100px; letter-spacing: 0;
  transition: background 250ms, transform 250ms;
}
.inkside-wa:hover { background: var(--ink-violet-2); transform: translateX(3px); color: #fff; }

/* InkSide · para empresas */
.inkside-emp {
  margin-top: clamp(40px, 6vh, 68px); padding-top: clamp(32px, 5vh, 48px);
  border-top: 1px solid rgba(200,169,250,0.14);
}
.inkside-emp-hd { max-width: 560px; margin-bottom: 30px; }
.inkside-emp-hd .inkside-rail-label { display: block; margin-bottom: 14px; }
.inkside-emp-ti {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1; letter-spacing: -0.03em; margin: 0;
}
.inkside-emp-hd p {
  font-family: "Manrope", sans-serif; font-size: 15px; line-height: 1.6;
  color: #B8AECC; margin: 14px 0 0;
}
.inkside-emp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inkside-emp-card {
  background: linear-gradient(165deg, #1B1426, #14101C);
  border: 1px solid rgba(200,169,250,0.16); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: row;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), border-color 300ms, box-shadow 400ms;
}
.inkside-emp-card:hover {
  transform: translateY(-5px); border-color: rgba(138,80,240,0.55);
  box-shadow: 0 26px 54px rgba(30,10,70,0.5);
}
.inkside-emp-img {
  flex: 0 0 42%; background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.inkside-emp-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.inkside-emp-body { flex: 1; padding: 28px 30px 26px; display: flex; flex-direction: column; min-width: 0; }
.inkside-emp-card-hd { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.inkside-emp-card-hd h4 {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 26px;
  letter-spacing: -0.02em; margin: 0; color: #F4ECFF;
}
.inkside-emp-card-hd span {
  font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink-lila);
}
.inkside-emp-list { list-style: none; margin: 20px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.inkside-emp-list li {
  position: relative; padding-left: 30px;
  font-family: "Manrope", sans-serif; font-size: 15px; line-height: 1.4; color: #D8D2E4;
}
.inkside-emp-list li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 999px;
  background: rgba(138,80,240,0.18); border: 1px solid rgba(138,80,240,0.5);
}
.inkside-emp-list li::after {
  content: ""; position: absolute; left: 6px; top: 6px;
  width: 7px; height: 4px; border-left: 1.6px solid var(--ink-lila); border-bottom: 1.6px solid var(--ink-lila);
  transform: rotate(-45deg);
}
.inkside-emp-cta {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 13.5px;
  background: var(--ink-violet); color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: 100px;
  transition: background 250ms, transform 250ms;
}
.inkside-emp-cta:hover { background: var(--ink-violet-2); transform: translateX(3px); color: #fff; }
button.inkside-emp-cta { border: 0; cursor: pointer; font-family: "Space Grotesk", sans-serif; }

/* ── Pack detail modal ── */
.pack-modal { width: min(720px, 100vw); display: block; overflow-y: auto; }
.pack-modal-in { padding: 76px 48px 56px; display: flex; flex-direction: column; gap: 30px; }
.pack-modal-hd .inkside-rail-label { color: var(--ink-lila); }
.pack-modal-hd h3 { font-family: "Space Grotesk", sans-serif; font-size: 38px; font-weight: 700; color: var(--paper); margin: 12px 0 6px; letter-spacing: -0.01em; }
.pack-modal-hd p { font-family: "Manrope", sans-serif; font-size: 14px; color: var(--ink-lila); letter-spacing: 0.02em; }
.pack-items { display: flex; flex-direction: column; gap: 16px; }
.pack-item { display: grid; grid-template-columns: 116px 1fr; gap: 20px; align-items: center; padding: 16px; border: 1px solid rgba(200,169,250,0.16); border-radius: 16px; background: rgba(200,169,250,0.05); }
.pack-item-img { width: 116px; height: 116px; border-radius: 12px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
.pack-item-img img { width: 100%; height: 100%; object-fit: contain; }
.pack-item-img-none { background: rgba(200,169,250,0.08); border: 1px dashed rgba(200,169,250,0.3); }
.pack-item-img-none span { font-family: "Space Grotesk", sans-serif; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-lila); text-transform: uppercase; }
.pack-item-hd { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pack-item-hd h4 { font-family: "Space Grotesk", sans-serif; font-size: 17px; font-weight: 600; color: var(--paper); }
.pack-item-price { font-family: "Space Grotesk", sans-serif; font-size: 16px; font-weight: 700; color: var(--ink-lila); white-space: nowrap; }
.pack-item-price.is-ask { font-size: 13px; font-weight: 600; opacity: 0.85; }
.pack-item-body p { font-family: "Manrope", sans-serif; font-size: 13px; line-height: 1.5; color: rgba(244,236,255,0.72); margin-top: 6px; }
.pack-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; margin-top: 4px; }
@media (max-width: 560px) {
  .pack-modal-in { padding: 68px 22px 40px; }
  .pack-item { grid-template-columns: 84px 1fr; gap: 14px; }
  .pack-item-img { width: 84px; height: 84px; }
  .pack-item-hd { flex-direction: column; gap: 2px; }
}
.inkside-emp-benefits {
  display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 26px;
}
.inkside-emp-benefits span {
  position: relative; padding-left: 18px;
  font-family: "Manrope", sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: #877E9B;
}
.inkside-emp-benefits span::before {
  content: "◆"; position: absolute; left: 0; top: 0; font-size: 8px; color: var(--ink-violet);
}

/* Descuentos por cantidad */
.inkside-disc {
  margin-top: 26px; padding: 24px 26px; border-radius: 20px;
  background: linear-gradient(120deg, rgba(138,80,240,0.16), rgba(109,52,214,0.08));
  border: 1px solid rgba(138,80,240,0.3);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.inkside-disc-lead { display: flex; flex-direction: column; gap: 4px; }
.inkside-disc-tag {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: #F4ECFF;
}
.inkside-disc-sub { font-family: "Manrope", sans-serif; font-size: 13px; color: #B8AECC; }
.inkside-disc-tiers { display: flex; gap: 14px; flex-wrap: wrap; }
.inkside-disc-tier {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: rgba(15,10,22,0.4); border: 1px solid rgba(200,169,250,0.18);
  border-radius: 14px; padding: 14px 20px; min-width: 128px;
}
.inkside-disc-off {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 30px; line-height: 1;
  background: linear-gradient(96deg, #C8A9FA, #8A50F0);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.inkside-disc-min { font-family: "Manrope", sans-serif; font-size: 12px; color: #B8AECC; letter-spacing: 0.02em; }
.inkside-disc-min b { color: #F4ECFF; font-weight: 700; }

@media (max-width: 1080px) {
  .inkside-head { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .inkside-head-r { gap: 22px; }
}
@media (max-width: 600px) {
  .inkside-facts { gap: 22px; }
  .inkside-card { flex-basis: 78vw; }
  .inkside-emp-grid { grid-template-columns: 1fr; }
  .inkside-emp-card { flex-direction: column; }
  .inkside-emp-img { flex-basis: auto; aspect-ratio: 3 / 4; }
  .inkside-disc { flex-direction: column; align-items: flex-start; }
  .inkside-disc-tiers { width: 100%; }
  .inkside-disc-tier { flex: 1; min-width: 90px; }
}

/* ── Poster real en el detalle de producto (InkSide) ── */
.photo-stage-poster { align-items: center; justify-content: center; background: #EDEBE8; padding: 2.5%; }
.photo-stage-dark { background: #000; }
.photo-stage-light { background: #FFFFFF !important; }
.photo-stage-light .prod-photo-img { mix-blend-mode: multiply; }
.photo-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid rgba(10,10,10,0.14); background: rgba(255,255,255,0.92);
  color: #1a1a1a; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: background 180ms, transform 180ms;
}
.photo-nav:hover { background: #fff; }
.photo-nav.prev { left: 16px; }
.photo-nav.next { right: 16px; }
.photo-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 8px;
}
.photo-dot {
  width: 8px; height: 8px; border-radius: 999px; padding: 0; cursor: pointer;
  border: 0; background: rgba(10,10,10,0.24); transition: background 180ms, transform 180ms;
}
.photo-dot.active { background: #1a1a1a; transform: scale(1.25); }
.prod-photo-img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
/* Dos ángulos (tazas) */
.photo-duo { flex-direction: column; padding: 0; gap: 0; }
.photo-duo-item { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; background: #fff; padding: 5% 8%; }
.photo-duo-item + .photo-duo-item { border-top: 1px solid rgba(10,10,10,0.08); }
.photo-duo .prod-photo-img { width: 100%; height: 100%; object-fit: contain; }
.photo-duo-lbl { position: absolute; bottom: 12px; left: 16px; font-family: var(--body); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #9086A0; font-weight: 700; }
/* Aviso "adjuntá la foto en WhatsApp" (InkSide) */
.ink-upload { margin-top: 16px; }
.prod-modal.inkside .ink-upload-note {
  margin-top: 10px; padding: 11px 13px; border-radius: 10px;
  border: 1px solid rgba(138,80,240,0.35); background: rgba(138,80,240,0.12);
  color: #D8CBF5; line-height: 1.5;
}
.prod-modal.inkside .ink-upload-note strong { color: #fff; }

/* ── Stock pill "A pedido" ── */
.stock-pill.toorder { color: var(--ink-lila); border-color: rgba(138,80,240,0.5); background: rgba(138,80,240,0.12); }

/* ══════════════════════════════════════════════════════════════════
   MODALES TEMATIZADOS INKSIDE (violeta)
   Reasignamos variables + acentos cuando la categoría/producto es InkSide.
   ══════════════════════════════════════════════════════════════════ */
.cat-modal.inkside, .prod-modal.inkside {
  --ink: #100C16;
  --paper: #F4ECFF;
  --ash: #A99EBE;
  --line: rgba(200,169,250,0.14);
  --line-ink: rgba(200,169,250,0.14);
}
.cat-modal.inkside { background: #100C16; }
.prod-modal.inkside { background: #100C16; border-left-color: rgba(200,169,250,0.16); }
.prod-modal.inkside .prod-photo { background: #17121F; border-right-color: rgba(200,169,250,0.14); }

/* Titulares con Space Grotesk (no Anton) */
.cat-modal.inkside .cat-modal-ti,
.cat-modal.inkside .cat-modal-hero h2,
.cat-modal.inkside .cat-card h4,
.cat-modal.inkside .cat-modal-foot h3,
.cat-modal.inkside .cat-modal-hero .stat .n,
.prod-modal.inkside .prod-title,
.prod-modal.inkside .prod-price,
.prod-modal.inkside .prod-deliv {
  font-family: "Space Grotesk", sans-serif;
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.cat-modal.inkside .cat-modal-hero h2 .serif-italic,
.cat-modal.inkside .cat-modal-foot .it {
  font-family: "Space Grotesk", sans-serif; font-style: normal; color: var(--ink-lila);
}

/* Acentos violeta */
.cat-modal.inkside .cat-modal-hero .stat .n,
.cat-modal.inkside .cat-card .price,
.prod-modal.inkside .prod-price { color: var(--ink-lila); }

.cat-modal.inkside .cat-card { background: #17121F; border-color: rgba(200,169,250,0.1); }
.cat-modal.inkside .cat-card:hover { background: #1D1626; }
.cat-modal.inkside .cat-card .ph { background: #fff; border-radius: 12px; }
.cat-modal.inkside .cat-card:hover .add .arrow,
.cat-modal.inkside .cat-card.added .add .arrow { background: var(--ink-violet); color: #fff; border-color: var(--ink-violet); }
.cat-modal.inkside .cat-card.added { background: #1D1626; }

/* Botones violeta dentro de los modales InkSide */
.cat-modal.inkside .btn,
.prod-modal.inkside .prod-add {
  background: var(--ink-violet); color: #fff; border-color: var(--ink-violet);
}
.cat-modal.inkside .btn:hover { background: var(--ink-violet-2); color: #fff; }
.prod-modal.inkside .prod-add:hover:not(:disabled) { background: transparent; color: var(--ink-lila); border-color: var(--ink-violet); }
.prod-modal.inkside .prod-qty { border-color: rgba(200,169,250,0.4); }
.prod-modal.inkside .prod-close { border-color: var(--ink-lila); color: var(--ink-lila); }
.prod-modal.inkside .prod-close:hover { background: var(--ink-violet); color: #fff; border-color: var(--ink-violet); }
.prod-modal.inkside .prod-swatch.active,
.prod-modal.inkside .prod-shape.active { border-color: var(--ink-violet); color: var(--ink-lila); }

/* ═══════════════════════════════════════════════════════════════════ */
/* MOBILE COMPACTA · overrides agresivos para que se vea todo sin      */
/* scrollear kilómetros. Aplica sobre las reglas mobile ya existentes. */
/* ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Los 2 logos apretados en el nav → más chicos */
  .brand-logos img { height: 30px !important; }
  .brand-logos span { height: 22px !important; }

  /* Secciones con menos aire vertical (era clamp(80px, 12vh, 160px)) */
  .section { padding: 56px 0; }

  /* Head de cada sección: menos padding y una sola columna */
  .head { padding-bottom: 28px; gap: 16px; }
  .head h2 { font-size: clamp(40px, 11vw, 80px); line-height: 0.88; }
}

@media (max-width: 600px) {
  /* Hero: la ilustración láser ya no está, ajustamos el hero para que sea corto */
  .hero {
    min-height: auto;
    padding: 96px var(--gut) 40px;
    gap: 24px;
    align-items: start;
  }
  .hero h1 { font-size: clamp(56px, 15vw, 92px); }
  .hero-sub { margin-top: 22px; gap: 14px; }
  .hero-sub p { font-size: 14px; line-height: 1.55; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { padding: 14px 20px; font-size: 11px; }
  .hero-grid { display: none; } /* la grilla decorativa consume GPU y no aporta en mobile */

  /* Secciones aún más compactas */
  .section { padding: 40px 0; }
  .head { padding-bottom: 20px; }
  .head h2 { font-size: clamp(36px, 12vw, 68px); }
  .head .right p { font-size: 13.5px; line-height: 1.6; }
  .eyebrow { font-size: 10px; }

  /* Diseños exclusivos: 2 columnas en mobile, TODAS las cards iguales */
  .disenos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 200px;   /* fila fija: todas las cards miden lo mismo */
    gap: 8px;
  }
  .disenos-grid .diseno-card {
    padding: 12px;
    gap: 10px;
    min-height: 0;           /* que respete grid-auto-rows */
    height: 100%;
    box-sizing: border-box;
  }
  /* Frame ocupa todo el espacio disponible menos el rótulo de abajo */
  .disenos-grid .diseno-frame {
    aspect-ratio: auto !important;
    flex: 1 1 auto;
    min-height: 0;
  }
  /* El logo se agranda usando más superficie del frame */
  .disenos-grid .diseno-frame > image-slot { inset: 12px !important; }

  /* Fix overlap Peñarol/Ver productos: nombre arriba, CTA abajo */
  .diseno-info {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px;
    flex: 0 0 auto;
  }
  .diseno-name-row { font-size: 13px !important; line-height: 1.15 !important; }
  .diseno-cta { font-size: 9px; letter-spacing: 0.2em; }

  /* Sello "Lo más pedido" más chico para no cortar el logo */
  .diseno-seal { font-size: 8px; padding: 4px 7px; top: 8px; left: 8px; letter-spacing: 0.1em; }

  /* Categorías: mismo criterio, cards chicas */
  .cats { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px !important; gap: 6px; }
  .cat.span-2, .cat.span-3 { grid-column: span 1 !important; }
  .cat .cat-name, .cats .cat-name { font-size: 14px; }

  /* CategoryView (modal grande al abrir una categoría): grilla más apretada */
  .cat-modal-hero { padding: 28px var(--gut) 20px !important; }
  .cat-modal-hero h2 { font-size: clamp(32px, 10vw, 56px); }
  .cat-grid { gap: 10px; grid-template-columns: repeat(2, 1fr) !important; }
  .cat-card { min-height: 260px !important; }
  .cat-card-name { font-size: 13px; }

  /* Packs empresariales: apilados con menos padding */
  .emp-grid { gap: 14px; }
  .emp-card { padding: 22px; }
  .emp-name { font-size: 20px; }

  /* InkSide Box banda: menos altura */
  .inkside-band { padding: 40px 0; }

  /* Gallery: cards más chicas */
  .gallery-item { min-width: 240px; }

  /* FAQ: items compactos */
  .faq-item { padding: 16px 0; }
  .faq-q .t { font-size: 15px; }

  /* Footer: título gigante más chico + menos aire */
  .foot { padding: 48px var(--gut) 32px; }
  .foot-big { font-size: clamp(38px, 12vw, 80px); }
  .foot-cols { gap: 28px; margin-top: 40px; }

  /* Cart drawer al 100% del ancho en mobile */
  .cart-drawer { width: 100vw !important; max-width: 100vw !important; }

  /* Botón "buscar" solo con icono para ganar espacio en el nav */
  .nav-search-label { display: none; }
  .nav-search-btn { padding: 8px 10px; }

  /* Anuncio de arriba: solo 32px y letra un poco más chica */
  .announce-bar { height: 32px; }
  .announce-group { font-size: 10px; }
}

@media (max-width: 380px) {
  /* Ultra chico (iPhone SE, plegables cerrados): logos aún más pequeños */
  .brand-logos img { height: 24px !important; }
  .brand-logos span { height: 18px !important; }
  .cat-grid { grid-template-columns: 1fr !important; }
  .disenos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* MOBILE HAMBURGER MENU + DRAWER con accordion                        */
/* ═══════════════════════════════════════════════════════════════════ */

/* Hamburger button: oculto en desktop, visible sólo en mobile */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--paper);
  color: var(--paper);
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  border-radius: 4px;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* Scrim que cubre la pantalla detrás del drawer */
.mmenu-scrim {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.mmenu-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer: desliza desde la derecha */
.mmenu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--ink);
  color: var(--paper);
  z-index: 200;
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.4);
}
.mmenu.open { transform: translateX(0); }

.mmenu-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mmenu-ti {
  font-family: var(--body);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--ash);
}
.mmenu-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  width: 36px; height: 36px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.mmenu-close:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.mmenu-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: 24px;
}

/* Sección accordion */
.mmenu-sec {
  border-bottom: 1px solid var(--line);
}
.mmenu-sec-hd {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--paper);
  padding: 20px;
  font-family: var(--body);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  text-align: left;
}
.mmenu-sec-caret {
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
  opacity: 0.7;
}
.mmenu-sec.open .mmenu-sec-caret { transform: rotate(180deg); }
.mmenu-sec-body {
  padding: 4px 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.mmenu-item {
  background: transparent;
  border: 0;
  color: var(--paper);
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 3px;
  text-align: left;
  text-decoration: none;
  transition: background 180ms ease;
}
.mmenu-item:hover, .mmenu-item:active { background: rgba(244, 241, 235, 0.08); }
.mmenu-item-name {
  font-family: var(--body);
  font-size: 14px; font-weight: 600;
  color: var(--paper);
}
.mmenu-item-meta {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ash); font-weight: 600;
}

/* Variante InkSide (violeta) */
.mmenu-sec.v-ink .mmenu-sec-hd { color: var(--ink-lila, #c8a9fa); }
.mmenu-sec.v-ink .mmenu-item:hover { background: rgba(138, 80, 240, 0.16); }
.mmenu-sec.v-ink .mmenu-item-meta { color: var(--ink-lila, #c8a9fa); }

/* Links directos al final del drawer */
.mmenu-direct {
  display: flex; flex-direction: column;
  padding: 12px 20px 20px;
  gap: 2px;
}
.mmenu-direct-item {
  color: var(--paper);
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  display: flex; align-items: center;
}
.mmenu-direct-item:hover { background: rgba(244, 241, 235, 0.08); }
.mmenu-search { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 18px; border-radius: 0; }

/* Mostrar burger solo en mobile, ocultar los mega-menús inline */
@media (max-width: 900px) {
  .nav-burger { display: inline-flex; }
  .nav-links { display: none !important; }
}
@media (min-width: 901px) {
  /* En desktop el burger no existe */
  .nav-burger { display: none; }
  .mmenu, .mmenu-scrim { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* FLOATING WHATSAPP BUTTON                                            */
/* ═══════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  box-shadow:
    0 6px 20px rgba(37, 211, 102, 0.42),
    0 2px 6px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 220ms ease,
              opacity 220ms ease;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 8px 26px rgba(37, 211, 102, 0.55),
    0 3px 8px rgba(0, 0, 0, 0.28);
  animation-play-state: paused;
}
.wa-float:active { transform: scale(0.96); }
.wa-float svg { display: block; }
.wa-float-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.6) translateY(20px);
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
  .wa-float svg { width: 26px; height: 26px; }
}
/* Respeta el gesto de scroll en iOS (no captura eventos táctiles del body) */
@media (hover: none) {
  .wa-float { animation: none; }  /* el pulse se ve mal en algunos móviles */
}

/* ═══════════════════════════════════════════════════════════════════
   SHARE BUTTON · botón compartir en cards y en detalle de producto
═══════════════════════════════════════════════════════════════════ */
.share-wrap {
  position: relative;
  display: inline-flex;
}
.share-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
}
.share-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(10, 10, 10, 0.55);
  color: var(--paper);
  border: 1px solid rgba(244, 241, 235, 0.14);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}
.share-trigger:hover {
  transform: translateY(-1px);
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(244, 241, 235, 0.35);
}
.share-trigger:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}
.share-icon-btn {
  width: 30px;
  height: 30px;
}
.share-icon-btn svg { width: 13px; height: 13px; opacity: 0.9; }
/* En desktop el ícono aparece solo cuando pasás el mouse por la card,
   así deja respirar el diseño. En mobile (hover:none) queda siempre
   visible porque no hay hover. */
@media (hover: hover) and (pointer: fine) {
  .cat-card .share-icon { opacity: 0; transform: translateY(-2px); pointer-events: none; }
  .cat-card:hover .share-icon,
  .cat-card:focus-within .share-icon,
  .cat-card .share-icon.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
.share-wide {
  display: inline-flex;
}
.share-wide-btn {
  padding: 12px 18px;
  height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.share-wide-btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.share-label {
  font-family: inherit;
}
.share-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-ink);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: shareMenuIn 0.14s ease-out;
}
@keyframes shareMenuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.12s ease;
}
.share-item:hover {
  background: rgba(10, 10, 10, 0.06);
}
.share-item-ico {
  font-size: 16px;
  line-height: 1;
  width: 20px;
  display: inline-flex;
  justify-content: center;
}
/* Compartir dentro de una .cat-card: no rompe el click de "Ver detalles" */
.cat-card .share-icon { top: 8px; right: 8px; }
/* Compartir dentro de prod-actions: se estira al lado de "Agregar al carrito" */
.prod-actions .share-wrap.share-wide { margin-left: auto; }

@media (max-width: 600px) {
  .share-icon-btn { width: 32px; height: 32px; }
  .share-menu { min-width: 200px; right: -4px; }
  .share-wide-btn { padding: 10px 14px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO MINI · versión compacta con fondo moderno
   Sobrescribe los estilos base de .hero cuando el section es .hero-mini.
   El objetivo: que Diseños Exclusivos aparezca casi en el fold.
═══════════════════════════════════════════════════════════════════ */
.hero.hero-mini {
  min-height: auto;
  padding: clamp(28px, 3.5vh, 46px) var(--gut) clamp(14px, 2vh, 22px);
  display: block;
  grid-template-columns: none;
  --mx: 50%;
  --my: 50%;
  --spot-color: rgba(255, 255, 255, 0.035);
  isolation: isolate;
}
.hero-mini .hero-content { max-width: 1180px; }
.hero.hero-mini p.hero-mini-tag {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 0;
  max-width: 900px;
  color: rgba(244, 241, 235, 0.72);
}
.hero-mini-tag .it {
  font-family: var(--serif);
  font-style: italic;
  color: #E9A87A;
  background: linear-gradient(96deg, #F0BE93 8%, #C97A48 55%, #F0BE93 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 220% 100%;
  animation: heroItShimmer 9s ease-in-out infinite;
  font-weight: 600;
  font-size: 1.05em;
}
@keyframes heroItShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ─── H1. Aurora rotante en el fondo del hero ─── */
.hero-mini .hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: transparent;
  overflow: hidden;
}
.hero-mini .hero-bg::before,
.hero-mini .hero-bg::after,
.hero-mini::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.hero-mini .hero-bg::before {
  width: 55vw; height: 55vw;
  left: -12vw; top: -18vw;
  background: radial-gradient(circle at 40% 40%, rgba(230, 140, 70, 0.28), rgba(230, 140, 70, 0) 62%);
  animation: auroraA 48s ease-in-out infinite;
}
.hero-mini .hero-bg::after {
  width: 60vw; height: 60vw;
  right: -18vw; top: -8vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 190, 120, 0.22), rgba(255, 190, 120, 0) 65%);
  animation: auroraB 62s ease-in-out infinite;
}
.hero-mini::before {
  width: 55vw; height: 55vw;
  left: 22vw; bottom: -32vw;
  background: radial-gradient(circle at 50% 50%, rgba(200, 90, 50, 0.20), rgba(200, 90, 50, 0) 65%);
  animation: auroraC 74s ease-in-out infinite;
}
@keyframes auroraA {
  0%, 100% { transform: translate(0, 0) scale(1);       }
  33%      { transform: translate(6vw, 4vw) scale(1.08);}
  66%      { transform: translate(-3vw, 8vw) scale(0.95);}
}
@keyframes auroraB {
  0%, 100% { transform: translate(0, 0) scale(1);        }
  40%      { transform: translate(-5vw, 6vw) scale(1.06);}
  70%      { transform: translate(4vw, -3vw) scale(0.93);}
}
@keyframes auroraC {
  0%, 100% { transform: translate(0, 0) scale(1);         }
  50%      { transform: translate(-6vw, -4vw) scale(1.05);}
}

/* ─── H2. Grid de puntos que evocan marcas de láser ─── */
.hero-mini .hero-bg > .hero-mini-dots {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(244,241,235,0.28) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 32%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 32%, transparent 78%);
  opacity: 0.55;
}
.hero-mini .hero-bg > .hero-mini-burn {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(160px 160px at 20% 30%, rgba(255,175,105,0.30), transparent 65%),
    radial-gradient(140px 140px at 70% 60%, rgba(255,175,105,0.24), transparent 65%),
    radial-gradient(180px 180px at 45% 85%, rgba(255,175,105,0.20), transparent 65%);
  mix-blend-mode: screen;
  animation: burnDrift 22s ease-in-out infinite;
  filter: blur(4px);
}
@keyframes burnDrift {
  0%, 100% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
    opacity: 0.8;
  }
  50% {
    background-position: 10% 8%, -6% -5%, 4% -10%;
    opacity: 1;
  }
}

/* ─── H3. Cursor spotlight (solo desktop con hover) ─── */
@media (hover: hover) and (pointer: fine) {
  .hero-mini::after {
    content: "";
    position: absolute; inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(360px circle at var(--mx) var(--my), var(--spot-color), transparent 62%);
    transition: opacity 0.3s ease;
  }
}

/* ─── H4. Grano animado global ─── */
@keyframes grainShift {
  0%   { transform: translate(0, 0);    }
  20%  { transform: translate(-3px, 2px);}
  40%  { transform: translate(2px, -3px);}
  60%  { transform: translate(-2px, -2px);}
  80%  { transform: translate(3px, 3px); }
  100% { transform: translate(0, 0);     }
}
body.grain::before {
  animation: grainShift 8.5s steps(6, end) infinite;
}

/* ─── H5. Botones con micro-lift al hover ─── */
.btn { transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.btn:hover { transform: translateY(-1px); }

/* ─── Layout de la sección hero content encima del bg ─── */
.hero-mini .hero-mini-content { position: relative; z-index: 4; }

/* Ajustes responsive del hero-mini */
@media (max-width: 780px) {
  .hero.hero-mini { padding: 26px var(--gut) 14px; }
  .hero.hero-mini p.hero-mini-tag { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN "DISEÑOS EXCLUSIVOS" · fondo con textura de taller
   Reemplaza el gris papel plano por una superficie con carácter:
   grano vetado + hatching diagonal muy sutil + marcas de láser
   flotando (pequeños destellos que aparecen y desaparecen).
═══════════════════════════════════════════════════════════════════ */
/* Fondo integrado con las cards oscuras (#141414).
   Base beige cremosa cálida con degradado a marrón para armonizar
   con el fondo negro de las cards + halo ámbar sutil arriba y abajo. */
#disenos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 20% 0%, rgba(230, 140, 70, 0.14), transparent 60%),
    radial-gradient(900px 600px at 85% 100%, rgba(180, 120, 90, 0.10), transparent 62%),
    linear-gradient(180deg, #201A13 0%, #1A140E 55%, #221A11 100%);
  color: var(--paper);
  isolation: isolate;
}
/* Texto claro sobre fondo oscuro */
#disenos .eyebrow { color: rgba(244, 241, 235, 0.6) !important; }
#disenos h2, #disenos p, #disenos .diseno-name-row, #disenos .diseno-cta { color: var(--paper); }
#disenos p { color: rgba(244, 241, 235, 0.72); }
#disenos p strong { color: var(--paper); }
#disenos .cat-notice-desc, #disenos .cat-notice-title { color: var(--paper); }
#disenos .diseno-corner { border-color: rgba(255, 200, 130, 0.35) !important; }
#disenos .diseno-info { border-top-color: rgba(255, 200, 130, 0.12); }
#disenos::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255, 200, 130, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
  opacity: 0.9;
}
#disenos::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(180px 180px at 15% 25%, rgba(255, 175, 105, 0.20), transparent 60%),
    radial-gradient(140px 140px at 75% 45%, rgba(255, 175, 105, 0.15), transparent 60%),
    radial-gradient(200px 200px at 30% 82%, rgba(255, 175, 105, 0.14), transparent 60%),
    radial-gradient(150px 150px at 85% 88%, rgba(255, 175, 105, 0.16), transparent 60%);
  mix-blend-mode: screen;
  filter: blur(30px);
  animation: disenosBurn 26s ease-in-out infinite;
  opacity: 0.9;
}
@keyframes disenosBurn {
  0%, 100% { background-position: 0 0, 0 0, 0 0, 0 0; opacity: 0.75; }
  33%      { background-position: 5% 8%, -3% -4%, 6% 3%, -4% -5%; opacity: 1; }
  66%      { background-position: -4% 6%, 5% 3%, -3% -5%, 6% 4%; opacity: 0.9; }
}
#disenos > * { position: relative; z-index: 1; }

/* La línea top ámbar sutil como filo de láser */
#disenos {
  border-top: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 130, 0.30),
    inset 0 -1px 0 rgba(255, 200, 130, 0.15);
}
/* Cards con borde cálido para integrarse mejor con el fondo */
#disenos .diseno-frame {
  border-color: rgba(255, 200, 130, 0.20);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN "INKSIDE BOX" · fondo con dinamismo
   Ya tenía glows púrpuras estáticos; le sumamos vida:
   rotación lenta + pulso + líneas de scan + trama holográfica.
═══════════════════════════════════════════════════════════════════ */
.inkside-band {
  isolation: isolate;
}
/* Glows con vida propia (rotación + pulso) */
.inkside-band .inkside-glow-1 {
  animation: inksideGlowA 42s ease-in-out infinite;
}
.inkside-band .inkside-glow-2 {
  animation: inksideGlowB 56s ease-in-out infinite;
}
@keyframes inksideGlowA {
  0%, 100% { transform: translate(0, 0) scale(1);         opacity: 1; }
  33%      { transform: translate(-6vw, 4vh) scale(1.14); opacity: 1.15; }
  66%      { transform: translate(3vw, -3vh) scale(0.92); opacity: 0.85; }
}
@keyframes inksideGlowB {
  0%, 100% { transform: translate(0, 0) scale(1);         opacity: 1; }
  40%      { transform: translate(5vw, -4vh) scale(1.10); opacity: 1.12; }
  70%      { transform: translate(-3vw, 5vh) scale(0.94); opacity: 0.82; }
}

/* Sumamos un tercer blob que aporta más profundidad */
.inkside-band::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50vw 50vw at 50% 40%, rgba(168, 105, 255, 0.15), transparent 55%);
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: inksideOrbit 78s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes inksideOrbit {
  0%   { transform: rotate(0deg)   translate3d(0, 0, 0); }
  50%  { transform: rotate(180deg) translate3d(6vw, -4vh, 0); }
  100% { transform: rotate(360deg) translate3d(0, 0, 0); }
}

/* Barrido horizontal tipo scan holográfico (muy sutil) */
.inkside-band::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 46%,
    rgba(200, 169, 250, 0.06) 50%,
    transparent 54%,
    transparent 100%);
  background-size: 100% 300%;
  animation: inksideScan 12s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.9;
}
@keyframes inksideScan {
  0%   { background-position: 0% -100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { background-position: 0% 200%;  opacity: 0; }
}

/* Chips y cards de InkSide con hover más marcado */
.inkside-chips a:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(138,80,240,0.35); }
.inkside-chips span, .inkside-chips a {
  transition: background 220ms, color 220ms, border-color 220ms, transform 220ms, box-shadow 220ms;
}
.inkside-card {
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.inkside-card:hover .inkside-card-ph.is-photo img,
.inkside-card:hover .inkside-card-ph.is-pad img {
  transform: translateY(-3px) scale(1.02);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════════════════════════════
   DISEÑOS · Logos textuales por marca
   Reemplazan los escudos/logos reales por el nombre en una tipografía
   representativa. Evita problemas de copyright y da carácter propio.
   Todos comparten fondo grafito #141414 (unificado) y se destacan
   por color + tipografía + layout.
═══════════════════════════════════════════════════════════════════ */
.design-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6% 8%;
  gap: 4px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.design-logo .dl-line {
  line-height: 0.88;
  letter-spacing: -0.01em;
  display: block;
  white-space: nowrap;
  max-width: 100%;
}

/* Peñarol · aurinegro con outline */
.design-logo-penarol { color: #FFC300; }
.design-logo-penarol .dl-line-1 {
  font-family: "Anton", var(--display);
  font-size: clamp(42px, 7.4vw, 78px);
  text-transform: uppercase;
  -webkit-text-stroke: 2px #FFC300;
  color: #141414;
  letter-spacing: -0.03em;
  padding: 0 6px;
}

/* Nacional · tricolor tricolor, serif elegante */
.design-logo-nacional { color: #FFFFFF; gap: 4px; }
.design-logo-nacional .dl-line-1 {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(30px, 5.2vw, 56px);
  color: #FFFFFF;
}
.design-logo-nacional .dl-line-2 {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(20px, 3.4vw, 34px);
  color: #DD3B3B;
}

/* Uruguay · celeste con sol de Mayo (unicode ☀) — patriótico */
.design-logo-uruguay { color: #6BB2E9; }
.design-logo-uruguay .dl-line-1 {
  font-family: "Anton", var(--display);
  font-size: clamp(30px, 4.8vw, 56px);
  letter-spacing: 0.02em;
  color: #6BB2E9;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.12);
  text-transform: uppercase;
}
.design-logo-uruguay::before {
  content: "☀";
  color: #FFD147;
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1;
  margin-bottom: 4px;
}

/* AUF · celeste bold */
.design-logo-auf { color: #6BB2E9; gap: 6px; }
.design-logo-auf .dl-line-1 {
  font-family: "Alfa Slab One", var(--display);
  font-size: clamp(34px, 5.8vw, 64px);
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
.design-logo-auf .dl-line-2 {
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(10px, 1.3vw, 13px);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: #6BB2E9;
}

/* MotoGP · italic racing */
.design-logo-motogp { color: #E63946; }
.design-logo-motogp .dl-line-1 {
  font-family: "Bungee", var(--display);
  font-size: clamp(30px, 5.2vw, 50px);
  transform: skewX(-14deg);
  color: #E63946;
}
.design-logo-motogp .dl-line-2 {
  font-family: "Bungee", var(--display);
  font-size: clamp(50px, 8.8vw, 92px);
  transform: skewX(-14deg);
  color: #FFFFFF;
  -webkit-text-stroke: 3px #E63946;
}

/* Bad Bunny · lowercase script — vibra callejera */
.design-logo-badbunny { color: #FFFFFF; }
.design-logo-badbunny .dl-line-1 {
  font-family: "Pacifico", cursive;
  font-size: clamp(34px, 6vw, 60px);
  text-transform: lowercase;
  color: #F0E68C;
  letter-spacing: 0.02em;
}

/* NTVG · rock punk caps */
.design-logo-ntvg { color: #FFFFFF; gap: 6px; }
.design-logo-ntvg .dl-line {
  font-family: "Anton", var(--display);
  font-size: clamp(28px, 4.8vw, 46px);
  color: #FFFFFF;
  text-transform: uppercase;
}
.design-logo-ntvg .dl-line-2 { color: #FFC300; }

/* Frente Amplio · rojo bold */
.design-logo-fa { gap: 6px; }
.design-logo-fa .dl-line {
  font-family: "Alfa Slab One", var(--display);
  font-size: clamp(30px, 5.2vw, 52px);
  color: #E63946;
  text-transform: uppercase;
}

/* La Vela Puerca · rock caps blanco */
.design-logo-lavela { color: #FFFFFF; gap: 6px; }
.design-logo-lavela .dl-line {
  font-family: "Anton", var(--display);
  font-size: clamp(30px, 5.4vw, 56px);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.design-logo-lavela .dl-line-2 {
  -webkit-text-stroke: 2px #FFFFFF;
  color: #141414;
}

/* Partido Nacional · azul */
.design-logo-pn { gap: 6px; }
.design-logo-pn .dl-line {
  font-family: "Alfa Slab One", var(--display);
  font-size: clamp(22px, 3.8vw, 40px);
  color: #1E4B8F;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 0 6px;
}
.design-logo-pn .dl-line-1 { color: #FFFFFF; }

/* Airbag · rock rojo con line under */
.design-logo-airbag { color: #FFFFFF; }
.design-logo-airbag .dl-line-1 {
  font-family: "Anton", var(--display);
  font-size: clamp(52px, 9.4vw, 96px);
  color: #FFFFFF;
  text-transform: uppercase;
  border-bottom: 4px solid #E63946;
  padding-bottom: 6px;
  letter-spacing: 0.02em;
}

/* Fórmula 1 · F1 grande italic rojo */
.design-logo-f1 { color: #FFFFFF; }
.design-logo-f1 .dl-line-1 {
  font-family: "Bungee Shade", "Bungee", var(--display);
  font-size: clamp(80px, 15vw, 160px);
  color: #E10600;
  letter-spacing: -0.05em;
  transform: skewX(-12deg);
}

/* Cuarteto de Nos · caps grunge */
.design-logo-cuarteto { color: #FFFFFF; gap: 4px; }
.design-logo-cuarteto .dl-line-1 {
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(20px, 3.2vw, 28px);
  letter-spacing: 0.25em; text-indent: 0.25em;
  color: #FFC300;
}
.design-logo-cuarteto .dl-line-2 {
  font-family: "Anton", var(--display);
  font-size: clamp(44px, 7.4vw, 76px);
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Redonditos · caps ricoteros */
.design-logo-redonditos { color: #FFFFFF; gap: 4px; }
.design-logo-redonditos .dl-line-1 {
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.15em;
  color: #E63946;
}
.design-logo-redonditos .dl-line-2 {
  font-family: "Anton", var(--display);
  font-size: clamp(36px, 6vw, 60px);
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Tan Biónica · script elegante rosa */
.design-logo-tanbionica { color: #F0A6CA; }
.design-logo-tanbionica .dl-line-1 {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(34px, 6vw, 62px);
  color: #F0A6CA;
  letter-spacing: -0.02em;
  padding: 0 8px;
}

/* Soda Stereo · geometric caps */
.design-logo-soda { color: #FFFFFF; gap: 4px; }
.design-logo-soda .dl-line {
  font-family: "Rubik Mono One", "Anton", var(--display);
  font-size: clamp(34px, 5.8vw, 56px);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.design-logo-soda .dl-line-2 { color: #E63946; }

/* Milo J · lowercase modern */
.design-logo-miloj { color: #FFFFFF; }
.design-logo-miloj .dl-line-1 {
  font-family: "Archivo Black", var(--display);
  font-size: clamp(52px, 9.2vw, 92px);
  color: #FFFFFF;
  text-transform: lowercase;
  letter-spacing: -0.05em;
}

/* Tini · script pink */
.design-logo-tini { color: #FF7EC7; }
.design-logo-tini .dl-line-1 {
  font-family: "Pacifico", cursive;
  font-size: clamp(52px, 9vw, 90px);
  color: #FF7EC7;
}

/* María Becerra · bold caps 2 líneas */
.design-logo-mariabecerra { color: #FFFFFF; gap: 2px; }
.design-logo-mariabecerra .dl-line {
  font-family: "Archivo Black", var(--display);
  font-size: clamp(28px, 4.4vw, 46px);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.design-logo-mariabecerra .dl-line-2 { color: #E63946; }

/* Emilia · bold italic */
.design-logo-emilia { color: #FFFFFF; }
.design-logo-emilia .dl-line-1 {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(56px, 9.6vw, 100px);
  color: #FFFFFF;
}

/* Breaking Bad · tabla periódica ácido verde */
.design-logo-breakingbad {
  color: #7AC943; gap: 12px;
  flex-direction: row;
}
.design-logo-breakingbad .dl-line {
  font-family: "Orbitron", var(--display);
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 62px);
  color: #7AC943;
  border: 3px solid #7AC943;
  padding: 10px 16px 6px;
  min-width: 88px;
  line-height: 1;
  background: rgba(122, 201, 67, 0.05);
}

/* Cristiano Ronaldo · CR7 */
.design-logo-cristiano {
  color: #FFFFFF;
  gap: 6px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.design-logo-cristiano .dl-line {
  line-height: 1;
}
.design-logo-cristiano .dl-line-1 {
  font-family: "Anton", var(--display);
  font-size: clamp(48px, 8vw, 88px);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.design-logo-cristiano .dl-line-2 {
  font-family: "Anton", var(--display);
  font-size: clamp(56px, 9.6vw, 100px);
  color: #FFC300;
}

/* Las Pastillas del Abuelo · rock caps rojo */
.design-logo-pastillas { color: #FFFFFF; gap: 4px; }
.design-logo-pastillas .dl-line-1 {
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(22px, 3.6vw, 32px);
  letter-spacing: 0.16em;
  color: #E63946;
}
.design-logo-pastillas .dl-line-2 {
  font-family: "Anton", var(--display);
  font-size: clamp(34px, 5.8vw, 58px);
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Fallback / default */
.design-logo-default .dl-line {
  font-family: "Anton", var(--display);
  font-size: clamp(40px, 7vw, 72px);
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Mobile — bajar tamaños proporcionales */
@media (max-width: 640px) {
  .design-logo { padding: 6% 8%; gap: 2px; }
  .design-logo .dl-line { font-size: clamp(14px, 5vw, 22px) !important; }
  .design-logo-penarol .dl-line-1 { font-size: clamp(22px, 8vw, 34px) !important; -webkit-text-stroke-width: 1.5px; }
  .design-logo-nacional .dl-line-1 { font-size: clamp(16px, 5.6vw, 24px) !important; }
  .design-logo-nacional .dl-line-2 { font-size: clamp(12px, 4vw, 18px) !important; }
  .design-logo-uruguay .dl-line-1 { font-size: clamp(18px, 6.6vw, 28px) !important; }
  .design-logo-uruguay::before { font-size: clamp(14px, 4vw, 20px); margin-bottom: 3px; }
  .design-logo-auf .dl-line-1 { font-size: clamp(22px, 8.2vw, 36px) !important; letter-spacing: 0.12em; }
  .design-logo-auf .dl-line-2 { font-size: clamp(8px, 2.5vw, 11px) !important; letter-spacing: 0.3em; }
  .design-logo-motogp .dl-line-1 { font-size: clamp(14px, 5vw, 22px) !important; }
  .design-logo-motogp .dl-line-2 { font-size: clamp(22px, 8vw, 36px) !important; -webkit-text-stroke-width: 2px; }
  .design-logo-badbunny .dl-line-1 { font-size: clamp(18px, 6.4vw, 30px) !important; }
  .design-logo-ntvg .dl-line { font-size: clamp(14px, 4.8vw, 22px) !important; }
  .design-logo-fa .dl-line { font-size: clamp(14px, 5vw, 24px) !important; }
  .design-logo-lavela .dl-line { font-size: clamp(14px, 5vw, 24px) !important; }
  .design-logo-pn .dl-line { font-size: clamp(14px, 5vw, 24px) !important; }
  .design-logo-airbag .dl-line-1 { font-size: clamp(22px, 8vw, 40px) !important; border-bottom-width: 2px; padding-bottom: 3px; }
  .design-logo-f1 .dl-line-1 { font-size: clamp(42px, 15vw, 72px) !important; }
  .design-logo-cuarteto .dl-line-1 { font-size: clamp(10px, 3vw, 14px) !important; }
  .design-logo-cuarteto .dl-line-2 { font-size: clamp(18px, 6vw, 30px) !important; }
  .design-logo-redonditos .dl-line-1 { font-size: clamp(11px, 3.4vw, 16px) !important; }
  .design-logo-redonditos .dl-line-2 { font-size: clamp(16px, 5vw, 24px) !important; }
  .design-logo-tanbionica .dl-line-1 { font-size: clamp(20px, 7vw, 34px) !important; }
  .design-logo-soda .dl-line { font-size: clamp(14px, 5vw, 22px) !important; }
  .design-logo-miloj .dl-line-1 { font-size: clamp(22px, 8vw, 40px) !important; }
  .design-logo-tini .dl-line-1 { font-size: clamp(24px, 8vw, 42px) !important; }
  .design-logo-mariabecerra .dl-line { font-size: clamp(16px, 5.4vw, 26px) !important; }
  .design-logo-emilia .dl-line-1 { font-size: clamp(28px, 9vw, 46px) !important; }
  .design-logo-breakingbad .dl-line { font-size: clamp(18px, 5.8vw, 28px) !important; padding: 5px 8px 3px !important; min-width: 46px; }
  .design-logo-breakingbad { gap: 6px; }
  .design-logo-cristiano .dl-line-1 { font-size: clamp(28px, 10vw, 48px) !important; }
  .design-logo-cristiano .dl-line-2 { font-size: clamp(36px, 13vw, 62px) !important; }
  .design-logo-pastillas .dl-line-1 { font-size: clamp(10px, 3vw, 14px) !important; }
  .design-logo-pastillas .dl-line-2 { font-size: clamp(14px, 4.6vw, 22px) !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   DESTACADOS · carrusel auto-scroll con fotos reales de productos
   Aparece al principio para que los clientes vean piezas al instante.
═══════════════════════════════════════════════════════════════════ */
.destacados {
  position: relative;
  padding: clamp(28px, 4vh, 46px) 0 clamp(32px, 5vh, 54px);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(230, 140, 70, 0.08), transparent 60%),
    linear-gradient(180deg, #0F0D0A 0%, #171310 100%);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.destacados-head {
  max-width: var(--max);
  margin: 0 auto 22px;
  padding: 0 var(--gut);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.destacados-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFC895;
  font-weight: 600;
}
.destacados-star { color: #FFB65E; font-size: 12px; }
.destacados-title {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.destacados-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(244, 241, 235, 0.7);
}

/* Track auto-scroll */
.destacados-track-mask {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.destacados-track {
  display: flex;
  gap: 22px;
  padding: 4px 0;
  width: max-content;
  animation: destacadosScroll 42s linear infinite;
  will-change: transform;
}
.destacados-track:hover { animation-play-state: paused; }
@keyframes destacadosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.destacado-card {
  flex: 0 0 260px;
  background: #FFFFFF;
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.destacado-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
}
.destacado-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #1a1712 0%, #0F0D0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.destacado-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.destacado-card:hover .destacado-photo img { transform: scale(1.06); }
.destacado-photo[data-pid="nac-vaso"] img { transform: scale(1.25); transform-origin: center bottom; }
.destacado-card:hover .destacado-photo[data-pid="nac-vaso"] img { transform: scale(1.32); transform-origin: center bottom; }
.destacado-photo[data-pid="ink-v12-ariana"] img { transform: scale(1.18); transform-origin: center bottom; }
.destacado-card:hover .destacado-photo[data-pid="ink-v12-ariana"] img { transform: scale(1.25); transform-origin: center bottom; }
.destacado-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.destacado-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  min-height: 30px;
}
.destacado-price {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #C97A48;
}

@media (max-width: 640px) {
  .destacado-card { flex-basis: 220px; }
  .destacado-name { font-size: 14px; }
  .destacados-track { gap: 16px; animation-duration: 38s; }
}

/* Diseños Exclusivos vuelve al layout grid original (4 columnas) */
