/* ==========================================================================
   ARTIC — Urban Premium Streetwear
   ========================================================================== */

:root {
  --black: #0a0b0d;
  --black-soft: #121417;
  --charcoal: #1c1f24;
  --white: #f5f6f7;
  --off-white: #e9ebee;
  --ice: #cfa851;
  --ice-soft: #f2e0a6;
  --ice-dim: rgba(207, 168, 81, 0.16);
  --gray: #8b929c;
  --cream: #cfc9ba;
  --border: rgba(245, 246, 247, 0.1);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 400;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin: 14px 0 18px;
}

.section-sub {
  color: var(--gray);
  max-width: 520px;
  font-size: 15px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover { background: var(--ice); color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,246,247,0.35);
}
.btn-outline:hover { border-color: var(--ice); color: var(--ice); }

.btn-ice {
  background: linear-gradient(135deg, #c49a44 0%, #dcbf72 48%, #b98f36 100%);
  background-size: 160% 160%;
  background-position: 30% 30%;
  color: #2a2008;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 5px 14px rgba(207,168,81,0.2);
  transition: background-position 0.6s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.btn-ice:hover {
  background-position: 70% 70%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 20px rgba(207,168,81,0.3);
}

.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img {
  height: 34px;
  width: auto;
  filter: invert(1) brightness(2);
}
.logo-link .logo-word {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  gap: 36px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--ice);
  transition: right 0.25s ease;
}
.main-nav a:hover::after { right: 0; }

.main-nav .tag-soon {
  font-size: 9px;
  color: var(--cream);
  border: 1px solid var(--ice);
  border-radius: 20px;
  padding: 1px 7px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.header-actions { display: flex; align-items: center; gap: 18px; }

.icon-btn {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); display: block;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(207,168,81,0.16), transparent 55%),
    linear-gradient(180deg, #0a0b0d 0%, #0a0b0d 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: scale(1.08);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,11,13,0.92) 0%, rgba(10,11,13,0.55) 55%, rgba(10,11,13,0.75) 100%),
    linear-gradient(180deg, rgba(10,11,13,0.4) 0%, transparent 30%, rgba(10,11,13,0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow { margin-bottom: 20px; }

.hero-title {
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: 0.88;
}
.hero-title .ice-text { color: var(--ice); }

.hero-desc {
  margin: 26px 0 34px;
  color: var(--gray);
  font-size: 17px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
}
.hero-stats div span {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.hero-visual .frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual .badge {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--ice);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: 3px;
  transform: rotate(-4deg);
  box-shadow: 0 10px 30px rgba(207,168,81,0.3);
}
.hero-visual .float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
}
.float-card .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 0 4px var(--ice-dim);
}
.float-card span { font-size: 12px; color: var(--off-white); font-weight: 600; }

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--black-soft);
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-right: 48px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span em {
  font-style: normal;
  color: var(--off-white);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Generic Section Spacing ---------- */
.section { padding: 120px 0; }
.section-tight { padding: 90px 0; }
.bg-soft { background: var(--black-soft); }

/* ---------- Tienda / Products ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}
.filter-btn:hover { color: var(--white); border-color: var(--gray); }
.filter-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Estante horizontal de productos */
.shelf-wrap { position: relative; margin-top: 44px; }
.product-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.product-grid::-webkit-scrollbar { display: none; }

.shelf-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10,11,13,0.82);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.shelf-arrow:hover { border-color: var(--ice); color: var(--ice); }
.shelf-prev { left: -8px; }
.shelf-next { right: -8px; }
.shelf-arrow[disabled] { opacity: 0.2; cursor: default; }

.product-card {
  position: relative;
  flex: 0 0 calc(42% - 11px);
  scroll-snap-align: start;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(207,168,81,0.35); }

.product-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #050506;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.product-media img.img-b { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-media img.img-a { opacity: 0; }
.product-card:hover .product-media img.img-b { opacity: 1; }
.product-card:hover .product-media img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ice);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}
.product-tag.limited { background: var(--white); }

