/** Shopify CDN: Minification failed

Line 2136:1 Expected "}" to go with "{"

**/
/* ============================================================
   ARMORED SKIN — Home stylesheet
   Dark tactical / heritage outfitter. Oswald + Barlow.
   ============================================================ */

:root {
  /* surfaces */
  --bg-0: #0d0d0d;
  --bg-1: #141414;
  --bg-2: #1a1a1a;
  --bg-elev: #20231a;
  --graphite: #202320;
  --mil: #2b2e29;
  --mil-line: #3a3e36;

  /* brand */
  --od: #4b5320;
  --od-2: #5d6829;
  --amber: #ff6b1a;
  --amber-2: #ff8038;
  --amber-ink: #1a0f04;

  /* ink */
  --ink: #f2f2f2;
  --ink-dim: #c7c7c0;
  --muted: #8e8e85;
  --line: rgba(242, 242, 242, 0.10);
  --line-2: rgba(242, 242, 242, 0.06);

  /* accent (switchable via tweaks) */
  --accent: var(--amber);
  --accent-2: var(--amber-2);
  --accent-ink: var(--amber-ink);

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(16px, 4vw, 40px);
}

[data-accent="od"] {
  --accent: var(--od-2);
  --accent-2: #6f7c30;
  --accent-ink: #f2f2f2;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle carbon-fiber twill — barely-there */
body[data-texture="on"]::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.014) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.22) 0 2px, transparent 2px 4px);
  background-size: 6px 6px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- type helpers ---------- */
