/* ═══════════════════════════════════════════════════════════
   SergioShop — tienda pública
   Paleta tomada del logo: azul marino, azul eléctrico y naranja
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy: #1c1c1e;
  --navy-2: #141416;
  --ink: #0a0a0b;
  --blue: #3a3a3d;
  --sky: #f0f0f1;
  --orange: #ff7a00;
  --orange-2: #f25c05;
  --amber: #ffb000;
  --green: #0a9d58;
  --red: #e5383b;
  --bg: #f4f4f5;
  --card: #ffffff;
  --line: #e2e2e4;
  --text: #131314;
  --muted: #6c6c70;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 6px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, .22);
  --glow: 0 0 28px rgba(255, 122, 0, .35);
  --glow-amber: 0 0 24px rgba(255, 176, 0, .35);
  --grad: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  --grad-o: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  --hh: 150px;   /* alto real del header — lo corrige app.js */
  --fh: 96px;    /* alto real del footer — lo corrige app.js */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Poppins', var(--font);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--text); background: var(--bg);
  font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased;
  padding-top: var(--hh); padding-bottom: var(--fh); overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.02em; line-height: 1.15; margin: 0 0 .4em; }
.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: #fff; padding: 10px 14px; }
.skip:focus { left: 10px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }
[hidden] { display: none !important; }
main { display: block; min-height: 50vh; }
main:focus { outline: none; }

/* ─── Botones ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; font-size: 14px; transition: transform .15s, box-shadow .2s, filter .2s, background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-orange { background: var(--grad-o); color: #fff; box-shadow: 0 6px 18px rgba(255, 122, 0, .35); }
.btn-orange:hover:not(:disabled) { filter: brightness(1.05); box-shadow: 0 10px 26px rgba(255, 122, 0, .45); }
.btn-blue { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(0, 0, 0, .3); }
.btn-blue:hover { filter: brightness(1.08); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-lg { min-height: 54px; padding: 14px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.icon-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 0; background: transparent; cursor: pointer; position: relative; color: var(--navy); }
.icon-btn:hover { background: var(--sky); }
.badge {
  position: absolute; top: 2px; right: 0; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px;
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; line-height: 19px; text-align: center;
  box-shadow: 0 0 0 2px #fff;
}
.badge.bump { animation: bump .45s; }
@keyframes bump { 30% { transform: scale(1.45); } 60% { transform: scale(.9); } }

/* ═══ HEADER FIJO ═══ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; background: #fff; box-shadow: 0 2px 18px rgba(0, 0, 0, .08); }
.announce { background: var(--grad); color: #fff; font-size: 12.5px; font-weight: 600; overflow: hidden; white-space: nowrap; height: 30px; display: flex; align-items: center; }
.announce-track { display: inline-flex; gap: 90px; padding-left: 100%; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }
.hdr-main { border-bottom: 1px solid var(--line); }
.hdr-row { display: flex; align-items: center; gap: 14px; height: 70px; }
.brand img { height: 44px; width: auto; transition: transform .25s; }
.brand:hover img { transform: scale(1.03); }
.menu-btn { display: none; }
.search { flex: 1; display: flex; position: relative; height: 48px; border-radius: 14px; background: #fff; border: 2px solid var(--navy); box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); transition: box-shadow .2s, border-color .2s; }
.search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 0, .18); }
.search select { border: 0; background: var(--sky); color: var(--navy); font-weight: 700; font-size: 13px; padding: 0 10px; border-radius: 12px 0 0 12px; max-width: 150px; cursor: pointer; outline: none; }
.search input { flex: 1; min-width: 0; border: 0; padding: 0 14px; outline: none; font-size: 15px; background: transparent; }
.search button { width: 58px; border: 0; background: var(--grad-o); color: #fff; border-radius: 0 11px 11px 0; cursor: pointer; display: grid; place-items: center; }
.search button svg { width: 22px; height: 22px; stroke-width: 2.4; }
.suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; z-index: 5; border: 1px solid var(--line); }
.suggest a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.suggest a:hover, .suggest a.on { background: var(--sky); }
.suggest img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: #fff; }
.suggest b { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.suggest small { color: var(--orange-2); font-weight: 800; }
.suggest .all { justify-content: center; font-weight: 700; color: var(--navy); font-size: 13px; }
.hdr-actions { display: flex; align-items: center; gap: 6px; }
.hdr-link { display: flex; flex-direction: column; line-height: 1.15; padding: 6px 10px; border-radius: 12px; }
.hdr-link:hover { background: var(--sky); }
.hdr-link small { font-size: 11px; color: var(--muted); }
.hdr-link b { font-size: 14px; color: var(--navy); }
.cart-btn { position: relative; display: flex; align-items: center; gap: 8px; height: 48px; padding: 0 18px 0 14px; border-radius: 14px; border: 0; background: var(--grad); color: #fff; font-weight: 800; cursor: pointer; box-shadow: 0 6px 18px rgba(0, 0, 0, .28); }
.cart-btn:hover { filter: brightness(1.1); }
.cart-btn svg { width: 24px; height: 24px; }
.cart-btn .badge { top: -6px; right: -6px; }
.fav-link.has svg { fill: var(--red); stroke: var(--red); }

.hdr-cats { background: #fff; border-top: 1px solid var(--line); }
.cats-row { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; height: 40px; align-items: stretch; max-width: none; -webkit-mask: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); mask: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); }
.cats-row a:first-child { margin-left: auto; }
.cats-row a:last-child { margin-right: auto; }
.cats-row::-webkit-scrollbar { display: none; }
.cats-row a { flex-shrink: 0; display: flex; align-items: center; padding: 0 14px; font-size: 13px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap; }
.cats-row a:hover { color: var(--navy); }
.cats-row a.on { color: var(--navy); font-weight: 700; border-bottom-color: var(--orange); }
.cats-row a.hot { color: var(--orange-2); font-weight: 600; }
.cats-row a.hot.on { color: var(--orange-2); }

/* Menú móvil */
.mobile-menu { position: fixed; inset: 0; z-index: 345; background: rgba(0, 0, 0, .55); backdrop-filter: blur(3px); }
.mm-panel { position: absolute; inset: 0 auto 0 0; width: min(330px, 86vw); background: #fff; overflow-y: auto; padding: 14px 10px 30px; animation: slideL .3s ease; }
@keyframes slideL { from { transform: translateX(-100%); } }
.mm-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 6px 12px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.mm-panel a { display: flex; justify-content: space-between; padding: 12px 12px; border-radius: 12px; font-weight: 600; }
.mm-panel a:hover { background: var(--sky); }
.mm-panel a small { color: var(--muted); }
.mm-title { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--muted); margin: 14px 12px 4px; }