.discount-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: linear-gradient(135deg, #c49a44 0%, #dcbf72 48%, #b98f36 100%);
  color: #2a2008;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 11px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(207,168,81,0.35);
}

.product-info { padding: 20px 20px 24px; }
.product-cat {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 6px 0 8px;
  text-transform: none;
  letter-spacing: 0.01em;
}
.product-desc { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 18px; font-weight: 700; color: var(--ice); }
.product-price span {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 6px;
}
.product-add {
  background: transparent;
  border: 1px solid rgba(245,246,247,0.35);
  color: var(--white);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-add:hover { background: var(--ice); border-color: var(--ice); color: var(--black); }

.tienda-cta { text-align: center; margin-top: 56px; }

.catalog-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 36px;
}

/* ---------- Print swatches (Regular / Oversize) ---------- */
.print-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 2px solid transparent;
  background-size: cover;
  background-position: top center;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: all 0.2s ease;
}
.swatch:hover { opacity: 0.9; }
.swatch.active {
  opacity: 1;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px var(--ice-dim);
}

.print-product .main-print-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.25s ease;
}

/* ---------- Size selector ---------- */
.size-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.size-btn {
  min-width: 40px;
  height: 34px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.size-btn:hover { border-color: var(--gray); color: var(--white); }
.size-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.size-row.shake {
  animation: size-shake 0.4s ease;
}
.size-row.shake .size-btn { border-color: #ff5f5f; }
@keyframes size-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,11,13,0.7));
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.value-item { border-top: 1px solid var(--border); padding-top: 18px; }
.value-item .num {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
}
.value-item h4 { font-size: 16px; margin-bottom: 6px; letter-spacing: 0.03em; }
.value-item p { font-size: 13.5px; color: var(--gray); }

.about-copy p { color: var(--gray); margin-bottom: 18px; font-size: 15.5px; max-width: 560px; }

/* ---------- Lookbook ---------- */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lb-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: #050506;
  border: 1px solid var(--border);
}
.lb-item img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s ease;
}
.lb-item:hover img { transform: scale(1.06); }
.lb-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lb-item:hover::after { opacity: 1; }
.lb-item span {
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.lb-item:hover span { opacity: 1; transform: translateY(0); }

/* ---------- Coming Soon (eSports / Fitness) ---------- */
.soon-section {
  padding: 130px 0;
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.soon-section.fitness { background: var(--black-soft); }

.soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.soon-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--charcoal), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.soon-visual .glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(207,168,81,0.35), transparent 70%);
  filter: blur(10px);
}
.soon-visual .icon-lg {
  position: relative;
  z-index: 2;
  width: 96px; height: 96px;
  color: var(--off-white);
  opacity: 0.9;
}
.soon-visual .lock-tag {
  position: absolute;
  bottom: 22px;
  background: rgba(10,11,13,0.7);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
}

.soon-badge {
  display: inline-block;
  background: var(--ice-dim);
  color: var(--ice);
  border: 1px solid rgba(207,168,81,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.soon-copy h2 { font-size: clamp(36px, 4.5vw, 52px); margin-bottom: 16px; }
.soon-copy p.lead { color: var(--gray); font-size: 16px; margin-bottom: 30px; max-width: 460px; }

.collab-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--off-white);
  background: rgba(207,168,81,0.06);
  border: 1px solid rgba(207,168,81,0.25);
  border-radius: 30px;
  padding: 9px 18px;
  margin: -14px 0 30px;
}
.collab-line::before {
  content: '★';
  color: var(--cream);
  font-size: 12px;
}
.collab-line a {
  color: var(--ice);
  font-weight: 700;
  transition: color 0.2s ease;
}
.collab-line a:hover { color: var(--white); }