.head {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.98;
  margin: 0;
}
.kicker {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--accent);
}
.mono {
  font-family: "Courier New", ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---------- placeholder image system ---------- */
.ph {
  position: relative;
  background-color: #15170f;
  background-image:
    repeating-linear-gradient(45deg, rgba(242, 242, 242, 0.035) 0 12px, rgba(242, 242, 242, 0) 12px 24px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(242, 242, 242, 0.55);
}
.ph::after {
  content: attr(data-label);
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px dashed rgba(242, 242, 242, 0.28);
  white-space: nowrap;
  background: rgba(13, 13, 13, 0.4);
}
.ph.ph-od { background-color: #1c2014; }
.ph.ph-graphite { background-color: #181a17; }

/* ---------- buttons ---------- */
.btn {
  --bw: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  padding: 14px 26px;
  border: var(--bw) solid transparent;
  background: transparent;
  color: var(--ink);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-amber {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-amber:hover { background: var(--accent-2); box-shadow: 0 0 0 1px var(--accent-2), 0 10px 30px -12px var(--accent); }
.btn-ghost {
  border-color: rgba(242, 242, 242, 0.4);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(242, 242, 242, 0.06); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 16px; font-size: 12px; }

/* ---------- section scaffolding ---------- */
.section { padding-block: clamp(48px, 7vw, 96px); position: relative; }

/* banded rhythm — alternate dark tones so the page isn't flat */
.band-elev { background: var(--bg-elev); }
.band-line { border-top: 1px solid var(--mil-line); border-bottom: 1px solid var(--mil-line); }
.band-accent { position: relative; }
.band-accent::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 3px;
  background: var(--accent);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head .title { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.02; }
.section-num {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-num::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.link-more {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-dim);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.link-more:hover { color: var(--accent); border-color: var(--accent); }

/* hairline divider with stencil ticks */
.rule {
  height: 1px;
  background:
    repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  border: 0;
  margin: 0;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--od);
  color: #eef0e2;
  font-size: 12px;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
}
.topbar-ship {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
  min-width: 0;
}
.topbar-ship .dot { color: var(--amber); }
.topbar-tools { display: flex; align-items: center; gap: 18px; }
.topbar-tools a, .topbar-tools button {
  color: #eef0e2;
  background: none;
  border: 0;
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-tools .sep { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.25); }
@media (max-width: 720px) {
  .topbar-tools .hide-sm { display: none; }
  .topbar-ship .long { display: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}
/* crest logo */
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  flex: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.footer-brand .brand-logo { height: 62px; }
.drawer-logo { height: 86px; align-self: flex-start; margin: 4px 0 14px; }
.crest {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
  flex: none;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 22px;
  line-height: 0.9;
}
.brand-name small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.42em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 26px);
}
.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13.5px;
  color: var(--ink-dim);
  padding: 6px 2px;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-tools { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: none; border: 0; color: var(--ink);
  border-radius: 0;
}
.icon-btn:hover { color: var(--accent); }
.icon-btn .badge-count {
  position: absolute;
  transform: translate(12px, -12px);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  min-width: 16px; height: 16px;
  display: grid; place-items: center;
  padding: 0 3px;
}
.icon-btn { position: relative; }
.menu-btn { display: none; }

@media (max-width: 980px) {
  .header .wrap { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .menu-btn { display: grid; }
}

/* mobile nav drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: min(82vw, 340px);
  background: var(--bg-1);
  border-right: 2px solid var(--accent);
  padding: 22px;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
}
.drawer-panel a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .ph { width: 100%; height: 100%; border-radius: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.7) 38%, rgba(13, 13, 13, 0.15) 72%, rgba(13, 13, 13, 0.45) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0) 45%);
}
.hero .wrap { z-index: 2; width: 100%; padding-bottom: clamp(40px, 7vw, 90px); padding-top: 80px; }
.hero-inner { max-width: 720px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-tag .pill {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  white-space: nowrap;
}
/* offer card — −10% primera compra (hero right box) */
.offer-card {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  transform: translateY(-50%);
  z-index: 3;
  width: min(420px, 38vw);
  background: linear-gradient(160deg, rgba(26, 28, 22, 0.94), rgba(13, 13, 13, 0.96));
  border: 1px solid var(--accent);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(255, 107, 26, 0.12);
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.offer-card-tag {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.offer-card-big { display: flex; align-items: baseline; gap: 14px; line-height: 0.82; }
.offer-card-big .pct {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(72px, 8vw, 104px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.offer-card-big .pct .sym { color: var(--accent); }
.offer-card-big .dto {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 90px;
  line-height: 1;
}
.offer-card-sub { margin: 0; color: var(--ink-dim); font-size: 14.5px; }
.offer-card-sub strong { color: var(--ink); }
.offer-card-code {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px dashed rgba(255, 107, 26, 0.55);
  background: rgba(255, 107, 26, 0.06);
  padding: 10px 14px;
}
.offer-card-code .ccap {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
}
.offer-card-code .ccode {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 19px;
  color: var(--accent);
  margin-left: auto;
}
.offer-card-fine {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}

/* hide offer card on split/stack hero variants (layouts differ) */
[data-hero="split"] .offer-card,
[data-hero="stack"] .offer-card { display: none; }

@media (max-width: 1100px) {
  .offer-card { width: min(380px, 42vw); padding: 24px 22px; }
  .offer-card-big .pct { font-size: clamp(60px, 7vw, 84px); }
}
@media (max-width: 860px) {
  .offer-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 460px;
    margin-top: 34px;
  }
  .hero .wrap { flex-direction: column; align-items: flex-start; }
}

.hero-tag { flex-wrap: wrap; }

/* primary buy-now CTA — extra presence + pulse ring */
.btn-buy { font-size: 15px; padding: 16px 30px; position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .btn-buy::after {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid var(--accent);
    clip-path: inherit;
    opacity: 0;
    animation: buyPulse 2.6s ease-out infinite;
    pointer-events: none;
  }
}
@keyframes buyPulse {
  0% { opacity: 0.7; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.12); }
}
.hero-title {
  font-size: clamp(52px, 11vw, 150px);
  letter-spacing: 0.01em;
}
.hero-title .l2 { color: var(--accent); display: block; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-dim);
  max-width: 540px;
  margin: 22px 0 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 54px);
  margin-top: clamp(34px, 5vw, 60px);
  flex-wrap: wrap;
}
.hero-stat .n {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1;
}
.hero-stat .n span { color: var(--accent); }
.hero-stat .l {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
/* vertical side label */
.hero-side {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
@media (max-width: 860px) { .hero-side { display: none; } }

/* --- HERO VARIANT B: split --- */
[data-hero="split"] .hero { align-items: stretch; min-height: clamp(540px, 82vh, 820px); }
[data-hero="split"] .hero-scrim { display: none; }
[data-hero="split"] .hero-media {
  left: auto; width: 46%;
}
[data-hero="split"] .hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-0), transparent 30%);
}
[data-hero="split"] .hero .wrap { display: flex; align-items: center; }
[data-hero="split"] .hero-inner { max-width: 620px; }
[data-hero="split"] .hero-title { font-size: clamp(48px, 8vw, 110px); }
@media (max-width: 860px) {
  [data-hero="split"] .hero-media { width: 100%; opacity: 0.4; }
  [data-hero="split"] .hero-media::after { background: linear-gradient(0deg, var(--bg-0), rgba(13,13,13,.4)); }
}

/* --- HERO VARIANT C: editorial stack --- */
[data-hero="stack"] .hero-scrim {
  background:
    linear-gradient(0deg, rgba(13, 13, 13, 0.96) 4%, rgba(13, 13, 13, 0.2) 60%, rgba(13,13,13,.7) 100%);
}
[data-hero="stack"] .hero { align-items: center; text-align: center; }
[data-hero="stack"] .hero .wrap { display: flex; flex-direction: column; align-items: center; }
[data-hero="stack"] .hero-inner { max-width: 980px; }
[data-hero="stack"] .hero-title { font-size: clamp(56px, 13vw, 180px); }
[data-hero="stack"] .hero-sub { margin-inline: auto; }
[data-hero="stack"] .hero-cta { justify-content: center; }
[data-hero="stack"] .hero-tag { justify-content: center; }
[data-hero="stack"] .hero-stats { justify-content: center; }

/* ---------- marquee strip ---------- */
.marquee {
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  padding: 11px 0;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after { content: "✦"; opacity: 0.55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   COLECCIONES POR UNIVERSO
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.coll {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.coll .ph { position: absolute; inset: 0; }
.coll-grad {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.92) 8%, rgba(13, 13, 13, 0.15) 70%);
  transition: background 0.25s ease;
}
.coll:hover .coll-grad { background: linear-gradient(0deg, rgba(13, 13, 13, 0.92) 20%, rgba(75, 83, 32, 0.35) 100%); }
.coll-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.coll-idx {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.coll-name {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 0.95;
}
.coll-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.coll:hover .coll-meta { opacity: 1; transform: none; }
.coll.span2 { grid-column: span 2; }
.coll.tall { grid-row: span 2; }
@media (max-width: 900px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .coll.span2 { grid-column: span 2; }
  .coll.tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 158px; gap: 10px; }
  .coll.span2 { grid-column: span 2; }
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(255, 107, 26, 0.5); }
.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.card-media .ph { position: absolute; inset: 0; transition: opacity 0.35s ease; }
.card-media .ph.alt { opacity: 0; }
.card:hover .card-media .ph.main { opacity: 0; }
.card:hover .card-media .ph.alt { opacity: 1; }
.card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.badge {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
  padding: 4px 9px;
  background: rgba(13, 13, 13, 0.82);
  color: var(--ink);
  border: 1px solid var(--line);
}
.badge.cat { color: var(--ink-dim); }
.badge.new { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.badge.sale { background: #b32d12; color: #fff; border-color: #b32d12; }
.wish {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.wish:hover, .wish.on { color: var(--accent); border-color: var(--accent); }

/* quick size selector — slides up on hover (desktop) */
.card-sizes {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  gap: 6px;
  padding: 10px;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.3));
  transform: translateY(101%);
  transition: transform 0.22s ease;
}
.card:hover .card-sizes { transform: translateY(0); }
.size {
  flex: 1;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--ink);
}
.size:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.size[disabled] { opacity: 0.32; text-decoration: line-through; cursor: not-allowed; }

.card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-cat {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: var(--muted);
}
.card-name {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 16px;
  line-height: 1.05;
  margin: 0;
}
.card-rating { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.stars { color: var(--accent); letter-spacing: 1px; font-size: 12px; }
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
}
.price { display: flex; align-items: baseline; gap: 8px; }
.price .now {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.price .was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.add {
  width: 42px; height: 42px;
  flex: none;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background 0.15s, transform 0.1s;
}
.add:hover { background: var(--accent-2); }
.add:active { transform: scale(0.94); }
.add.added { background: var(--od-2); color: #fff; }

/* quick view button appears on hover over media */
.quickview {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  background: rgba(13, 13, 13, 0.85);
  border: 1px solid var(--ink);
  color: var(--ink);
}
.card-media:hover .quickview { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none) {
  .card-sizes { position: static; transform: none; background: none; padding: 12px 14px 0; }
  .quickview { display: none; }
}

/* ============================================================
   MÁS VENDIDOS — cinta infinita (derecha → izquierda)
   ============================================================ */
.bs-marquee {
  position: relative;
  overflow: hidden;
  /* fade edges so cards enter/exit cleanly */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.bs-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: bsScroll var(--bs-duration, 40s) linear infinite;
}
.bs-marquee:hover .bs-track { animation-play-state: paused; }
.bs-track > .card {
  flex: 0 0 clamp(240px, 26vw, 300px);
}
@keyframes bsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .bs-marquee { overflow-x: auto; }
  .bs-track { animation: none; }
}

/* ============================================================
   SERVICIOS AIRSOFT — distinct, secondary
   ============================================================ */
.airsoft {
  background:
    linear-gradient(rgba(37, 42, 26, 0.96), rgba(31, 36, 22, 0.97)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 14px, transparent 14px 28px);
  border-block: 2px solid var(--od);
}
.airsoft-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }
.airsoft-tag {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--od-2);
  color: #aeb98a;
}
.airsoft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 980px) { .airsoft-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .airsoft-grid { grid-template-columns: 1fr; } }
.svc {
  background: rgba(13, 13, 13, 0.55);
  border: 1px solid var(--mil-line);
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.svc:hover { border-color: var(--od-2); transform: translateY(-3px); }
.svc .ph { aspect-ratio: 16/10; }
.svc-num {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #aeb98a;
  padding: 16px 18px 0;
}
.svc h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 19px;
  margin: 6px 18px 0;
  line-height: 1.02;
}
.svc p { margin: 8px 18px 0; color: var(--muted); font-size: 13.5px; }
.svc .svc-link {
  margin: 14px 18px 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: #c4cf9e;
  display: inline-flex;
  gap: 8px;
}
.svc:hover .svc-link { color: var(--amber); }

/* ============================================================
   GIFT CARD BANNER
   ============================================================ */
.giftcard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  background: var(--bg-0);
  overflow: hidden;
}
@media (max-width: 820px) { .giftcard { grid-template-columns: 1fr; } }
.giftcard-body { padding: clamp(28px, 5vw, 56px); display: flex; flex-direction: column; gap: 18px; align-items: flex-start; justify-content: center; }
.giftcard-body h2 { font-size: clamp(30px, 4vw, 50px); }
.giftcard-body p { color: var(--ink-dim); max-width: 420px; margin: 0; }
.giftcard-media { position: relative; min-height: 260px; }
.giftcard-media .ph { position: absolute; inset: 0; }
.gift-amounts { display: flex; gap: 8px; flex-wrap: wrap; }
.gift-amounts .chip {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
}
.gift-amounts .chip:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   TRUST BLOCK
   ============================================================ */
.trust { border-top: 1px solid var(--line); background: var(--bg-0); }
.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; gap: 18px; } }
.trust-card { border: 1px solid var(--line); background: var(--bg-2); padding: 26px; }
.trust-card h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 18px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-card h3 .ic { color: var(--accent); display: inline-flex; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; font-size: 14px; }
.hours dt { color: var(--muted); font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; font-size: 12.5px; }
.hours dd { margin: 0; text-align: right; color: var(--ink-dim); }
.pay-methods { display: flex; flex-wrap: wrap; gap: 8px; }
.pay {
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  background: var(--bg-0);
}
.trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.trust-list li { display: flex; gap: 12px; font-size: 14px; color: var(--ink-dim); }
.trust-list .ic { color: var(--accent); flex: none; }
.rating-big { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.rating-big .stars { white-space: nowrap; }
.rating-big .num { font-family: var(--font-head); font-weight: 700; font-size: 44px; line-height: 1; }
.rating-big .of { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.newsletter {
  border-top: 2px solid var(--od);
  border-bottom: 2px solid var(--od);
  background:
    linear-gradient(rgba(33, 38, 23, 0.96), rgba(28, 33, 19, 0.97)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 14px, transparent 14px 28px);
}
.newsletter .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-block: clamp(34px, 5vw, 56px);
}
.newsletter h2 { font-size: clamp(26px, 3.6vw, 42px); max-width: 460px; }
.newsletter p { color: var(--muted); margin: 8px 0 0; }
.nl-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.nl-form input {
  flex: 1;
  background: var(--bg-0);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 15px;
  height: 52px;
}
.nl-form input:focus { outline: none; border-color: var(--accent); }

.footer { background: var(--bg-0); border-top: 1px solid var(--line); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-block: clamp(40px, 6vw, 70px);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-dim); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 300px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--ink-dim); margin-top: 14px; }
.footer-contact a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--ink-dim); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
}
.cart-overlay.open { visibility: visible; pointer-events: auto; }
.cart-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cart-overlay.open .cart-scrim { opacity: 1; }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--bg-1);
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: -30px 0 80px -30px rgba(0, 0, 0, 0.9);
}
.cart-overlay.open .cart-panel { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.cart-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 20px;
  margin: 0;
}
.cart-title span { color: var(--accent); }