/* ═══ FOOTER FIJO ═══ */
.site-footer { position: fixed; inset: auto 0 0 0; z-index: 100; background: #fff; box-shadow: 0 -2px 18px rgba(0, 0, 0, .08); padding-bottom: env(safe-area-inset-bottom, 0); }
.tabbar { display: none; }
.copy { background: var(--ink); color: #b9c3e6; font-size: 11.5px; letter-spacing: .01em; }
.copy-row { display: flex; justify-content: center; align-items: center; height: 30px; text-align: center; }
.copy b { color: #fff; }
.copy .pixobra { color: var(--orange); letter-spacing: .08em; font-weight: 900; }
.copy-links { display: flex; gap: 18px; }
.copy-links a:hover { color: #fff; }

.wa-float { position: fixed; right: 18px; bottom: calc(var(--fh) + 18px); z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, .45); animation: pulse 2.6s infinite; }
.wa-float svg { width: 32px; height: 32px; stroke: none; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5), 0 10px 28px rgba(37, 211, 102, .45); } 50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 28px rgba(37, 211, 102, .45); } }

/* ═══ HERO con paralaje ═══ */
.hero { position: relative; height: calc(100vh - var(--hh) - var(--fh) - var(--ah, 0px)); height: calc(100svh - var(--hh) - var(--fh) - var(--ah, 0px)); min-height: 420px; overflow: hidden; background: var(--ink); color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s; }
.hero-slide.on { opacity: 1; visibility: visible; }
.hero-bg { position: absolute; inset: -12% 0; background-size: cover; background-position: center; will-change: transform; transform: translate3d(0, var(--py, 0px), 0) scale(1.08); }
.hero-slide.on .hero-bg { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { scale: 1; } to { scale: 1.08; } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 10, 11, .92) 0%, rgba(28, 28, 30, .72) 42%, rgba(255, 122, 0, .12) 75%, transparent 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-bottom: 40px; }
.hero-content > * { max-width: 620px; }
.hero .eyebrow { opacity: 0; transform: translateY(20px); }
.hero h1 { font-size: clamp(36px, 6.4vw, 72px); font-weight: 900; margin: 12px 0 14px; opacity: 0; transform: translateY(30px); text-shadow: 0 4px 30px rgba(0, 0, 0, .25); }
.hero h1 em { font-style: normal; background: var(--grad-o); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(16px, 1.6vw, 19px); color: #d4d4d6; margin: 0 0 26px; opacity: 0; transform: translateY(30px); }
.hero .hero-ctas { opacity: 0; transform: translateY(30px); display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slide.on .eyebrow, .hero-slide.on h1, .hero-slide.on p, .hero-slide.on .hero-ctas { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1); }
.hero-slide.on h1 { transition-delay: .15s; }
.hero-slide.on p { transition-delay: .3s; }
.hero-slide.on .hero-ctas { transition-delay: .45s; }
.hero-nav { position: absolute; z-index: 3; bottom: 36px; right: max(16px, calc((100vw - 1320px) / 2 + 16px)); display: flex; gap: 10px; align-items: center; }
.hero-dots { display: flex; gap: 8px; margin-right: 8px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 10px; border: 0; background: rgba(255, 255, 255, .45); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.hero-dots button.on { width: 32px; background: var(--orange); }
.hero-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(6px); }
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 122, 0, .18); color: #ffb870; font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; border: 1px solid rgba(255, 122, 0, .4); }
.floaty { position: absolute; z-index: 1; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; }

