/* ═══════════════════════════════════════════
   SHIFT-16 — style.css
   Drop 001 · SS25 · Chile
═══════════════════════════════════════════ */

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

:root {
  --black: #080808;
  --off-white: #F2EFE8;
  --gray-1: #111111;
  --gray-2: #1C1C1C;
  --gray-3: #2A2A2A;
  --gray-4: #444444;
  --gray-5: #888888;
  --accent: #ff0000;
  --accent-dark: #9FCC00;
  --green-wa: #25D366;
  --red: #FF3131;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  #cursor { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s;
  mix-blend-mode: difference;
}

#cursor.big {
  width: 48px;
  height: 48px;
  background: var(--off-white);
}

body:not(:hover) #cursor { opacity: 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .9) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--off-white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right .25s;
}

.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-socials {
  display: flex;
  gap: 14px;
}

.nav-socials a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-3);
  border-radius: 50%;
  transition: border-color .2s, background .2s;
}

.nav-socials a:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.nav-socials a:hover svg { fill: var(--black); }

.nav-socials svg {
  width: 13px;
  height: 13px;
  fill: var(--gray-5);
  transition: fill .2s;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--gray-1);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 60px 60px;
  z-index: 10;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.1) brightness(.75);
  transform-origin: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 8, 8, .7) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg-num {
  position: absolute;
  bottom: -40px;
  left: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 25vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .04);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.02em;
}

.hero-slider-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(242, 239, 232, .25);
  cursor: pointer;
  transition: background .3s, width .3s;
  border: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0s;
}

.hero-dot.active {
  width: 48px;
  background: rgba(242, 239, 232, .15);
}

.hero-dot.active::after {
  transform: scaleX(1);
  transition: transform 5s linear;
}

.hero-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 30;
  width: 0%;
  transition: width 5s linear;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
  width: fit-content;
  animation: fadeUp .7s .2s both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 24px;
  animation: fadeUp .7s .35s both;
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--off-white);
}

.hero-title .accent-word { color: var(--accent); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  animation: fadeUp .7s .5s both;
}

.hero-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: .04em;
  color: var(--off-white);
}

.hero-divider-v {
  width: 1px;
  height: 28px;
  background: var(--gray-3);
}

.hero-specs {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-5);
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 12px;
  animation: fadeUp .7s .65s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--gray-3);
  padding: 16px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .15s;
}

.btn-outline:hover {
  border-color: var(--off-white);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s 1.2s both;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray-4);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gray-4) 0%, transparent 100%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  background: rgba(8, 8, 8, .85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gray-3);
  z-index: 20;
}

.hero-stat {
  flex: 1;
  padding: 18px 24px;
  border-right: 1px solid var(--gray-3);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-lbl {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-5);
}

/* ── TICKER ── */
.ticker {
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--black);
  padding: 0 28px;
}

.ticker-sep { color: rgba(0, 0, 0, .35); }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

/* ── FEATURED PRODUCT ── */
.featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 90vh;
  border-top: 1px solid var(--gray-2);
}

.featured-visual {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-img {
  width: 50%;
  max-width: 1020px;
  position: relative;
  z-index: 2;
  filter: contrast(1.08) brightness(.94);
  transition: transform .5s ease;
}

.featured-visual:hover .featured-img {
  transform: scale(1.03) translateY(-6px);
}

.featured-bg-text {
  position: absolute;
  bottom: -30px;
  left: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 16vw, 200px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -.02em;
}

.featured-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  animation: rotateSlow 12s linear infinite;
}

.featured-badge span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.4;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.featured-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gray-2);
}

.featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 10px;
}

.featured-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--off-white);
}

.featured-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.featured-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: .04em;
  color: var(--accent);
}

.featured-price-note {
  font-size: 11px;
  color: var(--gray-5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── PRODUCT GALLERY (nuevo) ── */
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  width: 100%;
  height: 100%;
  align-items: stretch;
  padding: 40px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gray-3);
  background: var(--gray-2);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color .2s, opacity .2s;
  opacity: .55;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover { opacity: 1; }

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

.gallery-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-4);
  background: var(--gray-2);
}

.gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: contrast(1.08) brightness(.94);
  transition: opacity .25s;
}