.cart-ship { padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--bg-2); flex: none; }
.cart-ship p { margin: 0 0 8px; font-size: 12.5px; color: var(--ink-dim); letter-spacing: 0.02em; }
.cart-ship strong { color: var(--accent); }
.ship-track { height: 6px; background: var(--bg-0); border: 1px solid var(--line); overflow: hidden; }
.ship-bar { display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.4s ease; }
.ship-bar.done { background: var(--od-2); }

.cart-body { flex: 1; overflow-y: auto; padding: 6px 20px; }

.cart-empty { text-align: center; padding: 60px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cart-empty-ic { color: var(--muted); margin-bottom: 6px; }
.cart-empty-t { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 18px; margin: 0; }
.cart-empty-s { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

/* cart line item */
.ci {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.ci-media { width: 72px; height: 72px; }
.ci-media .ph { width: 100%; height: 100%; }
.ci-cat { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; color: var(--muted); }
.ci-name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; line-height: 1.05; margin: 2px 0 2px; }
.ci-meta { font-size: 12px; color: var(--ink-dim); margin-bottom: 10px; }
.ci-meta strong { color: var(--ink); }
.ci-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty-btn { width: 30px; height: 30px; background: var(--bg-2); border: 0; color: var(--ink); font-size: 18px; line-height: 1; display: grid; place-items: center; }
.qty-btn:hover { color: var(--accent); }
.qty-n { min-width: 30px; text-align: center; font-family: var(--font-head); font-size: 14px; }
.ci-price { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--accent); }
.ci-del { background: none; border: 0; color: var(--muted); padding: 2px; }
.ci-del:hover { color: #d9512c; }

.cart-foot { flex: none; padding: 16px 20px 20px; border-top: 1px solid var(--line); background: var(--bg-0); }
.promo { display: flex; gap: 8px; margin-bottom: 12px; }
.promo input {
  flex: 1; min-width: 0;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0 14px;
  height: 42px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.promo input:focus { outline: none; border-color: var(--accent); }
.promo-state {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #aeb98a;
  margin-bottom: 12px;
}
.promo-state svg { color: var(--od-2); vertical-align: -3px; }
.promo-state strong { color: var(--ink); }
.promo-state button { background: none; border: 0; color: var(--muted); text-decoration: underline; font-size: 12px; }
.promo-state button:hover { color: var(--accent); }

.cart-sum { margin: 0 0 14px; display: flex; flex-direction: column; gap: 7px; }
.sum-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 14px; }
.sum-row dt { color: var(--ink-dim); margin: 0; }
.sum-row dd { margin: 0; font-family: var(--font-head); }
.sum-row.disc dd { color: var(--od-2); }
.sum-row.total { padding-top: 10px; border-top: 1px solid var(--line); margin-top: 3px; }
.sum-row.total dt { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); font-size: 16px; }
.sum-row.total dd { font-size: 24px; font-weight: 700; color: var(--accent); }

.xpay-row { margin-top: 14px; }
.xpay-cap { display: block; text-align: center; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.xpay-btns { display: flex; gap: 8px; }
.xpay {
  flex: 1;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 13px;
  height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
}
.xpay:hover { border-color: var(--accent); color: var(--accent); }
.cart-secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }
.cart-secure svg { color: var(--od-2); }

@media (max-width: 480px) {
  .cart-panel { border-left: 0; }
  .sum-row.total dd { font-size: 22px; }
}
/* ============================================================
   PERSONALIZACIÓN — configurador de camiseta + calculadora
   ============================================================ */
[hidden] { display: none !important; }
.cz-intro { color: var(--ink-dim); max-width: 420px; margin: 0; font-size: 15px; }

.customizer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 900px) { .customizer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* --- PREVIEW --- */
.cz-preview {
  position: sticky;
  top: 92px;
  background: var(--bg-0);
  border: 1px solid var(--mil-line);
  padding: 22px;
}
@media (max-width: 900px) { .cz-preview { position: static; } }
.cz-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.05), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 14px, transparent 14px 28px);
  overflow: hidden;
}
.cz-tee { width: 88%; height: 88%; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.5)); }
.cz-tee-shape {
  fill: var(--bg-2);
  stroke: rgba(255,255,255,0.16);
  stroke-width: 0.6;
  transition: fill 0.25s ease;
}
.cz-zone {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(242,242,242,0.35);
  background: rgba(13,13,13,0.18);
  color: rgba(242,242,242,0.6);
  padding: 0;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}
