﻿:root {
  --ink: #0a0a0a;
  --ink-soft: #181818;
  --paper: #121212;
  --paper-2: #181818;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --muted: #b3b3b3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #0a84ff;
  --accent-deep: #0066d6;
  --accent-soft: rgba(10, 132, 255, 0.16);
  --warn: #ff6b35;
  --white: #ffffff;
  --text: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --header: 72px;
  --header-module: 72px;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.28);
  --glass-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  --glass-blur: blur(14px) saturate(140%);
  --field-bg: #141414;
  --field-text: #ffffff;
  --cart-line-bg: rgba(26, 26, 26, 0.95);
  --drawer-overlay: rgba(0, 0, 0, 0.42);
}

.hidden {
  display: none !important;
}

body[data-theme="light"] {
  --ink: #f5f7fb;
  --ink-soft: #ffffff;
  --paper: #f6f8fc;
  --paper-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #edf2f7;
  --muted: #5f6b7a;
  --line: rgba(15, 23, 42, 0.12);
  --white: #0a0a0a;
  --text: #101828;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(15, 23, 42, 0.14);
  --glass-shadow: 0 14px 40px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --field-bg: #ffffff;
  --field-text: #101828;
  --cart-line-bg: #f4f7fb;
  --drawer-overlay: rgba(15, 23, 42, 0.28);
  color-scheme: light;
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  color-scheme: dark;
}

/* Performance: less paint from glass layers */
.trust-item::after,
.import-step::after,
.review::after,
.hero-kicker::after,
.cart-btn::after {
  display: none;
}

.liquid-orbs,
.spot-glow {
  display: none !important;
}

html.gsap-ready {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(10, 132, 255, 0.12), transparent 55%),
    radial-gradient(700px 420px at 10% 20%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #121212 40%, #0f0f0f 100%);
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: visible;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="light"] {
  background:
    radial-gradient(900px 500px at 82% 0%, rgba(10, 132, 255, 0.16), transparent 55%),
    radial-gradient(700px 420px at 8% 20%, rgba(255, 255, 255, 0.95), transparent 52%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 48%, #ffffff 100%);
}

.spot-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.12), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.site-footer,
.drawer,
.modal,
.toast {
  position: relative;
  z-index: 2;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

img.logo-mark,
img.page-curtain-mark {
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
}

span.logo-mark {
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.logo-text {
  font-size: 1.05rem;
  color: var(--white);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.1rem;
  max-width: min(720px, 58vw);
}

.nav a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.25s var(--ease);
  white-space: nowrap;
  font-weight: 500;
}

.nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.theme-btn {
  border: 0;
  border-radius: 999px;
  min-width: 66px;
  padding: 0.48rem 0.78rem;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.theme-btn:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.theme-btn.active {
  background: linear-gradient(145deg, var(--accent), #0066d6);
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 132, 255, 0.26);
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.75rem 0.45rem 0.65rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.cart-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 132, 255, 0.45);
}

.cart-total {
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-count {
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  padding: 0 0.3rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  place-items: center start;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 8vw, 5.5rem);
  padding-left: clamp(1.75rem, 12vw, 8.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: min(38rem, 48vw);
  width: 100%;
  margin: 0;
  color: var(--white);
  overflow: visible;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
}

.hero-brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 12vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.05;
  perspective: 800px;
  overflow: visible;
  word-break: keep-all;
  padding-top: 0.12em;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  background:
    radial-gradient(ellipse at 72% 45%, rgba(10, 132, 255, 0.2), transparent 42%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%),
    linear-gradient(160deg, #0a0a0a, #121212 55%, #0d121a);
}

body[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse at 70% 42%, rgba(10, 132, 255, 0.2), transparent 45%),
    radial-gradient(circle at 16% 82%, rgba(10, 132, 255, 0.08), transparent 38%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 250, 255, 0.78) 52%, rgba(226, 238, 255, 0.45) 100%),
    linear-gradient(160deg, #ffffff, #f3f7fc 55%, #e9f1fb);
}

.hero-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  right: -12%;
  top: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.22), transparent 62%);
}

.hero-phone {
  position: absolute;
  right: auto;
  left: 45%;
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, 50vw);
  height: min(75vh, 760px);
  max-height: calc(100svh - var(--header) - 5rem);
  border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
  border: none;
  box-shadow: none;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42))
    drop-shadow(0 48px 90px rgba(0, 0, 0, 0.55));
  will-change: transform, opacity;
  z-index: 3;
  pointer-events: auto;
  --poster-color: transparent;
  --progress-bar-color: #0a84ff;
  --progress-bar-height: 2px;
}

.hero-phone::before {
  display: none;
}

model-viewer.hero-phone {
  display: block;
  overflow: hidden;
  background: transparent !important;
  background-color: transparent !important;
  contain: layout style paint;
  isolation: isolate;
  cursor: grab;
}

model-viewer.hero-phone:active {
  cursor: grabbing;
}

img.hero-phone.hero-showcase {
  display: block;
  left: 38%;
  width: min(72vw, 980px);
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 8px 24px rgba(10, 132, 255, 0.12));
}

body[data-theme="light"] img.hero-phone.hero-showcase {
  filter:
    drop-shadow(0 16px 32px rgba(15, 23, 42, 0.12))
    drop-shadow(0 4px 16px rgba(10, 132, 255, 0.08));
}

model-viewer.hero-phone::part(default-progress-bar) {
  display: none;
}

.hero-brand .char {
  display: inline-block;
  will-change: transform, opacity;
}

/* Split text system — never clip letters */
.split-text {
  perspective: 700px;
  overflow: visible;
}

.split-text .line {
  display: block;
  overflow: visible;
  padding-block: 0;
  perspective: 700px;
}

.split-text .word {
  display: inline-block;
  white-space: nowrap;
}

.split-text .word .char {
  display: inline-block;
}

.split-text .char {
  display: inline-block;
  position: relative;
  will-change: transform, opacity;
}

.split-text .char-inner {
  display: inline-block;
  will-change: transform, color;
}

.split-text .char-space {
  display: inline-block;
  width: 0.28em;
}

.nav a.split-text,
.logo-text.split-text,
.btn.split-text {
  perspective: 400px;
}

.nav a .char,
.logo-text .char,
.btn .char {
  display: inline-block;
}

.nav a .char-inner,
.logo-text .char-inner,
.btn .char-inner,
.category-label .char-inner,
.section-head h2 .char-inner,
.hero-title .char-inner {
  display: inline-block;
}

.hero-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 18em;
  perspective: 700px;
  overflow: visible;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.section-head h2,
.trust-copy h2,
.service-banner h2,
.contact h2,
.category-label,
.product h3,
.faq-list summary,
.proof-card strong {
  perspective: 600px;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.toast.split-text {
  perspective: 400px;
  white-space: normal;
  max-width: min(420px, calc(100vw - 2rem));
  text-align: center;
}

.toast .char {
  display: inline-block;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
  overflow-wrap: anywhere;
}

.hero-sub {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  line-height: 1.38;
  overflow: visible;
  text-wrap: pretty;
}

body[data-theme="light"] .hero-sub,
body[data-theme="light"] .section-sub,
body[data-theme="light"] .lead,
body[data-theme="light"] .product-meta,
body[data-theme="light"] .product-price .from,
body[data-theme="light"] .product-price .old,
body[data-theme="light"] .faq-list details p,
body[data-theme="light"] .import-step p,
body[data-theme="light"] .review p,
body[data-theme="light"] .contact-list span:first-child {
  color: #5f6b7a;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 6;
}

.hero-cta .btn {
  max-width: 100%;
  position: relative;
  z-index: 6;
}

.hero-scroll {
  position: absolute;
  left: 1.25rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-soft);
  transform: translateX(-100%);
}

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

html:not(.gsap-ready) .scroll-line::after {
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 30px rgba(15, 143, 110, 0.28);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Trust bar */
.trust-bar {
  max-width: 1180px;
  margin: -2rem auto 0;
  padding: 0 clamp(1rem, 4vw, 1.25rem);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: visible;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 2.5vw, 0.98rem);
  margin-bottom: 0.25rem;
  overflow-wrap: anywhere;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Sections */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 1.25rem) 1rem;
}

#importacion,
#categorias,
#confianza,
#faq,
#contacto,
#destacados,
#top {
  scroll-margin-top: calc(var(--header) + 0.85rem);
}

body:has(.header-inner--module) #importacion,
body:has(.header-inner--module) #categorias,
body:has(.header-inner--module) #confianza,
body:has(.header-inner--module) #faq,
body:has(.header-inner--module) #contacto,
body:has(.header-inner--module) #destacados,
body:has(.header-inner--module) #top {
  scroll-margin-top: calc(var(--header-module) + 0.65rem);
}

.section-head {
  margin-bottom: 2rem;
  max-width: min(640px, 100%);
  overflow: visible;
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2.6rem);
  line-height: 1.15;
}

.section-sub,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Products */
.product-grid:not(.catalog-grid) {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.product {
  position: relative;
  background: #181818;
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  will-change: transform;
  overflow: hidden;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.85rem;
}

.product .btn {
  margin-top: auto;
  width: 100%;
}

.product:hover {
  box-shadow: none;
  border-color: transparent;
}

.product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--warn);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  z-index: 2;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.product-badge.sold {
  background: #3a3a3a;
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  overflow: hidden;
  padding: 0.85rem;
}

.product-img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
  will-change: transform;
}

.product:hover .product-img {
  transform: translateY(-4px) scale(1.04);
}

.product h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  min-height: 1.3em;
}

.product-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
  min-height: 1.2em;
}

.product-price .from {
  font-size: 0.78rem;
  color: var(--muted);
}

.product-price .now {
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 700;
}

.product-price .old {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* Categories */
.category-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 0.35rem 1rem;
  padding: 1.4rem 1.2rem;
  border-radius: 22px;
  background: var(--ink);
  color: white;
  min-height: 160px;
  min-width: 0;
  transition: transform 0.3s var(--ease);
  overflow: hidden;
  position: relative;
}

.category-img {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(46%, 150px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 0;
}

.category-label,
.category-meta,
.category-arrow {
  position: relative;
  z-index: 1;
}

.category:hover {
  transform: translateY(-4px);
}

.category-accent {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.category-label {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  grid-column: 1;
}

.category-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  grid-column: 1;
}

.category-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.5rem;
}

/* Importación */
.import {
  padding-top: 4rem;
}

.import-head {
  max-width: 640px;
}

.import-banner {
  margin: 0 0 1.75rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.sky {
  position: relative;
  min-height: 340px;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.75rem) 1.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10, 132, 255, 0.28), transparent 55%),
    radial-gradient(ellipse at 20% 120%, rgba(10, 132, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #071018 0%, #0d2233 45%, #123044 100%);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(2px);
}

.cloud.c1 {
  width: 140px;
  height: 28px;
  top: 22%;
  left: 8%;
}

.cloud.c2 {
  width: 90px;
  height: 20px;
  top: 14%;
  right: 14%;
}

.cloud.c3 {
  width: 120px;
  height: 24px;
  bottom: 18%;
  left: 42%;
}

.flight-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  max-width: 920px;
  width: 100%;
  margin: 1.25rem auto 0;
  min-height: 200px;
}

.flight-track-wrap {
  position: relative;
  width: 100%;
  min-height: 180px;
}

.flight-svg {
  width: 100%;
  height: auto;
  min-height: 180px;
  overflow: visible;
  display: block;
}

.flight-track {
  stroke-linecap: round;
}

.plane-emoji {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  will-change: transform;
  user-select: none;
}

.route-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
}