/* Specs table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.spec-table tr { border-bottom: 1px solid var(--gray-2); }
.spec-table tr:first-child { border-top: 1px solid var(--gray-2); }

.spec-table td {
  padding: 13px 0;
  font-size: 13px;
}

.spec-table td:first-child {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-5);
  width: 38%;
}

.spec-table td:last-child {
  color: var(--off-white);
  font-weight: 400;
}

/* Size selector */
.size-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 10px;
}

.size-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.size-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-3);
  background: transparent;
  color: var(--gray-5);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .15s;
}

.size-btn:hover {
  border-color: var(--off-white);
  color: var(--off-white);
}

.size-btn.active {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--black);
}

.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-5);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  margin-bottom: 28px;
  padding: 0;
  transition: color .2s;
}

.size-guide-link:hover { color: var(--accent); }

/* CTA stack */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-wa);
  color: #fff;
  border: none;
  padding: 17px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-wa:hover {
  background: #1fb85a;
  transform: translateY(-2px);
}

.btn-wa-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--green-wa);
  border: 1px solid rgba(37, 211, 102, .3);
  padding: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-wa-ghost:hover {
  border-color: var(--green-wa);
  background: rgba(37, 211, 102, .06);
}

.unique-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--gray-4);
  letter-spacing: .06em;
  text-align: center;
}

.unique-note span { color: var(--accent); }

/* ── SLOGAN STRIP ── */
.slogan-strip {
  overflow: hidden;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 40px 0;
  position: relative;
}

.slogan-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}

.slogan-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -.01em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-3);
  padding: 0 28px;
  text-transform: uppercase;
}

.slogan-word.lit {
  color: var(--off-white);
  -webkit-text-stroke: 0px transparent;
}

.slogan-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -.01em;
  color: var(--accent);
  padding: 0 28px;
  text-transform: uppercase;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray-2);
}

.about-left {
  padding: 100px 64px;
  border-right: 1px solid var(--gray-2);
}

.about-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: .88;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 32px;
}

.about-big .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gray-3);
}

.about-big .accent { color: var(--accent); }

.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-5);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 40px;
}

.about-right {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.manifesto {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 48px;
}

.manifesto p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.15;
  color: var(--off-white);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-2);
  border: 1px solid var(--gray-2);
}

.value-item {
  background: var(--black);
  padding: 24px 28px;
}

.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--accent);
  margin-bottom: 8px;
}

.value-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 12px;
  color: var(--gray-5);
  line-height: 1.6;
}

/* ── HOW TO BUY ── */
.how {
  padding: 100px 60px;
  border-top: 1px solid var(--gray-2);
  background: var(--gray-1);
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
}

.how-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--off-white);
}

.how-title span { color: var(--accent); }

.how-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-5);
  line-height: 1.8;
  align-self: end;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-2);
  border: 1px solid var(--gray-2);
}

.step {
  background: var(--black);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.step:hover { background: var(--gray-2); }

.step-num-big {
  position: absolute;
  top: -20px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gray-2);
  user-select: none;
  pointer-events: none;
  transition: color .25s;
}

.step:hover .step-num-big { color: var(--gray-3); }

.step-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color .2s, background .2s;
}

.step:hover .step-icon {
  border-color: var(--accent);
  background: var(--accent);
}

.step-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gray-5);
  transition: fill .2s;
}

.step:hover .step-icon svg { fill: var(--black); }

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-5);
  line-height: 1.75;
  margin-bottom: 20px;
}

.step-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: gap .2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  padding: 0;
}

.step-action-link:hover { gap: 12px; }