.cz-zone img { width: 100%; height: 100%; object-fit: contain; display: none; padding: 6%; }
.cz-zone-tag {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9.5px;
  pointer-events: none;
}
.cz-zone.on { border-style: solid; border-color: var(--accent); background: rgba(255,107,26,0.08); color: var(--accent); }
.cz-zone.on.has-img { background: rgba(13,13,13,0.0); border-color: var(--accent); }
.cz-zone.on.has-img img { display: block; }
.cz-zone.on.has-img .cz-zone-tag { display: none; }
.cz-stage[data-side="front"] .cz-zone[data-faces="back"],
.cz-stage[data-side="back"] .cz-zone[data-faces="front"] { display: none; }

.cz-side-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 8px;
  background: rgba(13,13,13,0.5);
}
.cz-side-toggle { display: flex; gap: 8px; margin-top: 14px; }
.cz-side-toggle button {
  flex: 1;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.cz-side-toggle button.active { border-color: var(--accent); color: var(--accent); }
.cz-note { text-align: center; font-size: 10px; color: var(--muted); margin: 10px 0 0; }

/* --- CONTROLS --- */
.cz-controls { display: flex; flex-direction: column; gap: 22px; }
.cz-field { display: flex; flex-direction: column; gap: 12px; }
.cz-legend {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cz-legend small { font-family: var(--font-body); text-transform: none; letter-spacing: 0; color: var(--accent); font-size: 13px; font-weight: 600; }
.cz-step {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 700;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.cz-opts { display: flex; flex-wrap: wrap; gap: 8px; }

.cz-opts-type { display: grid; grid-template-columns: 1fr 1fr; }
.cz-chip {
  text-align: left;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cz-chip small { font-family: var(--font-body); font-weight: 400; letter-spacing: 0; color: var(--muted); font-size: 12.5px; }
.cz-chip.active { border-color: var(--accent); color: var(--ink); background: rgba(255,107,26,0.06); }
.cz-chip.active small { color: var(--accent); }

.cz-size {
  min-width: 48px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.cz-size em { font-style: normal; font-size: 10px; color: var(--muted); }
.cz-size.active { border-color: var(--accent); color: var(--accent); background: rgba(255,107,26,0.06); }
.cz-size.active em { color: var(--accent); }

.cz-sw {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sw);
  border: 2px solid var(--line);
  position: relative;
}
.cz-sw.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,26,0.25); }

.cz-pos-btn {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.cz-pos-btn::before {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  margin-right: 8px;
  border: 1px solid currentColor;
  vertical-align: -1px;
}
.cz-pos-btn.active { border-color: var(--accent); color: var(--ink); background: rgba(255,107,26,0.06); }
.cz-pos-btn.active::before { background: var(--accent); border-color: var(--accent); }

.cz-upload {
  display: block;
  border: 1.5px dashed var(--mil-line);
  background: var(--bg-2);
  padding: 22px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cz-upload:hover, .cz-upload.drag { border-color: var(--accent); background: rgba(255,107,26,0.05); }
.cz-upload-empty { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; color: var(--muted); }
.cz-upload-empty .ico { color: var(--accent); }
.cz-upload-t { font-size: 14px; color: var(--ink-dim); }
.cz-upload-t strong { color: var(--accent); }
.cz-upload-s { font-size: 10px; }
.cz-upload-done { display: flex; align-items: center; gap: 14px; }
.cz-upload-done img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: repeating-conic-gradient(#2a2a2a 0% 25%, #1c1c1c 0% 50%) 50% / 14px 14px;
  border: 1px solid var(--line);
  flex: none;
}
.cz-upload-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cz-upload-meta span { font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cz-upload-meta button { align-self: flex-start; background: none; border: 0; color: var(--muted); text-decoration: underline; font-size: 12px; }
.cz-upload-meta button:hover { color: var(--accent); }

.cz-qty { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.cz-qty .qty-btn { width: 42px; height: 42px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); font-size: 20px; }
.cz-qty input {
  width: 64px; height: 42px;
  text-align: center;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-inline: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 16px;
  -moz-appearance: textfield;
}
.cz-qty input::-webkit-outer-spin-button, .cz-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cz-qty-hint { margin-left: 14px; font-size: 11px; color: var(--muted); }

.cz-calc {
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid var(--accent);
  background: var(--bg-0);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
}
@media (max-width: 760px) { .cz-calc { grid-template-columns: 1fr; } }
.cz-calc-head { grid-column: 1 / -1; padding: 22px 26px 6px; }
.cz-calc-head h3 { font-size: clamp(22px, 3vw, 30px); margin: 6px 0 0; }
.cz-breakdown { margin: 0; padding: 16px 26px 26px; display: flex; flex-direction: column; gap: 10px; align-self: start; }
.cz-brow { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 14.5px; border-bottom: 1px dotted var(--line); padding-bottom: 9px; }
.cz-brow dt { color: var(--ink-dim); margin: 0; }
.cz-brow dt small { color: var(--muted); font-size: 12px; }
.cz-brow dd { margin: 0; font-family: var(--font-head); font-size: 15px; white-space: nowrap; }
.cz-brow.disc dt, .cz-brow.disc dd { color: var(--od-2); }
.cz-brow.muted dt, .cz-brow.muted dd { color: var(--muted); }

.cz-total-block {
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 760px) { .cz-total-block { border-left: 0; border-top: 1px solid var(--line); } }
.cz-unit { display: flex; align-items: baseline; justify-content: space-between; color: var(--ink-dim); font-size: 14px; }
.cz-unit span:last-child { font-family: var(--font-head); font-size: 18px; color: var(--ink); }
.cz-total { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-block: 1px solid var(--line); }
.cz-total-cap { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: var(--muted); }
.cz-total-val { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 5vw, 48px); color: var(--accent); line-height: 1; }
.cz-total-qty { font-size: 11px; color: var(--muted); }
.cz-add { width: 100%; justify-content: center; }
.cz-disclaimer { grid-column: 1 / -1; padding: 0 26px 22px; font-size: 10.5px; color: var(--muted); line-height: 1.5; }

@media (max-width: 640px) {
  .cz-opts-type { grid-template-columns: 1fr; }
  .cz-calc-head { padding: 18px 18px 4px; }
  .cz-breakdown { padding: 14px 18px 20px; }
  .cz-total-block { padding: 20px 18px; }
  .cz-disclaimer { padding: 0 18px 18px; }
}

/* ============================================================
   CROSS-BRAND BRIDGE — TAC LANDS (marca hermana)
   marco oscuro común + acento rojo TAC LANDS
   ============================================================ */
.taclands-bridge { --tl-red: #e11522; --tl-red-2: #ff2431; }
.tl-banner {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 340px;
  overflow: hidden;
  background: #0b0c0e;
  border: 1px solid var(--tl-red);
  box-shadow: inset 0 0 0 1px rgba(225, 21, 34, 0.14), 0 30px 80px -40px rgba(225, 21, 34, 0.5);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tl-banner:hover { box-shadow: inset 0 0 0 1px rgba(225, 21, 34, 0.28), 0 34px 90px -36px rgba(225, 21, 34, 0.7); }
@media (max-width: 820px) { .tl-banner { grid-template-columns: 1fr; } }

.tl-media { position: relative; overflow: hidden; }
.tl-media .ph { position: absolute; inset: 0; }
.tl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.05);
}
.tl-media-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, #0b0c0e 96%),
    linear-gradient(0deg, rgba(225,21,34,0.22), transparent 55%);
}
@media (max-width: 820px) {
  .tl-media { min-height: 200px; }
  .tl-media-grad { background: linear-gradient(0deg, #0b0c0e 6%, transparent 70%), linear-gradient(0deg, rgba(225,21,34,0.25), transparent 60%); }
}

.tl-body {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.tl-brandrow { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tl-kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 600;
  color: var(--tl-red-2);
  border: 1px solid rgba(225, 21, 34, 0.5);
  padding: 5px 10px;
}
.tl-wordmark {
  font-family: "Arial Narrow", var(--font-head);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--ink);
}
.tl-wordmark .tl-star { color: var(--tl-red); margin: 0 0.1em; font-style: normal; }
.tl-logo { height: 30px; width: auto; display: block; }
.tl-title {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 0.98;
}
.tl-title .tl-line2 { display: block; color: var(--tl-red-2); font-style: italic; }
.tl-sub { color: var(--ink-dim); max-width: 46ch; margin: 0; font-size: 15px; }
.tl-feats {
  list-style: none;
  padding: 0;
  margin: 4px 0 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.tl-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--ink-dim);
}
.tl-feats .ico { color: var(--tl-red-2); }
.tl-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.tl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 15px;
  padding: 15px 26px;
  background: var(--tl-red);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.16s ease, transform 0.16s ease;
}
.tl-banner:hover .tl-btn { background: var(--tl-red-2); transform: translateY(-2px); }
.tl-note { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }

.toast-stack {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-left-width: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  font-size: 14px;
  animation: toastin 0.25s ease;
}
.toast .mono { font-size: 11px; color: var(--accent); }
@keyframes toastin { from { transform: translateX(20px); opacity: 0; } }

/* icon sizing */
.ico { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.ico-sm { width: 16px; height: 16px; }

/* reveal on scroll — only hides when JS is present (.js on <html>) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* hero content is always visible (no entrance gating) */

/* ============================================================
   RESPONSIVE — professional mobile-first pass
   (the bulk of traffic is phones; tighten density + targets)
   ============================================================ */

/* tablets / small laptops */
@media (max-width: 880px) {
  .hero { min-height: auto; }
  .hero .wrap { padding-top: 64px; padding-bottom: 56px; }
  .section-head { align-items: flex-start; }
}

/* phones */
@media (max-width: 640px) {
  /* top bar — shrink and keep on one line */
  .topbar .wrap { min-height: 34px; gap: 10px; }
  .topbar-ship { font-size: 10.5px; letter-spacing: 0.06em; }
  .topbar-tools { gap: 12px; }
  .topbar-tools a, .topbar-tools button { font-size: 10.5px; letter-spacing: 0.08em; }

  /* header — denser, fewer icons, readable wordmark */
  .header .wrap { min-height: 60px; gap: 10px; }
  .brand { gap: 9px; }
  .brand-logo { height: 38px; }
  .brand-name { font-size: 17px; letter-spacing: 0.08em; }
  .brand-name small { display: none; }
  .header-tools { gap: 0; }
  .icon-btn { width: 42px; height: 42px; }
  .hide-mobile { display: none; }

  /* hero */
  .hero .wrap { padding-top: 52px; padding-bottom: 48px; }
  .hero-tag { margin-bottom: 16px; gap: 8px; }
  .hero-title { font-size: clamp(46px, 15vw, 74px); }
  .hero-sub { font-size: 15.5px; margin: 16px 0 24px; }
  .hero-cta { width: 100%; gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; padding-inline: 16px; }
  .hero-stats { gap: 20px 26px; margin-top: 30px; }
  .hero-stat .l { font-size: 10px; }

  /* offer card → full width, slightly tighter */
  .offer-card { padding: 24px 20px; gap: 12px; }
  .offer-card-big .pct { font-size: 72px; }
  .offer-card-big .dto { font-size: 15px; }
  .offer-card-code .ccode { font-size: 17px; }

  /* section rhythm */
  .section { padding-block: 46px; }
  .section-num { font-size: 11px; }
  .band-accent::before { width: 64px; }

  /* product cards stay 2-up but tighter type */
  .products-grid { gap: 12px; }
  .card-body { padding: 12px 12px 14px; gap: 6px; }
  .card-name { font-size: 14px; }
  .card-rating { font-size: 10px; }
  .price .now { font-size: 19px; }
  .add { width: 38px; height: 38px; }

  /* collections labels */
  .coll-body { padding: 14px; }
  .coll-name { font-size: 19px; }

  /* airsoft / gift / trust spacing */
  .svc h3 { font-size: 18px; }
  .trust-card { padding: 20px; }
  .giftcard-body { padding: 28px 22px; }
  .hours { font-size: 13px; }

  /* newsletter stacks cleanly */
  .newsletter .wrap { gap: 16px; }
  .nl-form { max-width: none; min-width: 0; }
  .nl-form input { height: 50px; }

  /* footer contact tap targets */
  .footer-col a, .footer-contact a { display: inline-block; padding-block: 2px; }
}

/* very narrow phones */
@media (max-width: 380px) {
  .topbar-ship { font-size: 9.5px; }
  .brand-name { font-size: 15px; }
  .hero-title { font-size: clamp(42px, 14vw, 60px); }
  .hero-stats { gap: 16px 22px; }
  .offer-card-big .pct { font-size: 64px; }
  .gift-amounts .chip { padding: 7px 11px; font-size: 14px; }
}

/* landscape phones: let the hero breathe less vertically */
@media (max-width: 900px) and (orientation: landscape) {
  .hero .wrap { padding-top: 56px; padding-bottom: 40px; }
}
/* ==========================================================
   PRODUCTO - IMAGEN ADAPTATIVA (ARMORED SKIN)
   ========================================================== */

.pdp-gallery{
    width:100%;
}

#pdpMain{
    display:block;
    width:100%;
    height:auto !important;
    max-width:100%;
    object-fit:contain;
    object-position:center;
    border:1px solid var(--line);
    background:var(--bg-1);
}

/* Miniaturas */
.pdp-thumbs{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(80px,1fr));
    gap:12px;
    margin-top:18px;
}

.pdp-thumb{
    border:1px solid var(--line);
    background:var(--bg-1);
    padding:4px;
    cursor:pointer;
    transition:.25s;
}

.pdp-thumb:hover{
    border-color:var(--accent);
}

.pdp-thumb img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}

/* Desktop */
@media(min-width:991px){

.pdp-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 480px;
    gap:50px;
    align-items:start;
}

}