.route-pin .pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0a84ff;
  box-shadow: 0 0 0 6px rgba(10, 132, 255, 0.22), 0 0 24px rgba(10, 132, 255, 0.55);
}

.route-pin.end .pin-dot {
  background: #34c759;
  box-shadow: 0 0 0 6px rgba(52, 199, 89, 0.2), 0 0 24px rgba(52, 199, 89, 0.45);
}

.route-pin .pin-label {
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.flight-caption {
  position: relative;
  z-index: 1;
  margin: 0.35rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* legacy selectors kept harmless */
.flight-path,
.route-dot,
.route-line,
.plane {
  display: none;
}

/* Motion grid — GSAP-style boxes */
.motion-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--mg-cols, 10), 1fr);
  grid-template-rows: repeat(var(--mg-rows, 5), 1fr);
  gap: 6px;
  padding: 12px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.motion-cell {
  border-radius: 4px;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.14);
  transform-origin: center;
  min-height: 0;
}

.motion-cell.is-accent {
  background: rgba(10, 132, 255, 0.28);
  border-color: rgba(10, 132, 255, 0.35);
}

.motion-section {
  position: relative;
  overflow: hidden;
}

.motion-section > *:not(.motion-grid) {
  position: relative;
  z-index: 1;
}

.sky .motion-grid {
  opacity: 0.35;
}

.sky .motion-cell {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.sky .motion-cell.is-accent {
  background: rgba(10, 132, 255, 0.22);
}

.import-step {
  position: relative;
  padding: 1.35rem 1.25rem 1.3rem;
  border-radius: 22px;
  background: #181818 !important;
  border: 1px solid var(--line);
  overflow: visible !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none;
  min-width: 0;
}

.import-step > * {
  position: relative;
  z-index: 1;
}

.import-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.import-step .step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.import-step .step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
  line-height: 1;
}

.import-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.15rem);
  overflow-wrap: normal;
  word-break: normal;
}

.import-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: normal;
}

.import-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  padding: 1.35rem 1.25rem;
  border-radius: 22px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  min-width: 0;
  overflow: visible;
}

.proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.15rem);
  color: white;
  margin-bottom: 0.45rem;
}

.proof-card p {
  margin: 0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.proof-card:first-child {
  background: linear-gradient(145deg, #0a6b53, #0f8f6e);
}

/* Trust */
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(216, 243, 234, 0.45));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  overflow: visible;
}

.trust-list {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--ink-soft);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.trust-visual {
  display: grid;
  place-items: center;
}

.stamp {
  width: min(260px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(15, 143, 110, 0.55);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.55);
  will-change: transform;
}

.stamp span,
.stamp em {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stamp strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-deep);
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  min-width: 0;
  overflow: visible;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

.review footer {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Service */
.service-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(15, 143, 110, 0.25), transparent 40%),
    var(--ink);
  color: white;
}

.service-banner .eyebrow {
  color: var(--accent-soft);
}

.service-banner p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: minmax(72px, 100px) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.contact-list span:first-child {
  color: var(--muted);
}

.contact-form,
.checkout-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 550;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus {
  border-color: rgba(15, 143, 110, 0.55);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 1.25rem 1.5rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand .logo-mark {
  width: 38px;
  height: 38px;
}

.footer-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

/* Drawer & modal — GSAP drives motion when .gsap-ready */
.drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 17, 16, 0.45);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.drawer.open,
.modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

html:not(.gsap-ready) .drawer,
html:not(.gsap-ready) .modal {
  transition: opacity 0.3s var(--ease);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  min-height: 0;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  overflow: hidden;
}

html:not(.gsap-ready) .drawer-panel {
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

html:not(.gsap-ready) .drawer.open .drawer-panel {
  transform: translateX(0);
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(480px, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  overflow: auto;
  background: var(--paper);
  border-radius: 22px;
  padding: 1.25rem;
  margin: 0;
}

html:not(.gsap-ready) .modal-panel {
  transform: translate(-50%, -46%) scale(0.96);
  transition: transform 0.35s var(--ease);
}

html:not(.gsap-ready) .modal.open .modal-panel {
  transform: translate(-50%, -50%) scale(1);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.icon-close {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.drawer-body,
.cart-items,
#cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
}

.cart-line strong {
  grid-column: 1;
}

.cart-line .meta {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-line .price {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-weight: 700;
}

.cart-line .remove {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
  background: none;
  color: var(--warn);
  cursor: pointer;
  padding: 0;
  font-size: 0.82rem;
}

.drawer-foot,
.cart-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 1rem 1.25rem calc(1.1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.08);
}

.drawer-foot .btn-primary,
.cart-footer .btn-primary {
  min-height: 48px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(10, 132, 255, 0.22);
}

.drawer-foot .btn-primary:hover,
.cart-footer .btn-primary:hover {
  box-shadow: 0 10px 22px rgba(10, 132, 255, 0.28);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary strong {
  font-size: 1.2rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  background: var(--ink);
  color: white;
  padding: 0.85rem 1.15rem;
  border-radius: 18px;
  z-index: 100;
  font-size: 0.92rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  max-width: min(420px, calc(100vw - 2rem));
  width: max-content;
  box-sizing: border-box;
  text-align: center;
  overflow-wrap: anywhere;
}

.toast.show {
  visibility: visible;
}

html:not(.gsap-ready) .toast {
  transform: translateX(-50%) translateY(120%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

html:not(.gsap-ready) .toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Legacy reveal (fallback without GSAP) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html.gsap-ready .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

html.gsap-ready .btn:hover {
  transform: none;
}

html.gsap-ready .category:hover {
  transform: none;
}

@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;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .site-header:has(.header-inner--module) {
    min-height: var(--header);
    height: var(--header);
  }

  .site-header .header-inner--module {
    grid-template-columns: 1fr auto;
    min-height: var(--header);
    padding-block: 0;
  }

  .nav {
    display: none;
    max-width: none;
  }

  .site-header:not(:has(.header-inner--module)) .nav.open {
    display: flex;
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: rgba(243, 241, 236, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
    z-index: 60;
    max-height: calc(100svh - var(--header));
    overflow: auto;
  }

  .site-header:not(:has(.header-inner--module)) .nav.open a {
    padding: 0.7rem 0.2rem;
    font-size: 1rem;
    color: var(--ink);
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .product-grid:not(.catalog-grid),
  .import-steps,
  .import-proof,
  .category-row,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid:not(.catalog-grid) {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 240px);
  }

  .trust-bar,
  .footer-grid,
  .trust-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-phone {
    opacity: 1;
    left: 42%;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: min(560px, 54vw);
    height: min(72vh, 700px);
    max-height: calc(100svh - var(--header) - 5rem);
  }

  img.hero-phone.hero-showcase {
    left: 34%;
    width: min(88vw, 720px);
    max-height: min(52vh, 480px);
  }

  .hero {
    padding-left: clamp(1.5rem, 6vw, 3.5rem);
    place-items: center start;
  }

  .hero-content {
    max-width: min(32rem, 100%);
  }
}

@media (max-width: 760px) {
  .trust-bar,
  .category-row,
  .review-grid,
  .trust-layout,
  .contact-layout,
  .footer-grid,
  .import-steps,
  .import-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid:not(.catalog-grid) {
    grid-template-columns: none;
    grid-auto-columns: minmax(180px, 78vw);
  }

  .service-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem;
  }

  .service-banner .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    place-items: end start;
    padding: 2.25rem 1.25rem 4.5rem;
    padding-left: 1.25rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-brand {
    font-size: clamp(2.2rem, 14vw, 3.4rem);
    letter-spacing: 0.04em;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.35rem, 6.5vw, 1.9rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-phone {
    width: min(300px, 68vw);
    top: 20%;
    right: -6%;
    opacity: 0.55;
  }

  .hero-scroll {
    left: 1rem;
    bottom: 1rem;
  }

  .trust-bar {
    margin-top: -1.25rem;
  }

  .trust-visual {
    order: -1;
  }

  .stamp {
    width: min(180px, 55vw);
  }

  .stamp strong {
    font-size: 1.5rem;
  }

  .flight-map {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    min-height: 0;
  }

  .flight-track-wrap {
    order: 2;
    width: 100%;
    min-height: 140px;
  }

  .flight-svg {
    min-height: 140px;
    max-width: 100%;
  }

  .plane-emoji {
    font-size: 2rem;
  }

  .route-pin.start {
    order: 1;
  }

  .route-pin.end {
    order: 3;
  }

  .route-pin {
    flex-direction: row;
    gap: 0.5rem;
  }

  .sky {
    min-height: 280px;
  }

  .flight-caption {
    font-size: 0.72rem;
  }

  .review footer {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .cart-total {
    display: none;
  }

  .site-footer {
    padding: 2.5rem 1rem 1.25rem;
  }

  .footer-tag {
    white-space: normal;
    line-height: 1.3;
  }

  .modal-panel {
    width: calc(100% - 1rem);
    max-height: calc(100% - 1rem);
  }

  .drawer-panel {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding: 0 0.85rem;
  }

  .product-grid:not(.catalog-grid) {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn {
    padding: 0.8rem 1.1rem;
    font-size: 0.9rem;
  }

  .route-dot {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

/* ========== Apple × Spotify theme layer ========== */
.hero-kicker {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.28);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #041018;
  margin-right: 0.15rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 36px rgba(10, 132, 255, 0.28);
  font-weight: 700;
}

.btn-primary:hover {
  background: #409cff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-dark {
  background: var(--white);
  color: #ffffff;
}

.eyebrow {
  color: var(--accent);
}

.section h2,
.section-sub,
.lead,
.trust-list li,
.faq-list summary,
.contact-list,
.product h3,
.product-meta,
.product-price .now {
  color: var(--white);
}

.section-sub,
.lead,
.product-meta,
.product-price .from,
.product-price .old,
.faq-list details p,
.import-step p,
.review p,
.contact-list span:first-child {
  color: var(--muted);
}

.trust-item,
.import-step,
.review,
.faq-list details,
.contact-form,
.checkout-form {
  background: rgba(26, 26, 26, 0.92);
  border-color: var(--line);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.trust-item strong,
.import-step h3,
.proof-card strong,
.review footer strong {
  color: var(--white);
}

.trust-layout {
  background: linear-gradient(145deg, rgba(10, 132, 255, 0.08), rgba(26, 26, 26, 0.95));
  border-color: var(--line);
}

.stamp {
  background: rgba(18, 18, 18, 0.8);
  border-color: rgba(10, 132, 255, 0.45);
}

.stamp strong {
  color: var(--accent);
}

.stamp span,
.stamp em {
  color: var(--muted);
}

.input,
input,
textarea,
select {
  background: var(--field-bg);
  color: var(--field-text);
  border-color: var(--line);
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--field-text) 42%, transparent);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(10, 132, 255, 0.55);
  background: var(--field-bg);
}

.drawer-panel,
.modal-panel {
  background: #121212;
  color: var(--white);
}

.drawer-head {
  border-color: var(--line);
}

.cart-line {
  background: var(--cart-line-bg);
  border-color: var(--line);
  color: var(--text);
}

.cart-line strong {
  color: var(--text);
}

.icon-close {
  color: var(--muted);
}

.shelf-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

/* Destacados: 3 productos en rejilla (no carrusel con uno solo) */
#destacados .product-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: unset;
  gap: 1.25rem;
  overflow: visible;
  scroll-snap-type: none;
  padding: 0;
  margin: 0;
}

#destacados .product-shelf .product {
  scroll-snap-align: unset;
  min-width: 0;
  width: 100%;
}

.shelf-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.shelf-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.shelf-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

/* Spotify-style horizontal shelf */
.product-shelf,
.product-grid:not(.catalog-grid) {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1.25rem;
  margin: 0 -0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 132, 255, 0.45) transparent;
}

.product-shelf::-webkit-scrollbar,
.product-grid:not(.catalog-grid)::-webkit-scrollbar {
  height: 6px;
}

.product-shelf::-webkit-scrollbar-thumb,
.product-grid:not(.catalog-grid)::-webkit-scrollbar-thumb {
  background: rgba(10, 132, 255, 0.45);
  border-radius: 999px;
}

.product-shelf .product,
.product-grid .product {
  scroll-snap-align: start;
  background: #181818;
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  transition: background 0.15s ease, transform 0.15s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: hidden;
}

.product-shelf .product::before,
.product-grid .product::before,
.product-shelf .product::after,
.product-grid .product::after {
  content: none !important;
  display: none !important;
}

.product-shelf .product:hover,
.product-grid .product:hover {
  background: #282828;
  box-shadow: none;
}

.product-visual {
  background: #232323;
  border-radius: 10px;
}

.product .btn {
  background: var(--accent);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.15s, transform 0.15s;
}

.product:hover .btn,
.product:focus-within .btn {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .product .btn {
    opacity: 1;
    transform: none;
  }
}

.category {
  background: #181818;
}

.category-accent {
  background: linear-gradient(135deg, #0066d6, #0a84ff);
  color: #ffffff;
}

.category-accent .category-meta {
  color: rgba(255, 255, 255, 0.8);
}

.import-proof .proof-card {
  background: #181818;
}

.proof-card:first-child {
  background: linear-gradient(145deg, #0066d6, #0a84ff);
  color: #ffffff;
}

.proof-card:first-child strong {
  color: #ffffff;
}

.proof-card:first-child p {
  color: rgba(255, 255, 255, 0.85);
}

.service-banner {
  background:
    radial-gradient(circle at 90% 20%, rgba(10, 132, 255, 0.22), transparent 40%),
    #181818;
}

.site-footer {
  background: #000;
}

.nav.open {
  background: rgba(10, 10, 10, 0.98);
}

.nav.open a {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-phone {
    opacity: 1;
    left: 42%;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: min(470px, 52vw);
    height: min(68vh, 620px);
    max-height: calc(100svh - var(--header) - 5rem);
  }
}

@media (max-width: 760px) {
  .hero-phone {
    width: min(320px, 74vw);
    height: min(54vh, 480px);
    top: 22%;
    left: auto;
    right: 2%;
    opacity: 0.9;
    pointer-events: auto;
  }

  .shelf-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-shelf,
  .product-grid:not(.catalog-grid) {
    grid-auto-columns: minmax(180px, 78vw);
  }
}

/* ========== Liquid Glass ========== */
.liquid-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.liquid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  will-change: transform;
}

.liquid-orb.orb-a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 12%;
  left: -8%;
  background: radial-gradient(circle at 35% 35%, rgba(10, 132, 255, 0.45), rgba(10, 132, 255, 0.05) 60%, transparent 70%);
}

.liquid-orb.orb-b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  top: 48%;
  right: -6%;
  background: radial-gradient(circle at 40% 40%, rgba(120, 160, 255, 0.35), rgba(80, 100, 255, 0.05) 62%, transparent 72%);
}

.liquid-orb.orb-c {
  width: min(30vw, 280px);
  height: min(30vw, 280px);
  bottom: 8%;
  left: 38%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.14), transparent 68%);
}

.liquid-glass,
.site-header,
.trust-item,
.review,
.faq-list details,
.contact-form,
.checkout-form,
.cart-btn,
.shelf-btn,
.drawer-panel,
.modal-panel,
.stamp,
.trust-layout,
.service-banner,
.category:not(.category-accent) {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 42%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before,
.site-header::before,
.trust-item::before,
.review::before,
.faq-list details::before,
.contact-form::before,
.cart-btn::before,
.drawer-panel::before,
.modal-panel::before,
.trust-layout::before,
.service-banner::before,
.category:not(.category-accent)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08) 100%),
    radial-gradient(120% 80% at 10% -10%, rgba(255, 255, 255, 0.22), transparent 45%);
  opacity: 0.85;
  mix-blend-mode: soft-light;
}