/* Categorías que se intersectan con el hero */
.cat-strip { position: relative; z-index: 5; margin-top: 30px; }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat-tile { position: relative; background: #fff; border-radius: 16px; padding: 14px 10px 12px; text-align: center; box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s; overflow: hidden; }
.cat-tile::before { content: ''; position: absolute; inset: auto -30% -60% -30%; height: 90%; background: radial-gradient(circle, rgba(255, 122, 0, .16), transparent 70%); transition: transform .4s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, .12); }
.cat-tile:hover::before { transform: translateY(-30%); }
.cat-ico { position: relative; width: 58px; height: 58px; margin: 0 auto 8px; border-radius: 16px; display: grid; place-items: center; font-size: 34px; background: linear-gradient(135deg, var(--sky), #fff2e5); }
.cat-ico { overflow: hidden; }
.cat-ico img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 7px; mix-blend-mode: multiply; }
.cat-tile b { position: relative; display: block; font-size: 12.5px; font-weight: 700; line-height: 1.25; }
.cat-tile small { position: relative; color: var(--muted); font-size: 12px; }

/* Barra de confianza */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px auto 0; }
.trust div { display: flex; gap: 10px; align-items: center; background: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow); }
.trust i { font-style: normal; font-size: 19px; width: 38px; height: 38px; border-radius: 14px; display: grid; place-items: center; background: var(--sky); flex-shrink: 0; }
.trust b { display: block; font-size: 13px; }
.trust small { color: var(--muted); font-size: 11.5px; }