/* Tablet */
@media(max-width:990px){

.pdp-grid{
    display:block;
}

.pdp-gallery{
    margin-bottom:35px;
}

}

/* Evita cualquier ratio fijo heredado */
.pdp-gallery img,
#pdpMain{
    aspect-ratio:auto !important;
}
.badge.cat{
    display: none !important;
}
.badge.new{
    display:none !important;
}
/* =========================
   MEGA MENU ARMORED SKIN
   ========================= */

.nav-item.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 40px));
  background: #111;
  border: 1px solid rgba(255,107,26,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.mega-col h4 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,107,26,.35);
  padding-bottom: 10px;
}

.mega-col a {
  display: block;
  padding: 8px 0;
  color: var(--ink-dim);
  font-size: 14px;
  transition: color .15s ease, transform .15s ease;
}

.mega-col a:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.mega-footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mega-footer a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--accent);
}

@media (max-width: 980px) {
  .mega-menu {
    display: none;
  }
}
/* ===== DESACTIVAR SEGUNDA IMAGEN HOVER ===== */

.card .pimg.alt{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
}

.card:hover .pimg.alt{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
}

.card .pimg.main{
    opacity:1 !important;
    transform:scale(1);
    transition:transform .35s ease;
}

.card:hover .pimg.main{
    opacity:1 !important;
    transform:scale(1.08);
}
/* ========= ARMORED SKIN MEGAMENU ========= */