.liquid-glass::after,
.trust-item::after,
.review::after,
.cart-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 45%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
  transform: skewX(-18deg);
  opacity: 0.35;
  transition: left 0.7s var(--ease-apple), opacity 0.35s;
}

.trust-item:hover::after,
.import-step:hover::after,
.review:hover::after,
.cart-btn:hover::after {
  left: 120%;
  opacity: 0.55;
}

.site-header {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(12, 12, 12, 0.55) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(10, 10, 10, 0.72) 100%
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-header .header-inner,
.site-header .logo,
.site-header .nav,
.site-header .header-actions {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(10, 132, 255, 0.28);
  color: #fff;
}

.toast {
  background: rgba(28, 28, 30, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.drawer,
.modal {
  background: var(--drawer-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.drawer-panel,
.modal-panel {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(18, 18, 18, 0.82) 45%,
    rgba(12, 12, 12, 0.9) 100%
  );
}

.product-shelf .product > *:not(.product-visual),
.product-grid .product > *:not(.product-visual),
.trust-item > *,
.review > *,
.faq-list details > *,
.contact-form > *,
.trust-layout > *,
.service-banner > *,
.category > *,
.drawer-panel > *,
.modal-panel > *,
.hero-kicker {
  position: relative;
  z-index: 1;
}

.product-visual {
  z-index: 0;
}

.product-badge {
  position: absolute;
  z-index: 2;
}

.category:not(.category-accent) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(20, 20, 20, 0.55));
}

.category-accent {
  background: linear-gradient(145deg, rgba(10, 132, 255, 0.9), rgba(0, 102, 214, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(10, 132, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.proof-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.proof-card:first-child {
  background: linear-gradient(145deg, rgba(10, 132, 255, 0.85), rgba(0, 102, 214, 0.75));
  border-color: rgba(255, 255, 255, 0.2);
}

.sky {
  background:
    radial-gradient(ellipse at 20% 120%, rgba(10, 132, 255, 0.22), transparent 50%),
    linear-gradient(180deg, #0b1c28, #14324a 45%, #1c4a5e);
}

.import-banner {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--glass-shadow);
}

@media (prefers-reduced-motion: reduce) {
  .liquid-orb {
    animation: none !important;
  }

  .trust-item:hover::after,
  .import-step:hover::after {
    left: -40%;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .trust-item,
  .drawer-panel,
  .modal-panel {
    background: rgba(24, 24, 24, 0.94);
  }
}

body[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

body[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .theme-switch,
body[data-theme="light"] .cart-btn,
body[data-theme="light"] .shelf-btn,
body[data-theme="light"] .hero-kicker {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .product,
body[data-theme="light"] .product-shelf .product,
body[data-theme="light"] .product-grid .product,
body[data-theme="light"] .category:not(.category-accent),
body[data-theme="light"] .trust-item,
body[data-theme="light"] .import-step,
body[data-theme="light"] .review,
body[data-theme="light"] .faq-list details,
body[data-theme="light"] .contact-form,
body[data-theme="light"] .checkout-form,
body[data-theme="light"] .proof-card,
body[data-theme="light"] .service-banner {
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(15, 23, 42, 0.12);
  color: #101828;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

body[data-theme="light"] .proof-card strong {
  color: #101828;
}

body[data-theme="light"] .proof-card p {
  color: #5f6b7a;
}

body[data-theme="light"] .proof-card:first-child {
  background: linear-gradient(145deg, #0a84ff, #0066d6) !important;
  border-color: rgba(10, 132, 255, 0.28);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(10, 132, 255, 0.22);
}

body[data-theme="light"] .proof-card:first-child strong,
body[data-theme="light"] .proof-card:first-child p {
  color: #ffffff;
}

body[data-theme="light"] .proof-card:first-child p {
  color: rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .product-visual {
  background: linear-gradient(160deg, #eef4fb, #ffffff);
}

body[data-theme="light"] .product:hover,
body[data-theme="light"] .product-shelf .product:hover,
body[data-theme="light"] .product-grid .product:hover {
  background: #ffffff !important;
}

body[data-theme="light"] .sky {
  background:
    radial-gradient(ellipse at 20% 120%, rgba(10, 132, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #e8f4ff 0%, #d8ecff 45%, #cfe8f8 100%);
  color: #101828;
}

body[data-theme="light"] .route-pin .pin-label {
  background: rgba(255, 255, 255, 0.78);
  color: #101828;
  border-color: rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .drawer-panel,
body[data-theme="light"] .modal-panel {
  background: rgba(255, 255, 255, 0.96);
  color: #101828;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .drawer-head,
body[data-theme="light"] .drawer-foot,
body[data-theme="light"] .cart-footer {
  border-color: rgba(15, 23, 42, 0.1);
}

body[data-theme="light"] .drawer-foot,
body[data-theme="light"] .cart-footer {
  background: #ffffff;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
}

body[data-theme="light"] .drawer-head h2,
body[data-theme="light"] .cart-summary,
body[data-theme="light"] .cart-summary strong,
body[data-theme="light"] .checkout-form label {
  color: #101828;
}

body[data-theme="light"] .cart-line .meta,
body[data-theme="light"] .cart-empty {
  color: var(--muted);
}

body[data-theme="light"] .cart-line .remove {
  color: #d9480f;
}

body[data-theme="light"] .icon-close {
  color: var(--muted);
}

body[data-theme="light"] .icon-close:hover {
  color: #101828;
}

body[data-theme="light"] .site-footer {
  background: #f8fbff;
  color: #101828;
}

/* ========== Mobile polish overrides ========== */
@media (max-width: 860px) {
  :root {
    --header: 72px;
  }

  .site-header {
    height: auto;
    min-height: var(--header);
  }

  .header-inner {
    min-height: var(--header);
    padding: 0.7rem 0.85rem;
    gap: 0.45rem;
  }

  .logo {
    gap: 0.45rem;
    min-width: 0;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.01em;
  }

  .header-actions {
    gap: 0.35rem;
    flex: 0 0 auto;
  }

  .theme-switch {
    padding: 0.18rem;
    gap: 0.12rem;
  }

  .theme-btn {
    min-width: 52px;
    padding: 0.45rem 0.55rem;
    font-size: 0.7rem;
  }

  .cart-btn,
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    flex: 0 0 auto;
  }

  .cart-btn svg {
    width: 19px;
    height: 19px;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 1.1rem 2.75rem;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-bg {
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 6;
    order: 1;
    max-width: 100%;
    padding-top: 0.25rem;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.58);
  }

  .hero-kicker {
    max-width: calc(100vw - 2.2rem);
    white-space: normal;
    line-height: 1.35;
    font-size: 0.72rem;
  }

  .hero-brand {
    font-size: clamp(3.2rem, 17vw, 5.1rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
  }

  .hero-title {
    max-width: min(26rem, 100%);
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-sub {
    max-width: min(26rem, 100%);
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    width: 100%;
    max-width: 25rem;
  }

  .hero-cta .btn {
    justify-content: center;
    min-width: 0;
    padding-inline: 0.75rem;
  }

  .hero-phone {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    order: 2;
    width: min(275px, 70vw) !important;
    height: min(365px, 44vh) !important;
    margin: 1.15rem auto 0.35rem;
    opacity: 1 !important;
    transform: none !important;
    filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.34));
    pointer-events: auto;
    z-index: 5;
    touch-action: pan-y;
  }

  .hero-scroll {
    display: none;
  }

  .trust-bar {
    margin: 0 auto;
    padding: 0 1rem;
    gap: 0.7rem;
    transform: translateY(-0.6rem);
  }

  .trust-item {
    padding: 1rem;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding-inline: 0.7rem;
  }

  .logo-text {
    max-width: 4.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .theme-btn {
    min-width: 48px;
    padding-inline: 0.45rem;
  }

  .hero {
    padding: 1rem 1rem 2.25rem;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-phone {
    width: min(285px, 72vw) !important;
    height: min(350px, 41vh) !important;
    margin: 1rem auto 0.2rem;
    opacity: 1 !important;
    transform: none !important;
    filter:
      drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34))
      drop-shadow(0 34px 58px rgba(0, 0, 0, 0.42));
  }

  .hero-brand {
    max-width: 68vw;
  }

  .hero-title,
  .hero-sub {
    max-width: 92vw;
  }

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

  .trust-bar {
    grid-template-columns: 1fr !important;
    padding-inline: 1rem;
  }
}

@media (max-width: 380px) {
  .theme-switch {
    display: none;
  }

  .hero-brand {
    font-size: clamp(2.8rem, 18vw, 4rem);
  }
}

/* Mobile cart: compact header badge + native bottom sheet */
@media (max-width: 860px) {
  .cart-btn {
    position: relative;
    overflow: visible !important;
    border-radius: 14px;
  }

  .cart-btn::before,
  .cart-btn::after {
    display: none !important;
  }

  .cart-count {
    position: absolute;
    top: -0.42rem;
    right: -0.42rem;
    z-index: 2;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.28rem;
    border: 2px solid rgba(10, 10, 10, 0.92);
    font-size: 0.62rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(10, 132, 255, 0.28);
  }

  body[data-theme="light"] .cart-count {
    border-color: rgba(255, 255, 255, 0.96);
  }
}

@media (max-width: 760px) {
  .drawer {
    background: var(--drawer-overlay);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .drawer-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(82svh, 680px);
    max-height: calc(100svh - 0.75rem);
    border-radius: 26px 26px 0 0;
    overflow: hidden;
    padding-bottom: 0;
  }

  html:not(.gsap-ready) .drawer-panel {
    transform: translateY(100%);
  }

  html:not(.gsap-ready) .drawer.open .drawer-panel {
    transform: translateY(0);
  }

  .drawer-head,
  .drawer-foot,
  .cart-footer {
    padding-inline: 1rem;
  }

  .drawer-body,
  .cart-items,
  #cart-items {
    padding: 0.85rem 1rem;
  }

  .cart-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
    border-radius: 16px;
  }

  .cart-line .price {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .cart-line .remove {
    margin-top: 0.2rem;
  }
}

/* Mobile menu: premium dropdown */
@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .nav.open {
    position: fixed;
    top: calc(var(--header) + 0.7rem);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 90;
    width: auto;
    max-width: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
      radial-gradient(circle at 18% 0%, rgba(10, 132, 255, 0.22), transparent 36%),
      linear-gradient(160deg, rgba(18, 18, 18, 0.96), rgba(7, 10, 14, 0.92));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    overflow: hidden;
  }

  .nav.open::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 1.2rem;
    width: 14px;
    height: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(18, 18, 18, 0.96);
    transform: rotate(45deg);
  }

  .nav.open a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border-radius: 17px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    overflow: hidden;
  }

  .nav.open a::before {
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    order: 2;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.75rem;
    font-weight: 900;
  }

  .nav.open {
    counter-reset: nav-item;
  }

  .nav.open a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.18), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.2s var(--ease);
  }

  .nav.open a:hover,
  .nav.open a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav.open a:hover::after,
  .nav.open a:focus-visible::after {
    opacity: 1;
  }

  body[data-theme="light"] .nav.open {
    border-color: rgba(15, 23, 42, 0.12);
    background:
      radial-gradient(circle at 18% 0%, rgba(10, 132, 255, 0.14), transparent 36%),
      rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  }

  body[data-theme="light"] .nav.open::before {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
  }

  body[data-theme="light"] .nav.open a {
    color: #101828 !important;
  }

  body[data-theme="light"] .nav.open a::before {
    color: rgba(15, 23, 42, 0.42) !important;
  }

  body[data-theme="light"] .nav.open a:hover,
  body[data-theme="light"] .nav.open a:focus-visible {
    color: #101828 !important;
    background: rgba(10, 132, 255, 0.08);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .nav.open {
    left: 0.65rem;
    right: 0.65rem;
    top: calc(var(--header) + 0.45rem);
    max-width: none;
    border-radius: 22px;
  }
}

/* ========== Product detail page (Catapu-style) ========== */
.product-page .product-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--header) + 1.5rem) 1.25rem 4rem;
}

.product-loading,
.product-not-found {
  text-align: center;
  padding: 4rem 1rem;
}

.product-breadcrumb {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.product-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.product-gallery-main {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-gallery-main img,
.product-gallery-main .product-model {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.product-gallery-main img {
  height: auto;
  object-fit: contain;
  padding: 1.5rem;
}

.product-model {
  width: 100%;
  height: 420px;
  background: transparent !important;
  background-color: transparent !important;
  --poster-color: transparent;
}

.product-gallery-main:has(.product-model:not(.hidden)) {
  background: var(--surface);
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.thumb-btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.35rem;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.18);
}

.thumb-btn img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.thumb-btn.thumb-3d {
  min-width: 56px;
  min-height: 56px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.product-buy {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 1.35rem;
}

.product-buy h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0.35rem 0 0.5rem;
}

.product-sku {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
}

.product-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.variant-block {
  margin-bottom: 1rem;
}

.variant-block h3 {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.variant-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft, rgba(0, 0, 0, 0.2));
  color: var(--text, #fff);
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.variant-btn.active {
  border-color: var(--accent);
  background: rgba(10, 132, 255, 0.16);
  color: var(--accent);
}

.color-btn span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--swatch);
  margin-right: 0.35rem;
  vertical-align: middle;
}

.product-price-box {
  margin: 1.2rem 0 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.product-price-box .from {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-price-box strong {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--accent);
}

.product-price-box .old {
  color: var(--muted);
  text-decoration: line-through;
}

.product-rating {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.product-actions {
  display: grid;
  gap: 0.65rem;
}

.product-includes,
.product-description-block,
.product-specs-block,
.product-grades {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.include-card {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  text-align: center;
}

.include-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.include-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
}

.product-specs th,
.product-specs td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.product-specs th {
  width: 34%;
  color: var(--muted);
  font-weight: 700;
}

.grade-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.grade-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.grade-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.grade-panel {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.product-video-block {
  margin-bottom: 2rem;
}

.product-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* Catalog category pages */
.catalog-page .catalog-main {
  padding-top: calc(var(--header) + 1.5rem);
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 1rem;
}

.catalog-hero {
  margin-bottom: 1.5rem;
}

.catalog-breadcrumb {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.catalog-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.catalog-hero h1 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.catalog-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 58ch;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.catalog-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  will-change: transform, opacity;
}

.catalog-tabs.is-switching .catalog-tab {
  pointer-events: none;
}

.catalog-tab:hover,
.catalog-tab.active {
  border-color: var(--tab-color, var(--accent));
  background: rgba(10, 132, 255, 0.12);
  transform: translateY(-1px);
}

.catalog-hero,
.catalog-section,
.product-shelf {
  will-change: transform, opacity;
}

.catalog-empty {
  color: var(--muted);
  margin: 0 0 1rem;
}

.catalog-section {
  padding-bottom: 3rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Catalog layout: sidebar filters + results */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.catalog-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.catalog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.catalog-sort-wrap {
  display: flex;
  align-items: center;
}

.catalog-filters-panel {
  position: sticky;
  top: calc(var(--header) + 1rem);
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  display: grid;
  gap: 1rem;
  align-self: start;
}

.catalog-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.catalog-filters-head h3 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-display);
}

.filter-clear {
  border: none;
  background: none;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
}

.filter-group {
  display: grid;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-input,
.filter-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: var(--field-bg);
  color: var(--field-text);
  font-size: 0.88rem;
  outline: none;
}

.filter-input:focus,
.filter-select:focus {
  border-color: rgba(10, 132, 255, 0.55);
}

.filter-price-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
}

.filter-price-inputs span {
  color: var(--muted);
  font-size: 0.85rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: var(--bg-soft, rgba(255, 255, 255, 0.04));
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.filter-checks {
  gap: 0.55rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.filter-check input {
  width: auto;
  accent-color: var(--accent);
}

.filter-apply-mobile,
.filter-close-mobile {
  display: none;
}

.filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 84;
  background: var(--drawer-overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.filter-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.filter-open {
  overflow: hidden;
}

body[data-theme="light"] .catalog-filters-panel {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .filter-chip {
  background: #f4f7fb;
}

@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalog-filter-btn {
    display: inline-flex;
  }

  .filter-group-desktop {
    display: none;
  }

  .catalog-filters-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 85;
    max-height: min(88svh, 720px);
    overflow: auto;
    border-radius: 22px 22px 0 0;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    transform: translateY(105%);
    transition: transform 0.32s var(--ease);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  }

  .catalog-filters-panel.open {
    transform: translateY(0);
  }

  .filter-close-mobile,
  .filter-apply-mobile {
    display: inline-flex;
  }

  .filter-apply-mobile {
    margin-top: 0.25rem;
  }

  .catalog-toolbar {
    margin-bottom: 1rem;
  }

  .catalog-toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .catalog-sort-mobile {
    flex: 1;
    max-width: 11.5rem;
  }
}

@media (min-width: 901px) {
  .catalog-filter-btn {
    display: none;
  }

  .catalog-sort-mobile {
    display: none;
  }
}

/* Marketplace-style vertical catalog grid (Amazon / Falabella) */
.catalog-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  max-width: none;
  margin-bottom: 0;
}

.catalog-section .catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 1.25rem;
  overflow: visible;
  scroll-snap-type: none;
  padding: 0;
  margin: 0;
}

.catalog-section .catalog-grid .product {
  scroll-snap-align: none;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.catalog-section .catalog-grid .product:hover {
  border-color: rgba(10, 132, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.catalog-section .catalog-grid .product .btn {
  opacity: 1;
  transform: none;
}

body[data-theme="light"] .catalog-section .catalog-grid .product {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .catalog-section .catalog-grid .product:hover {
  border-color: rgba(10, 132, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1100px) {
  .catalog-section .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog-section .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .catalog-section .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .catalog-section .catalog-grid .product {
    padding: 0.65rem;
  }

  .catalog-section .catalog-grid .product h3 {
    font-size: 0.92rem;
  }
}

.product .btn[href] {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.65rem;
  text-decoration: none;
}

@media (max-width: 900px) {
  .product-detail-grid,
  .includes-grid {
    grid-template-columns: 1fr;
  }

  .includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ========== Mobile: product cards & catalog grid ========== */
@media (max-width: 760px) {
  .section {
    padding: 2.5rem 0.75rem 0.75rem;
  }

  .section-head {
    margin-bottom: 1.25rem;
    max-width: 100%;
  }

  .shelf-head {
    align-items: stretch;
    gap: 0.75rem;
  }

  .shelf-head .btn {
    width: 100%;
    justify-content: center;
  }

  /* Destacados: rejilla en móvil */
  #destacados .product-shelf,
  .product-shelf {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 0.75rem;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }

  .product-shelf .product {
    scroll-snap-align: unset;
    min-width: 0;
    width: 100%;
  }

  .product-shelf .product,
  .catalog-section .catalog-grid .product,
  .product-grid .product {
    padding: 0.65rem;
  }

  .product h3 {
    font-size: 0.88rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-meta {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
  }

  .product-price {
    gap: 0.2rem 0.35rem;
    margin-bottom: 0.55rem;
  }

  .product-price .now {
    font-size: 0.92rem;
  }

  .product-price .from,
  .product-price .old {
    font-size: 0.68rem;
  }

  .product-visual {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
  }

  .product-badge {
    top: 0.45rem;
    left: 0.45rem;
    font-size: 0.58rem;
    padding: 0.2rem 0.4rem;
  }

  .product .btn {
    opacity: 1 !important;
    transform: none !important;
    font-size: 0.78rem;
    padding: 0.6rem 0.4rem;
    margin-top: 0.45rem;
    min-height: 36px;
  }

  .catalog-page .catalog-main {
    padding-inline: 0.75rem;
    padding-top: calc(var(--header) + 1rem);
  }

  .catalog-hero {
    margin-bottom: 1rem;
  }

  .catalog-hero h1 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    line-height: 1.15;
  }

  .catalog-lead {
    font-size: 0.9rem;
  }

  .catalog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.4rem;
    padding-bottom: 0.25rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
  }

  body.streaming-catalog-page .catalog-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    flex-wrap: unset;
    margin-inline: 0;
    padding-inline: 0;
  }

  body.streaming-catalog-page .catalog-tab {
    flex: unset;
    font-size: inherit;
  }

  .catalog-tabs::-webkit-scrollbar {
    display: none;
  }

  .catalog-tab {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
  }

  body.streaming-catalog-page .catalog-tab {
    padding: 0.45rem 0.25rem;
  }

  .catalog-head {
    margin-bottom: 1rem;
  }

  .catalog-head h2,
  .catalog-section .section-head h2 {
    font-size: 1.2rem;
  }

  .catalog-section .catalog-grid {
    gap: 0.75rem;
  }

  .product-page .product-main {
    padding: calc(var(--header) + 1rem) 0.75rem 2.5rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-gallery-main {
    min-height: min(72vw, 340px);
    border-radius: 18px;
  }

  .product-model {
    height: min(72vw, 340px);
  }
}

@media (max-width: 420px) {
  .section {
    padding-inline: 0.65rem;
  }

  .catalog-page .catalog-main,
  .product-page .product-main {
    padding-inline: 0.65rem;
  }

  .product-shelf,
  .catalog-section .catalog-grid {
    gap: 0.55rem;
  }

  .product-shelf .product,
  .catalog-section .catalog-grid .product {
    padding: 0.55rem;
    border-radius: 10px;
  }

  .product h3 {
    font-size: 0.82rem;
  }

  .product .btn {
    font-size: 0.74rem;
    padding: 0.55rem 0.35rem;
  }
}

@media (max-width: 360px) {
  .product-shelf {
    grid-template-columns: 1fr;
  }
}

.hub-header .header-inner {
  justify-content: space-between;
}

.hub-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hub-back-btn:active {
  transform: scale(0.96);
}

.hub-back-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.site-header .header-inner--module {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem 0.85rem;
  height: 100%;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  min-width: 0;
}

.site-header .header-inner--module .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.2rem 0.85rem;
  min-width: 0;
  max-width: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 0.25rem;
  mask-image: linear-gradient(90deg, transparent, #000 6px, #000 calc(100% - 6px), transparent);
}

.site-header .header-inner--module .header-actions {
  flex-shrink: 0;
  justify-self: end;
}

.site-header .header-inner--module .nav::-webkit-scrollbar {
  display: none;
}

.site-header .header-inner--module .nav a {
  font-size: 0.8rem;
  position: relative;
  flex-shrink: 0;
  transition: color 0.25s var(--ease);
}

.site-header .header-inner--module .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--ease);
}

.site-header .header-inner--module .nav a:hover::after {
  transform: scaleX(1);
}

/* Móvil: menú hamburguesa en Ropa, Streaming, Dispositivos y catálogo */
@media (max-width: 1100px) {
  body.site-nav-open {
    overflow: hidden;
  }

  body.site-nav-open .site-header {
    z-index: 120;
  }

  body.site-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
  }

  .site-header .header-inner--module .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 122;
  }

  .site-header .header-inner--module .nav,
  #main-nav.site-mobile-nav--portal {
    display: none !important;
    position: fixed;
    top: calc(var(--header) + 0.7rem);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 121;
    width: auto;
    max-width: 420px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
      radial-gradient(circle at 18% 0%, rgba(10, 132, 255, 0.22), transparent 36%),
      linear-gradient(160deg, rgba(18, 18, 18, 0.98), rgba(7, 10, 14, 0.96));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    mask-image: none;
    justify-content: stretch;
    flex-wrap: nowrap;
    counter-reset: nav-item;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .header-inner--module .nav.open,
  #main-nav.site-mobile-nav--portal.open {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-header .header-inner--module .nav.open::before,
  #main-nav.site-mobile-nav--portal.open::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 1.2rem;
    width: 14px;
    height: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(18, 18, 18, 0.96);
    transform: rotate(45deg);
    z-index: 1;
  }

  body:not([data-theme="light"]) .site-header .header-inner--module .nav a,
  body:not([data-theme="light"]) #main-nav.site-mobile-nav--portal a {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border-radius: 17px;
    color: #ffffff !important;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
  }

  body[data-theme="light"] .site-header .header-inner--module .nav a,
  body[data-theme="light"] #main-nav.site-mobile-nav--portal a {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border-radius: 17px;
    color: #101828 !important;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
  }

  .site-header .header-inner--module .nav a::after,
  #main-nav.site-mobile-nav--portal a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(10, 132, 255, 0.18), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transform: none;
    transition: opacity 0.2s var(--ease);
  }

  body:not([data-theme="light"]) .site-header .header-inner--module .nav a::before,
  body:not([data-theme="light"]) #main-nav.site-mobile-nav--portal a::before {
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    order: 2;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.75rem;
    font-weight: 900;
  }

  body[data-theme="light"] .site-header .header-inner--module .nav a::before,
  body[data-theme="light"] #main-nav.site-mobile-nav--portal a::before {
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    order: 2;
    color: rgba(15, 23, 42, 0.42) !important;
    font-size: 0.75rem;
    font-weight: 900;
  }

  body:not([data-theme="light"]) .site-header .header-inner--module .nav a:hover,
  body:not([data-theme="light"]) .site-header .header-inner--module .nav a:focus-visible,
  body:not([data-theme="light"]) #main-nav.site-mobile-nav--portal a:hover,
  body:not([data-theme="light"]) #main-nav.site-mobile-nav--portal a:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
  }

  body[data-theme="light"] .site-header .header-inner--module .nav a:hover,
  body[data-theme="light"] .site-header .header-inner--module .nav a:focus-visible,
  body[data-theme="light"] #main-nav.site-mobile-nav--portal a:hover,
  body[data-theme="light"] #main-nav.site-mobile-nav--portal a:focus-visible {
    color: #101828 !important;
    background: rgba(10, 132, 255, 0.1);
  }

  .site-header .header-inner--module .nav a:hover::after,
  .site-header .header-inner--module .nav a:focus-visible::after,
  #main-nav.site-mobile-nav--portal a:hover::after,
  #main-nav.site-mobile-nav--portal a:focus-visible::after {
    opacity: 1;
    transform: none;
  }

  body[data-theme="light"] .site-header .header-inner--module .nav,
  body[data-theme="light"] #main-nav.site-mobile-nav--portal {
    border-color: rgba(15, 23, 42, 0.14);
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  }

  body[data-theme="light"] .site-header .header-inner--module .nav.open::before,
  body[data-theme="light"] #main-nav.site-mobile-nav--portal.open::before {
    border-color: rgba(15, 23, 42, 0.14);
    background: #ffffff;
  }
}

@media (max-width: 520px) {
  .site-header .header-inner--module .nav,
  .site-header .header-inner--module .nav.open,
  #main-nav.site-mobile-nav--portal,
  #main-nav.site-mobile-nav--portal.open {
    left: 0.65rem;
    right: 0.65rem;
    top: calc(var(--header) + 0.45rem);
    max-width: none;
    border-radius: 22px;
  }
}