.payment-flow {
  margin-top: 16px;
  border: 1px solid var(--gray-3);
  background: var(--gray-2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
  min-width: 20px;
}

.pf-text {
  font-size: 12px;
  color: var(--gray-5);
  line-height: 1.5;
}

.pf-text strong {
  color: var(--off-white);
  font-weight: 500;
}

/* ── ORDER MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
}

.modal-overlay.open .modal { transform: none; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--gray-3);
  color: var(--gray-5);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: border-color .2s, color .2s;
}

.modal-close:hover {
  border-color: var(--off-white);
  color: var(--off-white);
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: .02em;
  color: var(--off-white);
  line-height: .9;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 12px;
  color: var(--gray-5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  color: var(--off-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option { background: var(--gray-2); }

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-size-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.modal-size-btn,
.modal-size-btn-p {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-3);
  background: transparent;
  color: var(--gray-5);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}

.modal-size-btn:hover,
.modal-size-btn-p:hover {
  border-color: var(--off-white);
  color: var(--off-white);
}

.modal-size-btn.active,
.modal-size-btn-p.active {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--black);
}

.modal-info-box {
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin-bottom: 20px;
}

.modal-info-box p {
  font-size: 12px;
  color: var(--gray-5);
  line-height: 1.6;
}

.modal-info-box strong {
  color: var(--off-white);
  font-weight: 500;
}

.btn-submit {
  width: 100%;
  background: var(--green-wa);
  color: #fff;
  border: none;
  padding: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s;
}

.btn-submit:hover { background: #1fb85a; }

/* ── SIZE GUIDE MODAL (nuevo) ── */
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.size-guide-table th,
.size-guide-table td {
  padding: 14px 8px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-3);
}

.size-guide-table th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--gray-2);
  border-bottom: 2px solid var(--accent);
}

.size-guide-table td:first-child {
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--off-white);
  font-size: 11px;
}

.size-guide-table td {
  color: var(--gray-5);
}

.size-guide-help {
  font-size: 12px;
  color: var(--gray-5);
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

/* ── PROXIMOS DROPS ── */
.drops {
  padding: 100px 60px;
  border-top: 1px solid var(--gray-2);
}

.drops-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.drops-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--off-white);
}

.drops-title span { color: var(--accent); }

.drops-note {
  font-size: 12px;
  color: var(--gray-5);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* ── COUNTDOWN (nuevo) ── */
.countdown-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--gray-3);
  background: var(--gray-1);
}

.countdown-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-right: 1px solid var(--gray-3);
  min-width: 220px;
}

.countdown-label-eyebrow {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 600;
}

.countdown-label-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  color: var(--off-white);
  line-height: 1;
}

.countdown-units {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  padding: 18px 24px;
}

.countdown-unit {
  text-align: center;
  flex: 1;
}

.countdown-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--off-white);
  letter-spacing: .02em;
}

.countdown-lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-top: 6px;
}

.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gray-4);
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-2);
  border: 1px solid var(--gray-2);
}

.drop-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.drop-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.3) grayscale(1);
}

.drop-card-placeholder {
  position: absolute;
  inset: 0;
  background: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 5;
  position: relative;
}

.lock-svg {
  width: 48px;
  height: 48px;
  opacity: .2;
}

.drop-card-info {
  position: relative;
  z-index: 5;
  padding: 24px;
  background: linear-gradient(to top, rgba(8, 8, 8, .95) 0%, transparent 100%);
}

.drop-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gray-4);
  margin-bottom: 6px;
}

.drop-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .03em;
  color: var(--gray-3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.drop-card-date {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

.drop-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--gray-3);
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-4);
  width: fit-content;
}

.drop-lock-badge svg {
  width: 10px;
  height: 10px;
  fill: var(--gray-4);
}

.drop-card::before,
.drop-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gray-3);
  border-style: solid;
  z-index: 10;
  pointer-events: none;
}

.drop-card::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.drop-card::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.drop-card-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.drop-card-corners::before,
.drop-card-corners::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gray-3);
  border-style: solid;
}

.drop-card-corners::before {
  top: 12px;
  right: 12px;
  border-width: 1px 1px 0 0;
}

.drop-card-corners::after {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 1px 1px;
}

/* ── NEWSLETTER (nuevo) ── */
.newsletter {
  padding: 80px 60px;
  border-top: 1px solid var(--gray-2);
  background: var(--gray-1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .95;
  color: var(--off-white);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.newsletter-left h2 span { color: var(--accent); }

.newsletter-left p {
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.75;
  max-width: 460px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-3);
  background: var(--gray-2);
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--off-white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  padding: 18px 20px;
}

.newsletter-form input::placeholder {
  color: var(--gray-5);
  letter-spacing: .04em;
}

.newsletter-form button {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 0 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.newsletter-form button:hover { background: var(--accent-dark); }

.newsletter-note {
  font-size: 11px;
  color: var(--gray-4);
  margin-top: 12px;
  letter-spacing: .04em;
}

.newsletter-success {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--green-wa);
  background: rgba(37, 211, 102, .08);
  color: var(--off-white);
  font-size: 13px;
  letter-spacing: .02em;
}

.newsletter-success.show { display: block; }

/* ── FAQ (nuevo) ── */
.faq {
  padding: 100px 60px;
  border-top: 1px solid var(--gray-2);
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--off-white);
}