/* ---------- eSports: estética marble "Below Zero" (del X del equipo) ---------- */
.soon-visual.marble {
  background:
    radial-gradient(ellipse at 25% 20%, rgba(180,188,200,0.35), transparent 50%),
    radial-gradient(ellipse at 75% 70%, rgba(160,170,185,0.3), transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(190,196,206,0.25), transparent 55%),
    linear-gradient(150deg, #f4f5f7 0%, #e8eaee 40%, #f2f3f5 70%, #e5e8ec 100%);
  border-color: rgba(10,11,13,0.08);
}
.marble-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.marble-brand {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: 0.35em;
  color: #14161a;
  margin-right: -0.35em;
}
.marble-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: #14161a;
  margin-right: -0.4em;
}
.marble-divider {
  color: #14161a;
  font-size: 12px;
  margin: 8px 0 2px;
}
.marble-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: #5a6068;
  margin-right: -0.45em;
}
.lock-tag.dark {
  background: rgba(10,11,13,0.85);
  border-color: rgba(10,11,13,0.9);
  color: #f5f6f7;
}

/* ---------- Fitness: acento rosa/lila (del IG de Gabriela) ---------- */
:root {
  --fit-pink: #ffc9de;
  --fit-lilac: #dcc4ff;
}
.fit-badge {
  background: rgba(220,196,255,0.1);
  color: var(--fit-lilac);
  border-color: rgba(220,196,255,0.4);
}
.fit-glow {
  background: radial-gradient(circle, rgba(220,196,255,0.32), rgba(255,201,222,0.18) 55%, transparent 75%) !important;
}
.fit-icon { color: var(--fit-lilac) !important; }
.fit-tag { color: var(--fit-lilac); }
.fit-collab {
  background: rgba(255,201,222,0.07);
  border-color: rgba(255,201,222,0.3);
}
.fit-collab::before { content: '♥'; color: var(--fit-pink); }
.fit-collab a { color: var(--fit-pink); }
.fitness .notify-form input:focus { border-color: var(--fit-lilac); }
.fitness .btn-ice { background: var(--fit-lilac); }
.fitness .btn-ice:hover { background: var(--fit-pink); }

/* Tarjeta de foto de Gabriela (colocar assets/img/gabriela.jpg cuando esté) */
.fit-photo-card { flex-direction: column; gap: 0; }
.fit-photo-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fit-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.fit-photo-placeholder {
  padding: 34px;
}
.fit-photo-placeholder .gaby-logo {
  width: 82%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  padding: 34px 30px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.95), transparent 60%),
    linear-gradient(150deg, #fbf7ff 0%, #f3ecfb 45%, #fdf5fa 100%);
  box-shadow: 0 20px 60px rgba(220,196,255,0.28), inset 0 0 0 1px rgba(255,255,255,0.6);
  animation: gaby-float 5s ease-in-out infinite;
}
@keyframes gaby-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fit-photo-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px 20px 54px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(10,11,13,0.55));
}
.fit-photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.fit-photo-caption span { font-size: 12.5px; color: var(--gray); }
.fit-photo-caption a { color: var(--fit-pink); font-weight: 700; }
.fit-photo-caption a:hover { color: var(--white); }

.countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.countdown div {
  text-align: center;
  background: rgba(245,246,247,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  min-width: 76px;
}
.countdown strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
}
.countdown span { font-size: 10px; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-bottom: 16px;
}
.notify-form input {
  flex: 1;
  background: rgba(245,246,247,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 15px 18px;
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.notify-form input::placeholder { color: var(--gray); }
.notify-form input:focus { border-color: var(--ice); }
.notify-note { font-size: 12.5px; color: var(--gray); }
.notify-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--ice-soft);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.notify-success.show { display: flex; }

/* ---------- Testimonials / Trust ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.trust-grid div span { font-size: 12px; color: var(--gray); letter-spacing: 0.04em; }

/* ---------- Cómo comprar (pasos) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 28px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(207,168,81,0.35); }
.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ice);
  display: block;
  margin-bottom: 14px;
  opacity: 0.9;
}
.step-card h4 { font-size: 17px; margin-bottom: 8px; letter-spacing: 0.02em; text-transform: none; }
.step-card p { font-size: 14px; color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.faq-item {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(207,168,81,0.3); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gray);
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item p strong { color: var(--off-white); }

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

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: rgba(245,246,247,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--ice); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-info { display: flex; flex-direction: column; justify-content: space-between; }
.info-list { display: grid; gap: 22px; margin: 30px 0 40px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ice-dim);
  color: var(--ice);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item h4 { font-size: 15px; text-transform: none; margin-bottom: 4px; letter-spacing: 0.01em; }
.info-item p, .info-item a { font-size: 13.5px; color: var(--gray); }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--ice); border-color: var(--ice); color: var(--black); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  background: var(--black-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand img { height: 30px; filter: invert(1) brightness(2); margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 13.5px; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--gray); font-size: 13.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ice); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--gray);
}

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0 16px;
  background: #25D366;
  color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pop 0.5s ease 1s both;
}
.wa-float svg { flex-shrink: 0; }
.wa-float-label {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.wa-float:hover .wa-float-label {
  max-width: 180px;
  opacity: 1;
  margin-left: 10px;
}
@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 720px) {
  .wa-float { bottom: 20px; left: 20px; height: 52px; padding: 0 14px; }
  .wa-float-label { display: none; }
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
  border: none;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 26px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
}

/* ==========================================================================
   ANIMACIONES Y EFECTOS
   ========================================================================== */

/* ---------- Sección de vídeo en movimiento ---------- */
.motion-section {
  padding: 110px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(207,168,81,0.07), transparent 60%),
    var(--black);
  overflow: hidden;
}
.motion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.motion-title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.92;
  margin: 14px 0 16px;
}
.motion-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 30px;
}
.motion-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(207,168,81,0.25);
  box-shadow: 0 0 50px rgba(207,168,81,0.1), 0 30px 80px rgba(0,0,0,0.6);
  aspect-ratio: 9/16;
  max-width: 340px;
  margin: 0 auto;
  justify-self: center;
}
.motion-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.motion-badge {
  position: absolute;
  top: 14px; left: 16px;
  background: rgba(10,11,13,0.7);
  border: 1px solid var(--border);
  color: var(--ice-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
@media (max-width: 1024px) {
  .motion-grid { grid-template-columns: 1fr; gap: 36px; }
  .motion-frame { max-width: 300px; }
}

/* ---------- Barcode divider (foto real) ---------- */
.barcode-strip {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.barcode-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.barcode-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.1) 45%, rgba(10,11,13,0.55) 100%);
  pointer-events: none;
}

/* ---------- Grano de película (ambiente urbano) ---------- */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 2000;
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -1%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

.hero .container { z-index: 3; }

/* ---------- Cursor personalizado ---------- */
@media (pointer: fine) {
  body.cursor-on, body.cursor-on a, body.cursor-on button,
  body.cursor-on .swatch, body.cursor-on .size-btn,
  body.cursor-on .product-media, body.cursor-on .lb-item {
    cursor: none !important;
  }
  body.cursor-on input, body.cursor-on textarea, body.cursor-on select {
    cursor: auto !important;
  }
}

.cursor-a {
  position: fixed;
  top: 0; left: 0;
  width: 26px;
  pointer-events: none;
  z-index: 3000;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(207, 168, 81, 0.55));
  transition: opacity 0.3s ease, width 0.22s ease, filter 0.22s ease;
  will-change: transform;
}
body.cursor-on .cursor-a { opacity: 1; }

.cursor-a.hovering {
  filter: drop-shadow(0 0 14px rgba(207, 168, 81, 0.95))
          drop-shadow(0 0 30px rgba(207, 168, 81, 0.4));
}
.cursor-a.pressing {
  width: 20px;
  filter: drop-shadow(0 0 18px rgba(207, 168, 81, 1));
}

/* Estela fantasma de la A */
.cursor-a-ghost {
  position: fixed;
  top: 0; left: 0;
  width: 26px;
  pointer-events: none;
  z-index: 2999;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(207, 168, 81, 0.3));
  will-change: transform;
}
body.cursor-on .cursor-a-ghost { opacity: 0.28; }

/* ---------- Animación de entrada del título ---------- */
.ht-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.ht-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: ht-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.ht-inner.ht-delay { animation-delay: 0.32s; }
@keyframes ht-up {
  to { transform: translateY(0); }
}