/* Page transitions — CSS only, no blur */
html.page-boot-cover body {
  visibility: hidden;
}

html.page-boot-cover::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: #0a0a0a;
}

html.page-boot-light.page-boot-cover::before {
  background: #f8fafd;
}

html.page-transition-pending,
body.page-entering,
body.page-leaving {
  overflow: hidden;
}

.page-curtain {
  --curtain-tint: #0a0a0a;
  --curtain-brand-text: #ffffff;
  --curtain-muted: rgba(255, 255, 255, 0.45);
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  contain: strict;
  transition: opacity 0.22s ease;
}

.page-curtain[data-theme="light"],
body[data-theme="light"] .page-curtain {
  --curtain-tint: #f8fafd;
  --curtain-brand-text: #101828;
  --curtain-muted: rgba(16, 24, 40, 0.42);
}

.page-curtain.is-visible,
.page-curtain.is-active {
  visibility: visible;
  opacity: 1;
}

.page-curtain.is-leaving {
  opacity: 0 !important;
}

.page-curtain-blur {
  position: absolute;
  inset: 0;
  background: var(--curtain-tint);
}

.page-curtain-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
}

.page-curtain-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 22, 0.9);
}

.page-curtain[data-theme="light"] .page-curtain-brand {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.page-curtain-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-curtain-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 4.5vw, 1.65rem);
  letter-spacing: 0.05em;
  color: var(--curtain-brand-text);
  line-height: 1;
  white-space: nowrap;
}