/* ═══ Secciones ═══ */
.section { padding: 30px 0; position: relative; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(20px, 2vw, 26px); font-weight: 800; margin: 0; }
.sec-head h2 span { color: var(--orange); }
.sec-head p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.sec-head .more { font-weight: 700; font-size: 13px; color: var(--navy); display: inline-flex; gap: 6px; align-items: center; padding: 7px 13px; border-radius: 999px; background: #fff; box-shadow: var(--shadow); }
.sec-head .more:hover { background: var(--navy); color: #fff; }

/* Ofertas del día */
.deals { background: var(--grad); color: #fff; border-radius: 22px; padding: 22px; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, .25); }
.deals::before, .deals::after { content: ''; position: absolute; border-radius: 50%; }
.deals::before { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255, 122, 0, .45), transparent 65%); top: -200px; right: -120px; }
.deals::after { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 65%); bottom: -160px; left: -60px; }
.deals .sec-head { position: relative; z-index: 1; }
.deals .sec-head p { color: #cfdcff; }
.deals .sec-head .more { background: rgba(255, 255, 255, .15); color: #fff; box-shadow: none; }
.countdown { display: flex; gap: 8px; align-items: center; font-weight: 700; }
.countdown span { background: #fff; color: var(--navy); min-width: 46px; padding: 5px 7px; border-radius: 10px; text-align: center; font-family: var(--display); font-size: 18px; line-height: 1.1; }
.countdown span small { display: block; font-family: var(--font); font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.rail { position: relative; z-index: 1; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 200px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 14px; scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }

/* Tarjeta de producto */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.pcard { position: relative; display: flex; flex-direction: column; background: var(--card); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s; color: var(--text); }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0, 0, 0, .12); }
.pcard-img { position: relative; aspect-ratio: 1; background: #fff; display: grid; place-items: center; padding: 14px; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s cubic-bezier(.2, .8, .2, 1); }
.pcard:hover .pcard-img img { transform: scale(1.08); }
.tag { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 800; color: #fff; }
.tag-off { background: var(--red); }
.tag-new { background: var(--green); }
.tag-out { background: #6b7280; }
.fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); box-shadow: 0 2px 10px rgba(0, 0, 0, .1); display: grid; place-items: center; cursor: pointer; color: var(--muted); transition: transform .2s; }
.fav svg { width: 19px; height: 19px; }
.fav:hover { transform: scale(1.12); color: var(--red); }
.fav.on { color: var(--red); }
.fav.on svg { fill: var(--red); }
.pcard-body { padding: 4px 14px 14px; display: flex; flex-direction: column; flex: 1; gap: 4px; border-top: 1px solid var(--line); padding-top: 12px; }
.pcard-brand { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--blue); }
.pcard h3 { font-family: var(--font); font-size: 13.5px; font-weight: 600; line-height: 1.35; letter-spacing: 0; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.pcard h3 a:hover { color: var(--blue); }
.pcard-rate { display: flex; align-items: center; gap: 6px; }
.pcard-rate small { color: var(--blue); font-size: 12px; }
.price { display: flex; align-items: flex-start; gap: 1px; color: var(--text); margin-top: 4px; flex-wrap: wrap; }
.price sup { font-size: 13px; font-weight: 700; margin-top: 4px; }
.price b { font-family: var(--display); font-size: 22px; font-weight: 800; line-height: 1; }
.price s { color: var(--muted); font-size: 13px; margin: 8px 0 0 8px; }
.bs { color: var(--muted); font-size: 12px; }
.ship-free { color: var(--green); font-weight: 700; font-size: 12px; }
.sold { color: var(--muted); font-size: 12px; }
.add-btn { margin-top: auto; min-height: 38px; font-size: 13px; padding: 8px 14px; }
.pcard-body .add-btn { margin-top: 10px; }
.stars { --c: var(--amber); display: inline-flex; gap: 1px; }
.stars i { width: 16px; height: 16px; background: linear-gradient(90deg, var(--c) var(--f), #d6dbe8 var(--f)); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 6.9 7.5.7-5.7 5 1.7 7.4L12 18.2 5.5 22l1.7-7.4-5.7-5L9 8.9z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3 6.9 7.5.7-5.7 5 1.7 7.4L12 18.2 5.5 22l1.7-7.4-5.7-5L9 8.9z'/%3E%3C/svg%3E") center/contain no-repeat; }
.stars-sm i { width: 13px; height: 13px; }

/* ═══ Bandas de PARALAJE con bordes diagonales (intersección) ═══ */
.px-band { position: relative; min-height: 340px; display: flex; align-items: center; overflow: hidden; color: #fff; margin: 30px 0; clip-path: polygon(0 9%, 100% 0, 100% 91%, 0 100%); }
.px-band.alt { clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 91%); }
.px-bg { position: absolute; inset: -30% 0; background-size: cover; background-position: center; will-change: transform; transform: translate3d(0, var(--py, 0px), 0); }
.px-shade { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .65) 55%, rgba(255, 122, 0, .35)); }
.px-band.alt .px-shade { background: linear-gradient(240deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .6) 55%, rgba(255, 122, 0, .4)); }
.px-content { position: relative; z-index: 1; padding-top: 50px; padding-bottom: 50px; }
.px-band.alt .px-content { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.px-content h2 { font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; margin: 12px 0 8px; max-width: 640px; }
.px-content p { font-size: 16px; color: #d4d4d6; max-width: 520px; margin: 0 0 20px; }

/* Promos lado a lado */
.promo-duo { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; }
.promo { position: relative; border-radius: 20px; overflow: hidden; min-height: 220px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; box-shadow: var(--shadow-lg); isolation: isolate; }
.promo img { position: absolute; right: 6%; top: 50%; width: min(36%, 180px); aspect-ratio: 1; object-fit: contain; z-index: -1; background: #fff; border-radius: 28px; padding: 16px; transform: translateY(-50%) rotate(6deg); transition: transform .6s cubic-bezier(.2, .8, .2, 1); box-shadow: 0 24px 50px rgba(0, 0, 0, .35); }
.promo:hover img { transform: translateY(-50%) rotate(-2deg) scale(1.06); }
.promo.p1 { background: radial-gradient(circle at 80% 30%, #3b7bff, var(--navy) 60%, var(--ink)); }
.promo.p2 { background: radial-gradient(circle at 80% 30%, var(--amber), var(--orange) 55%, var(--orange-2)); }
.promo h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 800; max-width: 55%; margin: 8px 0; }
.promo p { max-width: 50%; margin: 0 0 16px; opacity: .9; }
.promo .btn { align-self: flex-start; background: #fff; color: var(--navy); }
.promo .chip { align-self: flex-start; background: rgba(255, 255, 255, .2); padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* ═══ Información (antes del footer) ═══ */
.site-info { background: var(--ink); color: #b9c3e6; margin-top: 60px; position: relative; }
.site-info::before { content: ''; position: absolute; left: 0; right: 0; top: -59px; height: 60px; background: var(--ink); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.newsletter { background: var(--grad-o); color: #fff; }
.nl-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; padding-bottom: 28px; flex-wrap: wrap; }
.nl-row h2 { margin: 0; font-size: 24px; }
.nl-row p { margin: 4px 0 0; opacity: .92; }
.nl-form { display: flex; gap: 8px; flex: 1; max-width: 460px; min-width: 260px; }
.nl-form input { flex: 1; min-width: 0; height: 50px; border: 0; border-radius: 999px; padding: 0 20px; outline: none; color: var(--text); }
.nl-form .btn { background: var(--ink); box-shadow: none; height: 50px; }
.info-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-top: 44px; padding-bottom: 30px; }
.info-grid h3 { color: #fff; font-size: 15px; margin-bottom: 12px; font-family: var(--font); font-weight: 800; }
.info-grid a { display: block; padding: 4px 0; font-size: 14px; }
.info-grid a:hover { color: var(--orange); }
.info-brand img { background: #fff; border-radius: 16px; padding: 10px 14px; margin-bottom: 12px; }
.socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.socials a { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); font-size: 13px; }
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding-top: 16px; padding-bottom: 26px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13px; }
.pay-chip { background: rgba(255, 255, 255, .08); border-radius: 8px; padding: 5px 10px; color: #d4d4d6; }

/* ═══ Carrito lateral ═══ */
.drawer { position: fixed; inset: 0; z-index: 350; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .3s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(430px, 100%); background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s cubic-bezier(.2, .8, .2, 1); box-shadow: var(--shadow-lg); }
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; font-size: 20px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.drawer-foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0)); border-top: 1px solid var(--line); background: #fbfcff; }
.ship-meter { background: var(--sky); border-radius: 14px; padding: 10px 14px; font-size: 13px; margin: 10px 0; }
.ship-meter .bar { height: 8px; border-radius: 8px; background: #fff; margin-top: 8px; overflow: hidden; }
.ship-meter .bar i { display: block; height: 100%; background: var(--grad-o); border-radius: 8px; transition: width .5s; }
.cline { display: grid; grid-template-columns: 74px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cline img { width: 74px; height: 74px; object-fit: contain; background: #fff; border-radius: 12px; border: 1px solid var(--line); padding: 4px; }
.cline b { font-size: 13.5px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cline .lp { font-weight: 800; color: var(--text); margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.qty button { width: 32px; height: 32px; border: 0; background: #fff; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--navy); }
.qty button:hover { background: var(--sky); }
.qty span, .qty input { width: 36px; text-align: center; font-weight: 700; border: 0; font-size: 14px; outline: none; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.rm { border: 0; background: none; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 8px; align-self: start; }
.rm:hover { color: var(--red); background: #fdecec; }
.rm svg { width: 18px; height: 18px; }
.tot-row { display: flex; justify-content: space-between; padding: 3px 0; font-size: 14px; }
.tot-row.big { font-size: 20px; font-weight: 800; padding-top: 8px; font-family: var(--display); }
.tot-row.disc { color: var(--green); font-weight: 700; }
.empty { text-align: center; padding: 50px 10px; color: var(--muted); }
.empty .big { font-size: 64px; }

.toast { position: fixed; left: 50%; bottom: calc(var(--fh) + 20px); transform: translate(-50%, 30px); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 14px; font-weight: 600; font-size: 14px; opacity: 0; pointer-events: none; transition: .35s cubic-bezier(.2, .8, .2, 1); z-index: 400; box-shadow: var(--shadow-lg); display: flex; gap: 10px; align-items: center; max-width: calc(100vw - 32px); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast a { color: var(--orange); font-weight: 800; }

/* ═══ Tienda / catálogo ═══ */
.page-hero { position: relative; overflow: hidden; background: var(--grad); color: #fff; padding: 38px 0 70px; clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%); }
.page-hero .px-bg { opacity: .22; inset: -40% 0; }
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin: 0; }
.page-hero p { color: #d4d4d6; margin: 6px 0 0; }
.crumbs { font-size: 13px; color: #cfdcff; margin-bottom: 8px; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.shop { display: grid; grid-template-columns: 260px 1fr; gap: 24px; margin-top: -30px; position: relative; z-index: 2; }
.filters { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); align-self: start; position: sticky; top: calc(var(--hh) + 16px); max-height: calc(100vh - var(--hh) - var(--fh) - 32px); overflow-y: auto; }
.filters h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font); font-weight: 800; color: var(--muted); margin: 18px 0 8px; }
.filters h3:first-child { margin-top: 0; }
.filters a.f { display: flex; justify-content: space-between; padding: 7px 10px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.filters a.f:hover { background: var(--sky); }
.filters a.f.on { background: var(--navy); color: #fff; font-weight: 700; }
.filters a.f small { opacity: .7; }
.price-f { display: flex; gap: 6px; align-items: center; }
.price-f input { width: 100%; height: 40px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 10px; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 10px 16px; box-shadow: var(--shadow); margin-bottom: 18px; flex-wrap: wrap; }
.toolbar select { height: 40px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 12px; background: #fff; font-weight: 600; }
.toolbar .count { color: var(--muted); font-size: 14px; }
.filter-toggle { display: none; }
.pager { display: flex; gap: 6px; justify-content: center; margin: 30px 0 0; flex-wrap: wrap; }
.pager a, .pager span { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #fff; font-weight: 700; box-shadow: var(--shadow); padding: 0 12px; }
.pager .on { background: var(--navy); color: #fff; }

/* ═══ Producto ═══ */
.pd { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 320px; gap: 26px; align-items: start; margin-top: 24px; }
.gallery { position: sticky; top: calc(var(--hh) + 16px); display: grid; grid-template-columns: 70px 1fr; gap: 12px; }
.thumbs { display: flex; flex-direction: column; gap: 10px; }
.thumbs button { width: 70px; height: 70px; border-radius: 12px; border: 2px solid var(--line); background: #fff; padding: 5px; cursor: pointer; transition: border-color .2s; }
.thumbs button.on, .thumbs button:hover { border-color: var(--orange); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.stage { position: relative; background: #fff; border-radius: 22px; aspect-ratio: 1; overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; }
.stage img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform .2s ease, opacity .25s; transform-origin: var(--zx, 50%) var(--zy, 50%); }
.stage.zoom img { transform: scale(2); }
.pd-info h1 { font-family: var(--font); font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; letter-spacing: -.01em; line-height: 1.25; }
.pd-brand { color: var(--blue); font-weight: 700; font-size: 14px; }
.pd-rate { display: flex; align-items: center; gap: 8px; margin: 6px 0 12px; font-size: 14px; color: var(--blue); }
.pd-price { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin: 12px 0; }
.pd-price .price b { font-size: 40px; }
.pd-price .off { color: var(--red); font-size: 22px; font-weight: 800; margin-right: 8px; font-family: var(--display); }
.pd-feats { padding-left: 0; list-style: none; margin: 16px 0; }
.pd-feats li { position: relative; padding: 6px 0 6px 30px; font-size: 14.5px; }
.pd-feats li::before { content: '✓'; position: absolute; left: 0; top: 7px; width: 20px; height: 20px; border-radius: 50%; background: var(--sky); color: var(--navy); font-size: 12px; font-weight: 900; display: grid; place-items: center; }
.buybox { position: sticky; top: calc(var(--hh) + 16px); background: #fff; border-radius: 22px; padding: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.buybox .price b { font-size: 32px; }
.stock-ok { color: var(--green); font-weight: 800; font-size: 17px; margin: 10px 0; }
.stock-low { color: var(--orange-2); font-weight: 800; margin: 10px 0; }
.stock-out { color: var(--red); font-weight: 800; margin: 10px 0; }
.buybox .qty { margin: 6px 0 14px; }
.buybox .btn { width: 100%; margin-bottom: 10px; }
.buybox ul { list-style: none; padding: 0; margin: 14px 0 0; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; }
.buybox li { padding: 4px 0; display: flex; gap: 8px; }
.tabs-box { background: #fff; border-radius: 22px; box-shadow: var(--shadow); padding: 26px; margin-top: 30px; }
.desc { white-space: pre-line; color: #2b3659; }
.reviews-grid { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }
.rv-sum .big { font-family: var(--display); font-size: 54px; font-weight: 800; line-height: 1; }
.rv-bar { display: grid; grid-template-columns: 50px 1fr 36px; gap: 8px; align-items: center; font-size: 13px; margin: 5px 0; }
.rv-bar div { height: 10px; background: var(--sky); border-radius: 10px; overflow: hidden; }
.rv-bar i { display: block; height: 100%; background: var(--amber); }
.review { border-bottom: 1px solid var(--line); padding: 14px 0; }
.review b { display: block; }
.review small { color: var(--muted); }
.rate-pick { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rate-pick input { display: none; }
.rate-pick label { font-size: 30px; color: #d6dbe8; cursor: pointer; line-height: 1; transition: color .15s, transform .15s; }
.rate-pick label:hover, .rate-pick label:hover ~ label, .rate-pick input:checked ~ label { color: var(--amber); }
.rate-pick label:hover { transform: scale(1.15); }

/* ═══ Formularios y tarjetas genéricas ═══ */
.card { background: #fff; border-radius: 22px; box-shadow: var(--shadow); padding: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: #33406b; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; border: 1.5px solid var(--line); border-radius: 12px; padding: 10px 14px; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 0, .16); }
.alert { border-radius: 14px; padding: 12px 16px; margin: 16px 0; font-weight: 600; font-size: 14px; }
.alert-ok { background: #e6f7ee; color: #0a6b3d; border: 1px solid #b6e6cc; }
.alert-err { background: #fdecec; color: #a4161a; border: 1px solid #f6c3c4; }
.alert-info { background: var(--sky); color: var(--navy); border: 1px solid #c9dafc; }
.checkout { display: grid; grid-template-columns: 1fr 400px; gap: 24px; align-items: start; margin-top: 24px; }
.co-sum { position: sticky; top: calc(var(--hh) + 16px); }
.pm-list { display: grid; gap: 10px; }
.pm { display: flex; gap: 12px; align-items: flex-start; border: 2px solid var(--line); border-radius: 16px; padding: 14px; cursor: pointer; transition: border-color .2s, background .2s; }
.pm:hover { border-color: #c4d4f7; }
.pm:has(input:checked) { border-color: var(--orange); background: #fff8f1; }
.pm input { margin-top: 4px; accent-color: var(--orange); width: 18px; height: 18px; }
.pm .ic { font-size: 24px; }
.pm b { display: block; }
.pm small { color: var(--muted); }
.steps { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 700; color: var(--muted); flex-wrap: wrap; }
.steps span { display: inline-flex; align-items: center; gap: 6px; }
.steps span i { font-style: normal; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--line); color: var(--muted); font-size: 12px; }
.steps span.on i { background: var(--orange); color: #fff; }
.steps span.on { color: var(--text); }
.coupon-row { display: flex; gap: 8px; margin: 12px 0; }
.coupon-row input { flex: 1; min-width: 0; height: 44px; border: 1.5px dashed #b8c6ea; border-radius: 12px; padding: 0 12px; text-transform: uppercase; }

/* Estado del pedido */
.track { display: grid; grid-template-columns: repeat(5, 1fr); margin: 24px 0; position: relative; }
.track::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 4px; background: var(--line); border-radius: 4px; }
.track .bar { position: absolute; top: 20px; left: 10%; height: 4px; background: var(--grad-o); border-radius: 4px; transition: width 1s; }
.track div { position: relative; text-align: center; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.track div i { font-style: normal; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 6px; background: #fff; border: 3px solid var(--line); font-size: 18px; }
.track div.on { color: var(--text); }
.track div.on i { border-color: var(--orange); background: #fff8f1; }
.pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 800; }
.pill-pendiente, .pill-nuevo { background: #fff4e0; color: #a35a00; }
.pill-verificando, .pill-preparando, .pill-confirmado { background: var(--sky); color: var(--navy); }
.pill-pagado, .pill-entregado, .pill-enviado { background: #e6f7ee; color: #0a6b3d; }
.pill-fallido, .pill-cancelado, .pill-reembolsado { background: #fdecec; color: #a4161a; }
.success-burst { font-size: 72px; text-align: center; animation: pop .6s cubic-bezier(.2, 1.6, .4, 1); }
@keyframes pop { from { transform: scale(.2); opacity: 0; } }
.prose { max-width: 820px; white-space: pre-line; font-size: 16px; color: #2b3659; }

/* ═══ Selector de moneda $ / Bs ═══ */
.cur-switch { display: inline-flex; background: var(--sky); border-radius: 999px; padding: 3px; gap: 2px; }
.cur-switch button { border: 0; background: transparent; color: var(--navy); font-weight: 800; font-size: 12.5px; min-width: 34px; height: 30px; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; }
.cur-switch button.on { background: var(--navy); color: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, .3); }
.rate-chip { background: rgba(255, 122, 0, .16) !important; color: #ffc48a !important; font-weight: 700; }
.install-chip { border: 0; cursor: pointer; font: inherit; color: #fff !important; background: var(--grad-o) !important; font-weight: 700; }

/* ═══ Descargar la app (PWA) ═══ */
.site-header { border-top: env(safe-area-inset-top, 0px) solid var(--navy); }
.install-banner { position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(var(--fh) + 14px); z-index: 305; width: min(460px, calc(100vw - 24px)); background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); display: flex; align-items: center; gap: 12px; padding: 12px 12px 12px 14px; animation: rise .45s cubic-bezier(.2, .8, .2, 1); }
@keyframes rise { from { opacity: 0; transform: translate(-50%, 24px); } }
.install-banner img { border-radius: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, .1); }
.install-banner div { flex: 1; min-width: 0; line-height: 1.3; }
.install-banner b { display: block; font-size: 14px; }
.install-banner small { color: var(--muted); font-size: 12px; }
.install-banner .btn { min-height: 38px; padding: 8px 16px; }
.ib-close { border: 0; background: none; color: var(--muted); font-size: 16px; cursor: pointer; padding: 6px; border-radius: 8px; }
.ib-close:hover { background: var(--sky); }
.ios-install { position: fixed; inset: 0; z-index: 400; background: rgba(0, 0, 0, .55); backdrop-filter: blur(3px); display: grid; place-items: end center; padding: 16px 16px calc(var(--fh) + 16px); }
.ios-card { background: #fff; border-radius: 22px; padding: 22px; width: min(400px, 100%); text-align: center; animation: rise .35s; }
.ios-card img { margin: 0 auto 8px; border-radius: 14px; }
.ios-card h3 { font-size: 18px; }
.ios-card ol { text-align: left; padding-left: 20px; margin: 10px 0 18px; line-height: 1.9; font-size: 14.5px; }
.ios-share { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 6px; background: var(--sky); color: var(--blue); font-size: 13px; }
.mm-install { display: flex; width: 100%; padding: 12px; margin-top: 10px; border-radius: 12px; border: 0; background: var(--grad-o); color: #fff; font-weight: 800; font-size: 15px; cursor: pointer; }

/* ═══ Referencias de clientes (slider infinito de derecha a izquierda) ═══ */
.marquee { overflow: hidden; padding: 6px 0 14px; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slideLeft 55s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes slideLeft { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
.tcard { margin: 0; width: 290px; flex-shrink: 0; background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; transition: transform .3s, box-shadow .3s; }
.tcard:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, .12); }
.tstars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.tstars span { color: #d6dbe8; }
.tcard blockquote { margin: 0; font-size: 14px; line-height: 1.5; color: #2b3659; flex: 1; }
.tcard figcaption { display: flex; align-items: center; gap: 10px; }
.tav { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.tcard figcaption b { display: block; font-size: 13.5px; }
.tcard figcaption small { color: var(--muted); font-size: 12px; }

/* ═══ Pago USDT TRC20 ═══ */
.usdt-box { background: linear-gradient(135deg, #f2f2f3, #eaeaec); border: 1px solid #dcdce0; border-radius: 16px; padding: 16px; margin: 12px 0; display: grid; gap: 4px; }
.usdt-box small { color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.usdt-amt { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 18px; margin-bottom: 8px; }
.usdt-amt b { font-family: var(--display); font-size: 30px; color: #0a8a6a; }
.usdt-wallet { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.usdt-wallet code { font-size: 13px; background: #fff; padding: 8px 10px; border-radius: 10px; word-break: break-all; border: 1px solid var(--line); }
.usdt-warn { font-size: 13px; margin: 8px 0 0; color: #7a4a00; }
.usdt-status { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--navy); font-weight: 600; margin-top: 8px; }
.spin { width: 16px; height: 16px; border-radius: 50%; border: 2.5px solid var(--sky); border-top-color: var(--blue); animation: spin .8s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ Animación al hacer scroll ═══ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .06s; } .stagger.in > *:nth-child(3) { transition-delay: .12s; }
.stagger.in > *:nth-child(4) { transition-delay: .18s; } .stagger.in > *:nth-child(5) { transition-delay: .24s; }
.stagger.in > *:nth-child(6) { transition-delay: .3s; } .stagger.in > *:nth-child(7) { transition-delay: .36s; }
.stagger.in > *:nth-child(8) { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}

/* ═══ Responsive ═══ */
@media (max-width: 1180px) {
  .pd { grid-template-columns: 1fr 1fr; }
  .buybox { grid-column: 2; position: static; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .shop { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: var(--hh) auto var(--fh) 0; width: min(320px, 88vw); max-height: none; z-index: 150; border-radius: 0 22px 22px 0; transform: translateX(-105%); transition: transform .3s; }
  .filters.open { transform: none; box-shadow: var(--shadow-lg); }
  .filter-toggle { display: inline-flex; }
  .checkout { grid-template-columns: 1fr; }
  .co-sum { position: static; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .promo-duo { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 14.5px; }
  .hide-sm { display: none !important; }
  .announce { height: 26px; font-size: 11.5px; }
  .hdr-row { flex-wrap: wrap; height: auto; padding-top: 8px; padding-bottom: 10px; gap: 6px 8px; }
  .menu-btn { display: inline-grid; order: 1; }
  .brand { order: 2; flex: 1; }
  .brand img { height: 34px; }
  .hdr-actions { order: 3; }
  .search { order: 4; flex-basis: 100%; height: 44px; }
  .search select { display: none; }
  .search input { padding-left: 14px; }
  .cart-btn { height: 44px; padding: 0 12px; }
  .hdr-cats { display: none; }
  .tabbar { display: grid; grid-template-columns: repeat(5, 1fr); height: 58px; }
  .tabbar a, .tabbar button { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-size: 10.5px; font-weight: 700; color: var(--muted); border: 0; background: none; cursor: pointer; }
  .tabbar svg { width: 23px; height: 23px; }
  .tabbar .badge { top: 4px; right: calc(50% - 22px); }
  .tabbar a.on { color: var(--navy); }
  .copy-row { height: 26px; font-size: 10.5px; }
  .hero { min-height: 380px; }
  .hero-shade { background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .88)); }
  .hero-content { justify-content: flex-end; padding-bottom: 76px; }
  .hero p { margin-bottom: 18px; }
  .hero .hero-ctas { flex-wrap: nowrap; gap: 8px; }
  .hero .hero-ctas .btn-lg { min-height: 46px; padding: 10px 18px; font-size: 14px; }
  .cat-grid { scrollbar-width: none; }
  .cat-grid::-webkit-scrollbar { display: none; }
  .trust i { width: 40px; height: 40px; font-size: 20px; border-radius: 12px; }
  .trust b { font-size: 13px; }
  .trust small { font-size: 11.5px; }
  .hero-nav { bottom: 30px; left: 16px; right: auto; }
  .hero-arrow { display: none; }
  .cat-strip { margin-top: 18px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cat-tile { padding: 10px 6px; border-radius: 14px; }
  .cat-tile b { font-size: 11.5px; }
  .cat-tile small { font-size: 10.5px; }
  .cat-ico { width: 46px; height: 46px; font-size: 22px; border-radius: 12px; margin-bottom: 6px; }
  .trust { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust div { padding: 10px; gap: 8px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pcard-img { padding: 10px; }
  .pcard-body { padding: 10px 12px 12px; }
  .pcard h3 { font-size: 13.5px; }
  .price b { font-size: 19px; }
  .add-btn { font-size: 12.5px; padding: 8px 10px; }
  .rail { grid-auto-columns: 46%; }
  .deals { padding: 20px 14px; border-radius: 22px; }
  .countdown span { min-width: 44px; font-size: 18px; }
  .px-band { min-height: 300px; clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
  .px-band.alt { clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%); }
  .px-band.alt .px-content { text-align: left; align-items: flex-start; }
  .px-content p { font-size: 16px; }
  .promo { min-height: 240px; padding: 22px; }
  .promo h3, .promo p { max-width: 62%; }
  .pd { grid-template-columns: 1fr; gap: 18px; }
  .gallery { position: static; grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .thumbs button { flex-shrink: 0; width: 62px; height: 62px; }
  .buybox { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .info-brand { grid-column: 1 / -1; }
  .track div { font-size: 10.5px; }
  .track div i { width: 36px; height: 36px; font-size: 15px; }
  .track::before, .track .bar { top: 16px; }
  .wa-float { width: 52px; height: 52px; right: 14px; }
  .tabs-box { padding: 18px; }
  .section { padding: 30px 0; }
}