.faq-title span { color: var(--accent); }

.faq-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-5);
  line-height: 1.8;
  align-self: end;
}

.faq-list {
  border-top: 1px solid var(--gray-2);
}

.faq-item {
  border-bottom: 1px solid var(--gray-2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: .03em;
  color: var(--off-white);
  text-transform: uppercase;
  transition: color .2s;
}

.faq-q:hover { color: var(--accent); }

.faq-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: border-color .2s, background .2s;
}

.faq-q:hover .faq-toggle {
  border-color: var(--accent);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  fill: var(--off-white);
  transition: transform .25s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item.open .faq-toggle svg {
  fill: var(--black);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--gray-2);
}

.contact-card {
  padding: 70px 50px;
  border-right: 1px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.contact-card:last-child { border-right: none; }

.contact-card:hover { background: var(--gray-1); }

.contact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 100px);
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-3);
  margin-bottom: 24px;
  transition: -webkit-text-stroke .3s;
  user-select: none;
}

.contact-card:hover .contact-num {
  -webkit-text-stroke: 1px var(--gray-4);
}

.contact-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon.wa-icon { background: var(--green-wa); }
.contact-icon.ig-icon { background: #E1306C; }
.contact-icon.tt-icon { background: var(--off-white); }

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-icon.wa-icon svg,
.contact-icon.ig-icon svg { fill: #fff; }

.contact-icon.tt-icon svg { fill: var(--black); }

.contact-platform {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--gray-5);
  text-transform: uppercase;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: .95;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 14px;
}

.contact-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-5);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gray-3);
  color: var(--off-white);
  width: fit-content;
  transition: border-color .2s, background .2s, color .2s;
}

.contact-link.wa-link:hover {
  background: var(--green-wa);
  border-color: var(--green-wa);
  color: #fff;
}

.contact-link.ig-link:hover {
  background: #E1306C;
  border-color: #E1306C;
  color: #fff;
}

.contact-link.tt-link:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--black);
}

.contact-handle {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gray-4);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--gray-2);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: .08em;
  color: var(--off-white);
  opacity: .12;
  text-decoration: none;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-slogan {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-4);
  text-align: center;
}

.footer-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-right a {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-4);
  text-decoration: none;
  transition: color .2s;
}

.footer-right a:hover { color: var(--off-white); }

/* ── CUSTOM OPT BUTTONS ── */
.custom-opt-btn {
  background: transparent;
  border: 1px solid var(--gray-3);
  color: var(--gray-5);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .15s;
}

.custom-opt-btn:hover {
  border-color: var(--off-white);
  color: var(--off-white);
}

.custom-opt-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* ── SECOND PRODUCT SECTION ── */
.featured-2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 90vh;
  border-top: 1px solid var(--gray-2);
}

.featured-2 .featured-content {
  border-left: none;
  border-right: 1px solid var(--gray-2);
}

.featured-2 .featured-visual {
  background: var(--gray-1);
}

.personaliz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.personaliz-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-5);
  border: 1px solid var(--gray-3);
  padding: 6px 12px;
  background: transparent;
}

.personaliz-tag.highlight {
  color: var(--accent);
  border-color: rgba(255, 0, 0, .3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── HAMBURGER + MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) { opacity: 0; }

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: .06em;
  color: var(--off-white);
  text-decoration: none;
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ── MODAL SUCCESS ── */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  text-align: center;
}

.modal-success.show { display: flex; }

.modal-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.modal-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--off-white);
  letter-spacing: .04em;
}

.modal-success-sub {
  font-size: 13px;
  color: var(--gray-5);
  line-height: 1.6;
  max-width: 320px;
}