.page-curtain-braille {
  font-family: "Cascadia Mono", "SF Mono", "Consolas", "Liberation Mono", monospace;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0;
  min-width: 1.2em;
  text-align: center;
  opacity: 0.92;
}

@media (max-width: 520px) {
  .page-curtain-brand {
    gap: 0.6rem;
    padding: 0.68rem 0.9rem;
  }

  .page-curtain-mark {
    width: 42px;
    height: 42px;
  }

  .page-curtain-name {
    font-size: 1.2rem;
  }

  .page-curtain-braille {
    font-size: 1.2rem;
  }
}

@keyframes hubOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -10px); }
}

html:not(.gsap-ready) .hub-orb-a {
  animation: hubOrbFloat 7s ease-in-out infinite;
}

html:not(.gsap-ready) .hub-orb-b {
  animation: hubOrbFloat 8.5s ease-in-out infinite reverse;
}

html:not(.gsap-ready) .hub-orb-c {
  animation: hubOrbFloat 6.2s ease-in-out infinite;
  animation-delay: -2s;
}

html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-intro > *,
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-modules-head,
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-card,
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-import-banner,
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-trust,
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-footnote,
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-footer {
  opacity: 0;
  transform: translateY(24px);
  animation: hubFadeUp 0.7s var(--ease) forwards;
}