/* Shimmer en el texto de acento */
.ice-text {
  background: linear-gradient(110deg, #cfa851 32%, #ecd692 50%, #cfa851 68%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--ice);
  animation: ice-shimmer 5s linear infinite;
}
@keyframes ice-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

/* Pulso en el badge del hero */
.hero-visual .badge { animation: badge-float 3.5s ease-in-out infinite; }
@keyframes badge-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-7px); }
}
.float-card .dot { animation: dot-pulse 2s ease-out infinite; }
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(207,168,81,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(207,168,81,0); }
  100% { box-shadow: 0 0 0 0 rgba(207,168,81,0); }
}

/* ---------- Tilt 3D + brillo en product cards ---------- */
.product-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card .product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(207,168,81,0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover .product-media::after { opacity: 1; }

/* Hint de vista rápida */
.product-media { cursor: zoom-in; }
.product-media::before {
  content: 'Vista rápida +';
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(10,11,13,0.8);
  border: 1px solid rgba(207,168,81,0.5);
  color: var(--ice-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 30px;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}
.product-card:hover .product-media::before { opacity: 1; transform: translateY(0); }

/* Reveals escalonados */
.product-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.product-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.product-grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.product-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.trust-grid div { transition: transform 0.3s ease; }
.trust-grid div:hover { transform: translateY(-4px); }

/* Barrido de luz en botones principales */
.btn-primary, .btn-ice {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-ice::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::after, .btn-ice:hover::after { left: 130%; }

/* ---------- Modal de producto (vista rápida) ---------- */
.pm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pm-overlay.show { opacity: 1; pointer-events: auto; }

.pm-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: 100%;
  max-width: 980px;
  max-height: 92vh;
  background: var(--black-soft);
  border: 1px solid rgba(207,168,81,0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(207,168,81,0.08), 0 0 60px rgba(207,168,81,0.12), 0 40px 100px rgba(0,0,0,0.7);
  transform: scale(0.94) translateY(14px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-overlay.show .pm-modal { transform: scale(1) translateY(0); }

.pm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10,11,13,0.7);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pm-close:hover { background: var(--ice); color: var(--black); border-color: var(--ice); }

.pm-media {
  position: relative;
  overflow: hidden;
  background: #050506;
  min-height: 460px;
  cursor: zoom-in;
}
/* Fondo desenfocado con la propia imagen para rellenar sin cortar */
.pm-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.45) saturate(1.1);
  transform: scale(1.15);
  transition: background-image 0.2s ease;
  z-index: 0;
}
.pm-media img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.pm-media.zoomed { cursor: zoom-out; }
.pm-media.zoomed img { object-fit: cover; transform: scale(2); }
.pm-zoom-hint {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,11,13,0.75);
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.pm-media:hover .pm-zoom-hint { opacity: 0; }
.pm-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ice);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}