.order-num-tag {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.region-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-5);
  border: 1px solid var(--gray-3);
  padding: 5px 10px;
}

.region-badge.accent {
  color: var(--accent);
  border-color: rgba(255, 0, 0, .25);
}

/* ── PLACEHOLDER VISUAL ── */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1;
  pointer-events: none;
}

.img-placeholder svg {
  opacity: .12;
}

.img-placeholder span {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .15);
  font-family: 'Space Grotesk', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }

  .nav-links { display: none; }

  .hamburger { display: flex; }

  .hero { height: auto; min-height: 100svh; }

  .hero-slider { height: 100svh; min-height: 600px; }

  .hero-slide { grid-template-columns: 1fr; }

  .hero-right {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-right .hero-overlay {
    background: linear-gradient(to right, rgba(8, 8, 8, .82) 0%, rgba(8, 8, 8, .55) 100%);
  }

  .hero-left {
    padding: 110px 24px max(160px, calc(140px + env(safe-area-inset-bottom)));
    position: relative;
    z-index: 2;
  }

  .hero-stats { width: 100%; z-index: 2; }

  .hero-slider-nav { bottom: 110px; z-index: 2; }

  .hero-title { font-size: clamp(56px, 14vw, 90px); }

  .hero-price { font-size: 24px !important; }

  .hero-btns { flex-direction: column; gap: 10px; }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .featured { grid-template-columns: 1fr; }

  .featured-visual { min-height: 50vw; }

  .featured-content {
    padding: 48px 28px;
    border-left: none;
    border-top: 1px solid var(--gray-2);
  }

  .featured-2 { grid-template-columns: 1fr; }

  .featured-2 .featured-content {
    border-right: none;
    border-bottom: 1px solid var(--gray-2);
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 80px;
    padding: 20px;
    gap: 12px;
  }

  .gallery-thumbs {
    flex-direction: row;
    order: 2;
  }

  .gallery-main { order: 1; }

  .about { grid-template-columns: 1fr; }

  .about-left {
    padding: 60px 28px;
    border-right: none;
    border-bottom: 1px solid var(--gray-2);
  }

  .about-right { padding: 60px 28px; }

  .how { padding: 60px 28px; }

  .how-header { grid-template-columns: 1fr; gap: 20px; }

  .steps { grid-template-columns: 1fr; }

  .drops { padding: 60px 28px; }

  .drops-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .drops-grid { grid-template-columns: 1fr; }

  .countdown-bar { flex-direction: column; }

  .countdown-label {
    border-right: none;
    border-bottom: 1px solid var(--gray-3);
    min-width: 0;
    padding: 20px 24px;
  }

  .countdown-units { padding: 18px 12px; }

  .newsletter {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 32px;
  }

  .faq { padding: 60px 28px; }

  .faq-header { grid-template-columns: 1fr; gap: 20px; }

  .contact { grid-template-columns: 1fr; }

  .contact-card {
    border-right: none;
    border-bottom: 1px solid var(--gray-2);
    padding: 48px 28px;
  }

  .contact-card:last-child { border-bottom: none; }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 28px;
  }

  .footer-right { justify-content: flex-start; }

  .modal { padding: 32px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .size-guide-table th,
  .size-guide-table td {
    padding: 10px 4px;
    font-size: 11px;
  }
}

/* ── LEGAL PAGES (politicas/*.html) ── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 28px 100px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-5);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s, gap .2s;
}

.legal-back:hover {
  color: var(--accent);
  gap: 12px;
}

.legal-eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: .95;
  color: var(--off-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-meta {
  font-size: 12px;
  color: var(--gray-5);
  letter-spacing: .08em;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-2);
}

.legal-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .03em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 40px 0 14px;
}

.legal-wrap h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--off-white);
  text-transform: uppercase;
  margin: 28px 0 10px;
}

.legal-wrap p,
.legal-wrap li {
  font-size: 15px;
  color: var(--gray-5);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-wrap ul,
.legal-wrap ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-wrap strong {
  color: var(--off-white);
  font-weight: 500;
}

.legal-wrap a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-2);
  font-size: 12px;
  color: var(--gray-4);
  letter-spacing: .04em;
  line-height: 1.7;
}