html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-intro > *:nth-child(1) { animation-delay: 0.08s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-intro > *:nth-child(2) { animation-delay: 0.16s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-intro > *:nth-child(3) { animation-delay: 0.24s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-modules-head { animation-delay: 0.3s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-modules .hub-card:nth-child(1) { animation-delay: 0.36s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-modules .hub-card:nth-child(2) { animation-delay: 0.44s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-modules .hub-card:nth-child(3) { animation-delay: 0.52s; }
html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-import-banner { animation-delay: 0.6s; }

@keyframes hubFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-curtain {
    display: none !important;
  }

  html:not(.gsap-ready) .hub-orb-a,
  html:not(.gsap-ready) .hub-orb-b,
  html:not(.gsap-ready) .hub-orb-c {
    animation: none !important;
  }

  html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-intro > *,
  html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-card,
  html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-footnote,
  html:not(.gsap-ready) .hub-page:not(.hub-motion-ready) .hub-footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.module-header .header-inner--module .module-breadcrumb {
  display: none;
}

.module-header .header-inner--module .header-actions {
  margin-left: auto;
}

@media (max-width: 900px) {
  .module-header .header-inner--module .module-breadcrumb {
    display: flex;
    order: 3;
    width: 100%;
    padding-top: 0.35rem;
    margin-top: 0.15rem;
    border-top: 1px solid var(--line);
  }
}

body[data-theme="light"] .hub-back-btn {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 860px) {
  .site-header .header-inner--module .cart-total {
    display: none;
  }

  .site-header .header-inner--module .cart-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }

  .site-header .header-inner--module .theme-btn {
    min-width: 48px;
    padding: 0.42rem 0.5rem;
    font-size: 0.68rem;
  }
}

@media (min-width: 1101px) and (max-width: 1380px) {
  .site-header .header-inner--module {
    gap: 0.5rem 0.65rem;
  }

  .site-header .header-inner--module .nav {
    gap: 0.15rem 0.65rem;
  }

  .site-header .header-inner--module .nav a {
    font-size: 0.76rem;
  }

  .hub-back-label {
    display: none;
  }

  .hub-back-btn {
    padding: 0.4rem 0.48rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .theme-btn {
    min-width: 58px;
    padding: 0.42rem 0.62rem;
    font-size: 0.72rem;
  }

  .cart-total {
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .hub-back-label {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header .header-inner--module {
    gap: 0.45rem;
    padding-inline: 0.85rem;
  }

  .header-brand {
    gap: 0.4rem;
  }

  .hub-back-btn {
    padding: 0.38rem 0.5rem;
    font-size: 0.72rem;
  }

  .hub-back-btn svg {
    width: 15px;
    height: 15px;
  }

  .site-header .header-inner--module .logo-text {
    display: none;
  }
}

/* ========== Gefory Hub (3 plataformas) ========== */
.hub-page {
  min-height: 100vh;
  background: var(--ink);
}

.hub-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hub-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hub-orb-a {
  width: 42vw;
  height: 42vw;
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.2), transparent 70%);
}

.hub-orb-b {
  width: 36vw;
  height: 36vw;
  bottom: -5%;
  right: -8%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.16), transparent 70%);
}

.hub-orb-c {
  width: 28vw;
  height: 28vw;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(52, 199, 89, 0.2), transparent 70%);
}

.hub-header .header-inner {
  justify-content: space-between;
}

.hub-main {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--header) + 2rem) 1.25rem 2.5rem;
}

.hub-intro {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
  padding: 0 0.5rem;
}

.hub-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hub-title-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 1rem;
  padding: 0.15rem 0.5rem 0.35rem;
}

.hub-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 16vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  perspective: 900px;
  overflow: visible;
}

.hub-title-split .hub-char {
  display: inline-block;
  perspective: 700px;
}

.hub-title-split .hub-char-inner {
  display: inline-block;
  will-change: transform, opacity;
  color: #ffffff;
}

.hub-logo-text {
  letter-spacing: 0.08em;
  font-weight: 800;
}

.hub-lead {
  margin: 0 auto;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 2.8vw, 1.18rem);
  line-height: 1.55;
  font-weight: 500;
}

.hub-lead-break {
  display: none;
}

@media (min-width: 520px) {
  .hub-lead-break {
    display: block;
  }
}

/* Sobre nosotros */
.hub-about {
  margin-bottom: 2.5rem;
}

.hub-about-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.hub-about-kicker {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-about-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  letter-spacing: -0.02em;
}

.hub-about-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 2.4vw, 1.02rem);
  line-height: 1.6;
}

.hub-about-lead strong {
  color: var(--text);
  letter-spacing: 0.04em;
}

.hub-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hub-about-item {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.hub-about-item h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1rem;
}

.hub-about-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hub-about-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.hub-about-item--devices .hub-about-icon { background: rgba(10, 132, 255, 0.14); }
.hub-about-item--fashion .hub-about-icon { background: rgba(255, 107, 53, 0.14); }
.hub-about-item--streaming .hub-about-icon { background: rgba(34, 211, 238, 0.14); }

.hub-modules-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.hub-modules-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.hub-modules-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hub-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1rem;
  align-items: start;
}

.hub-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.92) 0%, rgba(10, 12, 20, 0.98) 100%);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  min-height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hub-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0c14;
}

.hub-card-media--devices {
  background: #050505;
}

.hub-card-media--fashion {
  background: #120e0a;
}

.hub-card-media--devices img {
  object-position: center 42%;
}

.hub-card-media--fashion img {
  object-position: center 35%;
}

.hub-card-media--streaming {
  display: block;
  background: #0a0a0a;
}

.hub-card-media--streaming img {
  object-fit: cover;
  object-position: center;
}

.hub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.hub-card:hover .hub-card-media img {
  transform: scale(1.04);
}

.hub-card-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(6, 8, 15, 0.72) 100%);
  pointer-events: none;
}

.hub-card-media-shade--streaming {
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.08) 0%, rgba(6, 8, 15, 0.88) 100%);
}

.hub-stream-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1.25rem;
  z-index: 1;
  width: min(100%, 220px);
}

.hub-stream-logo {
  width: 100%;
  max-width: 3.4rem;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.55rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 0 12px rgba(175, 82, 222, 0.25));
}

.hub-card-panel,
.hub-card-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem 1.15rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

html.gsap-ready .hub-card {
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.hub-card-devices::before {
  background: linear-gradient(145deg, rgba(10, 132, 255, 0.18), transparent 55%);
}

.hub-card-fashion::before {
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.16), transparent 55%);
}

.hub-card-streaming::before {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.2), transparent 55%);
}

.hub-card-devices:hover {
  border-color: rgba(10, 132, 255, 0.55);
  box-shadow: 0 22px 48px rgba(10, 132, 255, 0.18), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.hub-card-fashion:hover {
  border-color: rgba(10, 132, 255, 0.45);
  box-shadow: 0 22px 48px rgba(10, 132, 255, 0.12), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.hub-card-streaming:hover {
  border-color: rgba(175, 82, 222, 0.55);
  box-shadow: 0 22px 48px rgba(175, 82, 222, 0.2), 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hub-card:hover {
  transform: translateY(-4px);
}

.hub-card:hover::before {
  opacity: 1;
}

.hub-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.hub-card-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-family: var(--font-display);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hub-card-title-main {
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  font-weight: 800;
  color: var(--text);
}

.hub-card-title-accent {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 800;
  color: #0a84ff;
}

.hub-card-streaming .hub-card-title-accent {
  color: #c084fc;
}

.hub-card-body h2:not(.hub-card-title) {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.hub-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 28ch;
}

.hub-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.hub-card-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.hub-card-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, 0.35);
  background: rgba(10, 132, 255, 0.12);
  color: #0a84ff;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hub-card:hover .hub-card-arrow {
  transform: translateX(2px);
  background: rgba(10, 132, 255, 0.22);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.35);
}

.hub-card-streaming .hub-card-arrow {
  border-color: rgba(192, 132, 252, 0.4);
  background: rgba(175, 82, 222, 0.14);
  color: #c084fc;
}

.hub-card-streaming:hover .hub-card-arrow {
  background: rgba(175, 82, 222, 0.24);
  box-shadow: 0 0 20px rgba(175, 82, 222, 0.35);
}

.hub-card-emblem {
  position: relative;
  width: 5.5rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  margin-top: 0.15rem;
}

.hub-card-emblem-base {
  position: absolute;
  inset: auto 0 0;
  height: 1.35rem;
  clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.55) 0%, rgba(10, 132, 255, 0.08) 100%);
  box-shadow: 0 0 28px rgba(10, 132, 255, 0.45);
}

.hub-card-emblem--streaming .hub-card-emblem-base {
  background: linear-gradient(180deg, rgba(175, 82, 222, 0.6) 0%, rgba(175, 82, 222, 0.08) 100%);
  box-shadow: 0 0 28px rgba(175, 82, 222, 0.45);
}

.hub-card-emblem-logo {
  position: relative;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  transform: translateY(-0.15rem);
}

.hub-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
  padding: clamp(1.15rem, 3vw, 1.45rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 20px;
  border: 1px solid rgba(10, 132, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 20, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.22);
}

.hub-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.hub-trust-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a84ff, #0066d6);
  color: #ffffff;
  box-shadow:
    0 8px 20px rgba(10, 132, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hub-trust-icon svg {
  display: block;
}

.hub-trust-item strong {
  display: block;
  font-size: clamp(0.84rem, 2vw, 0.92rem);
  margin-bottom: 0.12rem;
  letter-spacing: -0.01em;
}

.hub-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.72rem, 1.8vw, 0.78rem);
  line-height: 1.4;
}

.hub-import-banner {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.hub-import-banner-inner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  min-height: clamp(200px, 28vw, 280px);
}

.hub-import-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hub-import-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 10, 18, 0.92) 0%,
    rgba(6, 10, 18, 0.78) 38%,
    rgba(6, 10, 18, 0.35) 68%,
    rgba(6, 10, 18, 0.15) 100%
  );
  pointer-events: none;
}

.hub-import-banner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  max-width: min(52ch, 92%);
  min-height: inherit;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem);
}

.hub-import-banner-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hub-import-banner-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  line-height: 1.15;
  color: #fff;
}

.hub-import-banner-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.88rem, 2.2vw, 0.98rem);
  line-height: 1.5;
  max-width: 46ch;
}

.hub-import-banner-btn {
  margin-top: 0.35rem;
  padding-inline: 1.35rem;
  box-shadow: 0 10px 28px rgba(10, 132, 255, 0.35);
}