.nav-item{
    position:relative;
}

.nav-item>.nav-drop{
    position:absolute;
    top:100%;
    left:0;
    min-width:280px;
    background:#111;
    border:1px solid rgba(255,107,26,.25);
    box-shadow:0 18px 40px rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.25s;
    z-index:9999;
}

.nav-item:hover>.nav-drop{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-drop a,
.nav-subtitle{
    font: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    color:#fff;
    text-decoration:none;
    transition:.2s;
}

.nav-drop a:hover,
.nav-subtitle:hover{
    background:#1a1a1a;
    color:#ff6b1a;
}

.nav-subgroup{
    position:relative;
}

.nav-subtitle::after{
    content:"›";
    font-size:16px;
    opacity:.7;
}

.nav-subgroup-links{
    position:absolute;
    left:100%;
    top:0;
    min-width:280px;
    background:#111;
    border:1px solid rgba(255,107,26,.25);
    box-shadow:0 18px 40px rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transform:translateX(8px);
    transition:.25s;
}

.nav-subgroup:hover>.nav-subgroup-links{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

.nav-subgroup-links a{
    display:block;
    padding:14px 18px;
    color:#fff;
    text-decoration:none;
}

.nav-subgroup-links a:hover{
    background:#1a1a1a;
    color:#ff6b1a;
    .nav-subtitle{
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    text-transform: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
}
.nav-subgroup{
    font: inherit !important;
}

.nav-subgroup span{
    font: inherit !important;
}