.pm-info {
  padding: 36px 32px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.pm-cat {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.pm-name {
  font-family: var(--font-display);
  font-size: 34px;
  margin: 8px 0 10px;
  letter-spacing: 0.01em;
}
.pm-desc { color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.pm-longdesc {
  color: var(--off-white);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: rgba(245,246,247,0.03);
  border-left: 2px solid var(--ice);
  border-radius: 0 6px 6px 0;
}

/* ---------- Selector de color (muestras visuales) ---------- */
.color-select-wrap { margin: 0 0 16px; }
.color-select-wrap .variant-label-sm {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 9px;
}
.color-select-wrap .color-chosen { color: var(--off-white); text-transform: none; letter-spacing: 0; }
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: var(--c, #888);
  border: 1px solid rgba(245,246,247,0.25);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.color-dot:hover { transform: scale(1.12); }
.color-dot.active {
  box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--ice);
  transform: scale(1.05);
}
.color-swatches.shake { animation: size-shake 0.4s ease; }
.color-swatches.shake .color-dot { border-color: #ff5f5f; }
#pmColorSwatches { margin-bottom: 4px; }

/* ---------- Diseño sorpresa (teaser) ---------- */
.swatch-mystery { background: #14161a !important; position: relative; }
.swatch-mystery::after {
  content: '?';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ice);
}

.shop-wa-note {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--gray);
}
.shop-wa-note a {
  color: var(--ice);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pm-variant-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 10px;
}
.pm-variant-name { color: var(--ice-soft); }

.pm-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pm-thumb {
  width: 56px; height: 70px;
  border-radius: 6px;
  border: 2px solid transparent;
  background-size: cover;
  background-position: top center;
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: all 0.2s ease;
}
.pm-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.pm-thumb.active {
  opacity: 1;
  border-color: var(--ice);
  box-shadow: 0 0 0 3px var(--ice-dim);
}

.pm-sizes { margin-bottom: 24px; }

.pm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}
.pm-price {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--ice);
}
.pm-price span {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
  font-family: var(--font-body);
  margin-right: 8px;
}
.pm-shipping {
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 860px) {
  .pm-modal { grid-template-columns: 1fr; max-height: 94vh; overflow-y: auto; }
  .pm-media { min-height: 320px; max-height: 44vh; }
  .pm-media:hover img { transform: none; }
  .pm-info { padding: 24px 20px 20px; }
}

/* Respeto a usuarios con movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .ht-inner { animation: none; transform: none; }
  .ice-text { animation: none; }
  .hero-visual .badge, .float-card .dot { animation: none; }
  .marquee-track { animation: none; }
  body::after { animation: none; }
  .cursor-a, .cursor-a-ghost { display: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- Cart ---------- */
.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(245,246,247,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.cart-btn:hover { border-color: var(--ice); color: var(--ice); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--ice);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.cart-count.hidden { display: none; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: var(--black-soft);
  border-left: 1px solid var(--border);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.cart-drawer.show { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; }
.cart-close {
  background: none; border: none; color: var(--white);
  font-size: 26px; line-height: 1; cursor: pointer;
  width: 32px; height: 32px;
}
.cart-close:hover { color: var(--ice); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-empty { color: var(--gray); font-size: 14px; text-align: center; padding: 40px 0; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
}
.cart-item img { width: 64px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-item-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.cart-item-variant { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.cart-item-qty button:hover { border-color: var(--ice); color: var(--ice); }
.cart-item-qty span { font-size: 13px; min-width: 16px; text-align: center; }
.cart-item-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item-price { font-size: 14px; font-weight: 700; }
.cart-item-remove {
  background: none; border: none; color: var(--gray);
  font-size: 12px; cursor: pointer; text-decoration: underline;
}
.cart-item-remove:hover { color: var(--ice); }

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px 26px;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--off-white);
}
.cart-subtotal strong { font-size: 20px; font-family: var(--font-display); }
.cart-footer .btn { width: 100%; }
.cart-note { font-size: 11.5px; color: var(--gray); text-align: center; margin-top: 10px; }

/* ---------- Legal pages ---------- */
.legal-page {
  padding-top: 150px;
  padding-bottom: 100px;
  min-height: 100vh;
}
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 10px;
}
.legal-updated { color: var(--gray); font-size: 13px; margin-bottom: 40px; }
.legal-page h2 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ice);
  margin: 36px 0 12px;
}
.legal-page p, .legal-page li {
  color: var(--off-white);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page a.inline-link { color: var(--ice); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 34px;
}
.legal-back:hover { color: var(--ice); }
.legal-placeholder {
  background: rgba(207,168,81,0.08);
  border: 1px dashed rgba(207,168,81,0.4);
  color: var(--ice-soft);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  z-index: 1200;
  transform: translateY(120%);
  transition: transform 0.4s ease;
  flex-wrap: wrap;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: var(--off-white); margin: 0; max-width: 620px; }
.cookie-banner a { color: var(--ice); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 20px; font-size: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; }
  .product-card { flex-basis: calc(58% - 11px); }
  .about-grid, .soon-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .lookbook-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .product-card { flex-basis: 82%; }
  .shelf-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .countdown { gap: 8px; }
  .countdown div { min-width: 60px; padding: 10px 12px; }
  .countdown strong { font-size: 22px; }
  .notify-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 20px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