body[data-theme="light"] .hub-import-banner-inner {
  border-color: rgba(10, 132, 255, 0.18);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

body[data-theme="light"] .hub-import-banner-shade {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.45) 72%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

body[data-theme="light"] .hub-import-banner-copy h2 {
  color: var(--text);
}

body[data-theme="light"] .hub-import-banner-lead {
  color: var(--muted);
}

.hub-footnote {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.hub-footnote a {
  color: var(--accent);
  text-decoration: none;
}

.hub-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

body[data-theme="light"].hub-page {
  background: #f4f7fb;
}

body[data-theme="light"] .hub-card {
  background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .hub-about-item {
  background: rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .hub-card-tags span {
  color: rgba(15, 23, 42, 0.72);
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .hub-trust {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(10, 132, 255, 0.12);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .hub-trust-item p {
  color: var(--muted);
}

body[data-theme="light"] .hub-lead {
  color: var(--muted);
}

body[data-theme="light"] .hub-title {
  color: #0f172a;
}

body[data-theme="light"] .hub-title-split .hub-char-inner {
  color: #0f172a;
}

/* Module placeholder pages (ropa / streaming) */
.module-page {
  min-height: 100vh;
  background: var(--ink);
}

.module-header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.module-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  justify-self: center;
}

.module-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.module-main {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--header) + 2rem) 1.25rem 3rem;
}

.module-hero {
  margin-bottom: 1.5rem;
}

.module-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
}

.module-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.module-pills span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.module-soon {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.module-soon h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.module-soon p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.module-fashion .module-eyebrow,
.module-fashion .module-breadcrumb a {
  color: #ff6b35;
}

.module-streaming .module-eyebrow,
.module-streaming .module-breadcrumb a {
  color: #22d3ee;
}

body[data-theme="light"].module-page {
  background: #f4f7fb;
}

body[data-theme="light"] .module-soon {
  background: #fff;
}

@media (max-width: 1100px) and (min-width: 641px) {
  .hub-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin: 0 auto;
  }

  .hub-card-streaming {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .hub-about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hub-about-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .hub-modules {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 1.25rem;
  }

  .hub-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hub-main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hub-import-banner-copy {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hub-import-banner-shade {
    background: linear-gradient(
      180deg,
      rgba(6, 10, 18, 0.88) 0%,
      rgba(6, 10, 18, 0.72) 55%,
      rgba(6, 10, 18, 0.45) 100%
    );
  }

  body[data-theme="light"] .hub-import-banner-shade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 55%,
      rgba(255, 255, 255, 0.45) 100%
    );
  }

  .module-header .header-inner,
  .module-header .header-inner--module {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .module-breadcrumb {
    order: 3;
    width: 100%;
    justify-self: start;
    margin-top: 0;
    padding-top: 0.15rem;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .hub-main {
    padding-top: calc(var(--header) + 1.5rem);
  }

  .hub-card {
    border-radius: 18px;
  }

  .hub-card-panel,
  .hub-card-content {
    padding: 0.9rem 0.95rem 1rem;
  }

  .hub-trust {
    grid-template-columns: 1fr;
  }

  .hub-stream-tile {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 0.8rem;
  }

  .module-actions {
    flex-direction: column;
  }

  .module-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== Gefory Fashion (inspirado Topitop) ========== */
.fashion-topitop {
  --tt-accent: #e31c25;
  --tt-ink: #111111;
  --tt-muted: #6b6b6f;
  --tt-line: #e8e8ed;
  --tt-surface: #ffffff;
  --tt-surface-soft: #f7f7f8;
}

body.fashion-topitop[data-theme="dark"] {
  --tt-ink: #f5f5f7;
  --tt-muted: #a1a1a6;
  --tt-line: #2c2c2e;
  --tt-surface: #141414;
  --tt-surface-soft: #1c1c1e;
}

.fashion-page.fashion-topitop {
  background: var(--tt-surface-soft);
  color: var(--tt-ink);
}

.fashion-promo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.25rem;
  padding: 0.55rem 1rem;
  background: var(--tt-ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.fashion-promo-bar--accent {
  color: #ffd60a;
}

body.fashion-topitop[data-theme="dark"] .fashion-promo-bar {
  background: #000;
}

body.fashion-topitop[data-theme="dark"] .fashion-promo-bar {
  background: #000;
}

.fashion-brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  background: var(--tt-surface);
  border-bottom: 1px solid var(--tt-line);
}

.fashion-brand-hero-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--tt-line);
  background: var(--tt-surface-soft);
  min-height: 320px;
}

.fashion-brand-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fashion-brand-hero-copy h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.fashion-brand-lead {
  margin: 0 0 1.1rem;
  color: var(--tt-muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  max-width: 46ch;
}

.fashion-brand-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.fashion-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--tt-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.fashion-hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--tt-line);
  background: var(--tt-surface-soft);
}

.fashion-origin {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  background: var(--tt-surface-soft);
  border-block: 1px solid var(--tt-line);
}

.fashion-origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fashion-origin-card {
  display: grid;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--tt-line);
  background: var(--tt-surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fashion-origin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.fashion-origin-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fashion-origin-copy {
  padding: 1rem 1rem 1.15rem;
}

.fashion-origin-copy h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.fashion-origin-copy p {
  margin: 0;
  color: var(--tt-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.fashion-origin-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--tt-accent, #e31c25);
  text-decoration: none;
}

.fashion-origin-link:hover {
  text-decoration: underline;
}

.fashion-perfumes-block {
  padding-top: 0.5rem;
}

.fashion-perfumes-lead {
  margin: 0 0 1.1rem;
  max-width: 52ch;
  color: var(--tt-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fashion-topitop .fashion-header.site-header {
  background: var(--tt-surface);
  border-bottom: 1px solid var(--tt-line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.fashion-topitop .fashion-header .logo-text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fashion-topitop .fashion-header .nav a {
  font-size: 0.88rem;
  font-weight: 600;
}

.fashion-shortcuts {
  display: block;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 2rem) 0.75rem;
  background: var(--tt-surface);
  border-bottom: 1px solid var(--tt-line);
  clear: both;
}

.fashion-shortcuts-track,
#fashion-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
}

.fashion-shortcuts-track::-webkit-scrollbar {
  display: none;
}

.fashion-shortcut {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--tt-line);
  background: var(--tt-surface-soft);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.fashion-shortcut:hover {
  border-color: color-mix(in srgb, var(--tt-accent) 40%, var(--tt-line));
  background: var(--tt-surface);
  transform: translateY(-2px);
}

.fashion-shortcut-emoji {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.fashion-shortcut-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fashion-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  clear: both;
  padding: 1rem clamp(1rem, 4vw, 2rem);
}

.fashion-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 280px;
  background: var(--tt-surface);
  border: 1px solid var(--tt-line);
}

.fashion-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fashion-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  min-height: 280px;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72) 100%);
  color: #fff;
}

.fashion-banner-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--banner-accent, #e31c25) 80%, #fff);
}

.fashion-banner-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.fashion-banner-copy p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.fashion-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.fashion-banner-actions .btn-primary {
  background: var(--banner-accent, var(--tt-accent));
  border-color: transparent;
  box-shadow: none;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

.fashion-banner-link {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fashion-sale-marquee {
  overflow: hidden;
  background: var(--tt-accent);
  color: #fff;
  padding: 0.65rem 0;
}

.fashion-sale-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: fashionMarquee 18s linear infinite;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes fashionMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fashion-picks,
.fashion-collections-block {
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fashion-picks-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.fashion-kicker {
  margin: 0 0 0.35rem;
  color: var(--tt-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fashion-picks-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.03em;
}

.fashion-link-all {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tt-ink);
  text-decoration: none;
}

.fashion-link-all:hover {
  color: var(--tt-accent);
}

.fashion-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fashion-tab {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--tt-line);
  background: var(--tt-surface);
  color: var(--tt-ink);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fashion-tab:hover,
.fashion-tab.active {
  background: var(--tt-ink);
  border-color: var(--tt-ink);
  color: #fff;
}

body.fashion-topitop[data-theme="dark"] .fashion-tab:hover,
body.fashion-topitop[data-theme="dark"] .fashion-tab.active {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.fashion-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tt-card {
  display: grid;
  gap: 0.65rem;
  background: var(--tt-surface);
  border: 1px solid var(--tt-line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tt-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.tt-card-link {
  display: grid;
  text-decoration: none;
  color: inherit;
}

.tt-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--tt-surface-soft);
  overflow: hidden;
}

.tt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.tt-discount {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  padding: 0.28rem 0.45rem;
  border-radius: 4px;
  background: var(--tt-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.tt-discount--soft {
  background: #111;
}

.tt-soldout {
  position: absolute;
  inset: auto 0.55rem 0.55rem 0.55rem;
  z-index: 2;
  padding: 0.35rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.tt-card-body {
  padding: 0 0.85rem;
  display: grid;
  gap: 0.3rem;
}

.tt-brand {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tt-muted);
}

.tt-card-body h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tt-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.tt-price-now {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tt-accent);
}

.tt-price-old {
  font-size: 0.82rem;
  color: var(--tt-muted);
  text-decoration: line-through;
}

.tt-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding-bottom: 0.15rem;
}

.tt-sizes span {
  min-width: 1.65rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid var(--tt-line);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  color: var(--tt-muted);
}

.tt-add-btn {
  margin: 0 0.85rem 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: var(--tt-ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.tt-add-btn:hover {
  background: var(--tt-accent);
}

.fashion-collections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.fashion-collection-card {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--tt-line);
  background: var(--tt-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.fashion-collection-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--cat-color, var(--tt-accent)) 50%, var(--tt-line));
}

.fashion-collection-emoji {
  font-size: 1.6rem;
}

.fashion-collection-card strong {
  font-size: 1rem;
  font-weight: 800;
}

.fashion-collection-card span:last-child {
  color: var(--tt-muted);
  font-size: 0.8rem;
}

.fashion-trust {
  margin: 2rem clamp(1rem, 4vw, 2rem) 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 12px;
  background: var(--tt-surface);
  border: 1px solid var(--tt-line);
}

.fashion-trust-inner {
  max-width: 52rem;
}

.fashion-trust h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.fashion-trust p {
  margin: 0 0 1rem;
  color: var(--tt-muted);
  line-height: 1.55;
}

.fashion-trust-steps {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--tt-muted);
  line-height: 1.6;
}

.fashion-trust-steps li {
  margin-bottom: 0.45rem;
}

/* Catálogo ropa con mismo estilo Topitop */
body.fashion-catalog-page.fashion-topitop,
body.fashion-catalog-page {
  background: var(--tt-surface-soft, var(--ink));
}

body.fashion-catalog-page .catalog-main {
  padding-inline: clamp(1rem, 4vw, 2rem);
}

body.fashion-catalog-page .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.fashion-catalog-page .product-grid .product {
  border-radius: 10px;
  border: 1px solid var(--tt-line, var(--line));
  background: var(--tt-surface, var(--card));
  overflow: hidden;
}

body.fashion-catalog-page .product-grid .product .btn {
  margin: 0 0.85rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.fashion-catalog-page .catalog-tab.active {
  background: var(--tt-ink, var(--text));
  color: #fff;
}

@media (max-width: 1100px) {
  .fashion-product-grid,
  body.fashion-catalog-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .fashion-brand-hero {
    grid-template-columns: 1fr;
  }

  .fashion-brand-hero-media {
    order: -1;
  }

  .fashion-origin-grid {
    grid-template-columns: 1fr;
  }

  .fashion-shortcuts-track,
  #fashion-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fashion-banners {
    grid-template-columns: 1fr;
  }

  .fashion-product-grid,
  body.fashion-catalog-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fashion-collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .fashion-shortcuts-track,
  #fashion-shortcuts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.55rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .fashion-shortcut {
    flex: 0 0 auto;
    min-width: 8.5rem;
    width: auto;
  }

  .fashion-product-grid,
  body.fashion-catalog-page .product-grid,
  .fashion-collections {
    grid-template-columns: 1fr;
  }
}

/* Catalog enter — evita flash antes de GSAP */
body.catalog-enter-pending .catalog-hero,
body.catalog-enter-pending #catalog-tabs,
body.catalog-enter-pending .catalog-section,
body.catalog-enter-pending .product,
body.catalog-enter-pending .tt-card,
body.catalog-enter-pending .stream-card {
  opacity: 0;
  visibility: hidden;
}

/* ── Streaming module ── */
.streaming-page {
  --stream-accent: #22d3ee;
  --stream-accent-deep: #0a84ff;
  --stream-bg: #060d16;
  --stream-surface: rgba(255, 255, 255, 0.055);
  --stream-surface-2: rgba(255, 255, 255, 0.09);
  --stream-line: rgba(34, 211, 238, 0.14);
  --stream-muted: #9cb8d4;
  background: var(--stream-bg);
}

body.streaming-page:not([data-theme="light"]) {
  --surface: var(--stream-surface);
  --surface-2: var(--stream-surface-2);
  --line: var(--stream-line);
  --muted: var(--stream-muted);
}

body[data-theme="light"].streaming-page {
  --stream-bg: #f0f7fc;
  --stream-surface: rgba(255, 255, 255, 0.94);
  --stream-surface-2: #ffffff;
  --stream-line: rgba(10, 132, 255, 0.16);
  --stream-muted: #5f6b7a;
  background: var(--stream-bg);
}

.stream-promo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.16), rgba(10, 132, 255, 0.14));
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
  font-size: 0.82rem;
}

.stream-promo-bar--accent { color: var(--stream-accent); font-weight: 700; }

.stream-header .logo-text {
  background: linear-gradient(135deg, #22d3ee, #0a84ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stream-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 2.75rem);
  overflow: hidden;
}

.stream-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.stream-hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 420px;
  background: radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.28), rgba(10, 132, 255, 0.08) 42%, transparent 68%);
  pointer-events: none;
}

.stream-hero-copy {
  position: relative;
  max-width: 560px;
  text-align: left;
}

.stream-hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: #060d16;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(34, 211, 238, 0.1);
  min-height: 300px;
}

.stream-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 13, 22, 0.08), rgba(10, 132, 255, 0.12));
  pointer-events: none;
}

.stream-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stream-kicker {
  margin: 0 0 0.5rem;
  color: var(--stream-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stream-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.stream-lead {
  margin: 0 0 1.25rem;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.55;
}

.stream-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.stream-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.stream-shortcuts-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(6, 13, 22, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stream-shortcuts-kicker {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stream-accent);
}

body[data-theme="light"].streaming-page .stream-shortcuts-wrap {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 132, 255, 0.14);
}

.stream-shortcuts-track:not(.stream-shortcuts-track--marquee) {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.stream-shortcuts-carousel {
  position: relative;
  overflow: hidden;
}

.stream-shortcuts-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.stream-shortcuts-track {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  width: max-content;
}

.stream-shortcuts-track--marquee {
  animation: streamShortcutsMarquee var(--marquee-duration, 36s) linear infinite;
  will-change: transform;
}

.stream-shortcuts-track--marquee:hover {
  animation-play-state: paused;
}

@keyframes streamShortcutsMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.stream-shortcut {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 0 0 108px;
  width: 108px;
  min-height: 106px;
  padding: 0.9rem 0.55rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

.stream-shortcut::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stream-accent, #22d3ee);
  opacity: 0.9;
}

.stream-shortcut:hover,
.stream-shortcut:focus-visible {
  border-color: color-mix(in srgb, var(--stream-accent, #22d3ee) 42%, rgba(255, 255, 255, 0.14));
  background: color-mix(in srgb, var(--stream-accent, #22d3ee) 10%, rgba(255, 255, 255, 0.06));
  box-shadow:
    0 12px 30px color-mix(in srgb, var(--stream-accent, #22d3ee) 18%, transparent),
    0 8px 24px rgba(0, 0, 0, 0.2);
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .stream-shortcut:hover,
  .stream-shortcut:focus-visible {
    transform: translateY(-3px);
  }
}

.stream-shortcut-logo,
.stream-platform-logo {
  display: block;
  object-fit: contain;
}

.stream-platform-logo--photo {
  filter: none !important;
  opacity: 1;
  border-radius: 10px;
}

.stream-shortcut-logo {
  width: 2.35rem;
  height: 2.35rem;
}

.stream-shortcut .stream-platform-logo--photo {
  width: 2.5rem;
  height: 2.5rem;
}

.stream-platform-emoji {
  font-size: 1.55rem;
  line-height: 1;
}

body.streaming-page:not([data-theme="light"]) .stream-shortcut-logo:not(.stream-platform-logo--photo),
body.streaming-page:not([data-theme="light"]) .stream-platform-logo:not(.stream-platform-logo--photo):not(.stream-product-banner),
body.streaming-catalog-page:not([data-theme="light"]) .stream-platform-logo:not(.stream-platform-logo--photo):not(.stream-product-banner) {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.stream-card-media .stream-platform-logo,
.stream-card-media .stream-product-banner {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.stream-card-media .stream-platform-logo--photo,
.stream-card-media .stream-product-banner {
  max-width: 78%;
  max-height: 78%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.stream-product-banner {
  border-radius: 12px;
  object-fit: contain;
}

.stream-collection-logo {
  grid-row: 1 / span 2;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.stream-collection-logo.stream-platform-logo--photo {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 10px;
}

body.streaming-page:not([data-theme="light"]) .stream-collection-logo:not(.stream-platform-logo--photo) {
  filter: brightness(0) invert(1);
}

.catalog-tab-logo {
  width: 1.05rem;
  height: 1.05rem;
  object-fit: contain;
  flex-shrink: 0;
}

.catalog-tab-logo.stream-platform-logo--photo {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
}

body.streaming-catalog-page:not([data-theme="light"]) .catalog-tab-logo:not(.stream-platform-logo--photo):not(.catalog-tab-emoji):not(.stream-platform-emoji) {
  filter: brightness(0) invert(1);
}

.stream-shortcut-label {
  width: 100%;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
  text-wrap: balance;
}

body[data-theme="light"] .stream-shortcut {
  border-color: rgba(10, 132, 255, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(10, 132, 255, 0.08);
}

body[data-theme="light"] .stream-shortcut:hover,
body[data-theme="light"] .stream-shortcut:focus-visible {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 132, 255, 0.12);
}

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

  .stream-hero-media {
    order: -1;
    min-height: 240px;
  }

  .stream-hero-media img {
    min-height: 240px;
  }

  .stream-hero-copy {
    text-align: center;
    max-width: none;
    margin: 0 auto;
  }

  .stream-hero-cta,
  .stream-hero-badges {
    justify-content: center;
  }

  .stream-lead {
    margin-inline: auto;
  }

  .stream-shortcut {
    flex-basis: 96px;
    width: 96px;
    min-height: 98px;
    padding: 0.8rem 0.45rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stream-shortcuts-track--marquee {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .stream-shortcuts-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.stream-picks-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.stream-link-all {
  color: var(--stream-accent);
  font-weight: 700;
  text-decoration: none;
}

.stream-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stream-tab {
  border: 1px solid var(--stream-line, var(--line));
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: var(--stream-surface, var(--surface));
  color: var(--text);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.stream-tab.active,
.stream-tab:hover {
  border-color: color-mix(in srgb, var(--stream-accent) 45%, transparent);
  background: color-mix(in srgb, var(--stream-accent) 14%, var(--stream-surface, var(--surface)));
  transform: translateY(-1px);
}

.stream-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: stretch;
  gap: 1rem;
  padding: 0 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stream-card,
body.streaming-catalog-page .stream-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: transform 0.2s, border-color 0.2s;
}

.stream-card:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.35); }

.stream-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.stream-card-media,
.stream-card-media.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
  margin-bottom: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.85rem;
  flex-shrink: 0;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--platform-color, #22d3ee) 58%, #0f1a2e),
    color-mix(in srgb, var(--platform-color, #22d3ee) 22%, #0a121c)
  );
  overflow: hidden;
}

.stream-card-brand {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.stream-card-emoji { font-size: 2.8rem; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); }

.stream-card-media .stream-platform-emoji {
  font-size: clamp(2.6rem, 9vw, 3.4rem);
  line-height: 1;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.stream-discount {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #ff453a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.stream-discount--soft { background: rgba(255, 255, 255, 0.18); }

.stream-soldout {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-weight: 800;
}

.stream-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.stream-card-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.stream-card-body p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.stream-prices { display: flex; align-items: baseline; gap: 0.45rem; margin-top: auto; padding-top: 0.35rem; }
.stream-prices .now { font-size: 1.15rem; font-weight: 800; }
.stream-prices .old { color: var(--muted); text-decoration: line-through; font-size: 0.86rem; }

.stream-buy-btn { text-align: center; margin-top: auto; }

.stream-collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stream-collection-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.2rem;
  align-items: center;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.stream-collection-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--stream-accent, #22d3ee);
}

.stream-collection-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--stream-accent, #22d3ee) 38%, rgba(255, 255, 255, 0.12));
  background: color-mix(in srgb, var(--stream-accent, #22d3ee) 8%, rgba(255, 255, 255, 0.06));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.stream-collection-emoji {
  grid-row: 1 / span 2;
  font-size: 1.75rem;
  line-height: 1;
}

.stream-collection-logo {
  grid-row: 1 / span 2;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.stream-collection-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.stream-collection-card span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

body[data-theme="light"] .stream-collection-card {
  border-color: rgba(10, 132, 255, 0.14);
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 900px) {
  .stream-collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .stream-collections {
    grid-template-columns: 1fr;
  }
}

.stream-trust {
  padding: 2rem 1rem 3rem;
}

.stream-trust-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  text-align: center;
}

.stream-trust-steps {
  text-align: left;
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-tabs-panel {
  margin-top: 0.25rem;
}

.catalog-tabs-kicker {
  display: none;
}

body.streaming-catalog-page .catalog-hero {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(34, 211, 238, 0.14);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(10, 132, 255, 0.03) 45%, rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

body.streaming-catalog-page .catalog-breadcrumb a {
  color: var(--stream-accent);
}

body.streaming-catalog-page .catalog-hero .eyebrow {
  color: var(--stream-accent);
}

body.streaming-catalog-page .catalog-hero-title-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

body.streaming-catalog-page .catalog-hero-logo {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  object-fit: contain;
}

body.streaming-catalog-page .catalog-tabs-panel {
  margin-top: 1.35rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(6, 13, 22, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.streaming-catalog-page .catalog-tabs-kicker {
  display: block;
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stream-accent);
}

body.streaming-catalog-page .catalog-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.35rem, 1fr));
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  overflow: visible;
}

body.streaming-catalog-page .catalog-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 5.35rem;
  aspect-ratio: 1;
  padding: 0.5rem 0.35rem;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  line-height: 1.2;
  flex: none;
  transform: none;
  will-change: auto;
}

body.streaming-catalog-page .catalog-tab-logo,
body.streaming-catalog-page .catalog-tab-emoji {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

body.streaming-catalog-page .catalog-tab-label,
body.streaming-catalog-page .catalog-tab span:last-child {
  width: 100%;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}

body.streaming-catalog-page .catalog-tab.catalog-tab--text {
  flex-direction: column;
  min-width: 0;
  padding: 0.5rem 0.35rem;
  border-radius: 14px;
}

@media (hover: hover) and (pointer: fine) {
  body.streaming-catalog-page .catalog-tab:hover,
  body.streaming-catalog-page .catalog-tab.active {
    border-color: var(--tab-color, var(--stream-accent));
    background: rgba(34, 211, 238, 0.12);
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.12);
    transform: translateY(-2px);
  }
}

body.streaming-catalog-page .catalog-tab.active {
  border-color: var(--tab-color, var(--stream-accent));
  background: rgba(34, 211, 238, 0.12);
}

body.streaming-catalog-page .catalog-tab-logo.stream-platform-logo--photo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  object-fit: contain;
}

body.streaming-catalog-page .catalog-toolbar .catalog-head {
  display: none;
}

body.streaming-catalog-page .catalog-toolbar {
  margin-bottom: 0.85rem;
  justify-content: flex-end;
}

body[data-theme="light"].streaming-catalog-page .catalog-hero {
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(10, 132, 255, 0.14);
}

body[data-theme="light"].streaming-catalog-page .catalog-tabs-panel {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 132, 255, 0.14);
}

@media (max-width: 640px) {
  .stream-product-grid,
  body.streaming-catalog-page .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  body.streaming-catalog-page .catalog-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }

  body.streaming-catalog-page .catalog-tab {
    min-height: 4.85rem;
    padding: 0.45rem 0.25rem;
  }

  body.streaming-catalog-page .catalog-tab-logo,
  body.streaming-catalog-page .catalog-tab-emoji,
  body.streaming-catalog-page .catalog-tab-logo.stream-platform-logo--photo {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }

  body.streaming-catalog-page .catalog-tab-label,
  body.streaming-catalog-page .catalog-tab span:last-child {
    font-size: 0.58rem;
  }
}

@media (max-width: 420px) {
  .stream-product-grid,
  body.streaming-catalog-page .product-grid {
    grid-template-columns: 1fr;
  }
}

