/* ==========================================================================
   Cahuana — Repuestos para laptop · Estilos base
   Tokens, tipografía, layout y componentes (misma estructura visual que el modelo)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  color: #1d1d1b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; color: inherit; background: 0 0; border: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { outline: none; font-family: inherit; }
svg { display: block; }

:root {
  --tech-black: #1d1d1b;
  --graphite: #2a2a27;
  --electric: #42bc0d;
  --electric-hov: #36a009;
  --cyan: #bccf02;
  --white: #fff;
  --frost: #f4f6fb;
  --border: #e5e7eb;
  --border-dark: #2a2a27;
  --muted: #5a6472;
  --text: #1d1d1b;
  --text-soft: #374151;
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #ef4444;
  --soft-blue: #eef8e8;
  --soft-cyan: #f7f9e0;
  --wa: #25d366;
  --f-head: "Sora", sans-serif;
  --f-body: "Inter", sans-serif;
  --container: 1470px;
  --pad-d: 30px; --pad-t: 24px; --pad-m: 16px;
  --r-pill: 999px; --r-2xl: 28px; --r-xl: 20px; --r-lg: 14px; --r-md: 10px; --r-sm: 6px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: .15s; --t-base: .22s; --t-slow: .32s;
  --shadow-sm: 0 1px 2px #1d1d1b0d;
  --shadow-md: 0 8px 24px #1d1d1b0f;
  --shadow-lg: 0 18px 48px #1d1d1b1a;
  --shadow-xl: 0 28px 72px #1d1d1b29;
  --shadow-blue: 0 18px 48px #42bc0d47;
}

.container { max-width: var(--container); width: 100%; padding-left: var(--pad-d); padding-right: var(--pad-d); margin: 0 auto; }
@media (width <= 1024px) { .container { padding-left: var(--pad-t); padding-right: var(--pad-t); } }
@media (width <= 640px) { .container { padding-left: var(--pad-m); padding-right: var(--pad-m); } }
section { position: relative; }

/* Tipografía */
.h1 { font-family: var(--f-head); letter-spacing: -.02em; color: var(--tech-black); font-size: 62px; font-weight: 600; line-height: 1.08; }
.h2 { font-family: var(--f-head); letter-spacing: -.015em; color: var(--tech-black); font-size: 48px; font-weight: 600; line-height: 1.12; }
.h3 { font-family: var(--f-head); letter-spacing: -.01em; color: var(--tech-black); font-size: 36px; font-weight: 600; line-height: 1.2; }
.h4 { font-family: var(--f-head); color: var(--tech-black); font-size: 28px; font-weight: 600; line-height: 1.25; }
@media (width <= 900px) { .h1 { font-size: 42px; } .h2 { font-size: 34px; } .h3 { font-size: 28px; } .h4 { font-size: 22px; } }
@media (width <= 640px) { .h1 { font-size: 36px; } .h2 { font-size: 30px; } .h3 { font-size: 24px; } .h4 { font-size: 20px; } }

/* Botones */
.btn { font-family: var(--f-body); border-radius: var(--r-pill); transition: all var(--t-base) var(--ease); white-space: nowrap; cursor: pointer; border: 1px solid #0000; justify-content: center; align-items: center; gap: 10px; padding: 15px 28px; font-size: 15px; font-weight: 600; line-height: 1; display: inline-flex; }
.btn:disabled, .btn[disabled] { background: var(--border); color: var(--muted); border-color: var(--border); box-shadow: none; opacity: .7; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--electric); color: #fff; border-color: var(--electric); box-shadow: inset 0 1px #ffffff0f, 0 8px 18px #42bc0d40; }
.btn-primary:hover:not(:disabled) { background: var(--electric-hov); border-color: var(--electric-hov); transform: translateY(-1px); box-shadow: 0 14px 32px #42bc0d59; }
.btn-secondary { color: var(--tech-black); background: 0 0; border-color: #d1d5db; }
.btn-secondary:hover, .btn-dark { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
.btn-dark:hover { background: var(--electric); border-color: var(--electric); transform: translateY(-1px); }
.btn-ghost { color: var(--tech-black); background: 0 0; padding: 12px 18px; }
.btn-ghost:hover { color: var(--electric); }
.btn-light { color: var(--tech-black); background: #fff; border-color: #fff; }
.btn-light:hover { background: var(--cyan); border-color: var(--cyan); color: var(--tech-black); }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: 0 8px 18px #25d36640; }
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; transform: translateY(-1px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .arr { transition: transform var(--t-base) var(--ease); }
.btn:hover .arr { transform: translate(3px); }

/* Secciones */
.sec { padding: 110px 0; }
.sec-frost { background: var(--frost); }
.sec-compact { padding: 80px 0; }
.sec-head { justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 50px; display: flex; }
.sec-head-l { max-width: 640px; }
.sec-eyebrow { letter-spacing: .12em; text-transform: uppercase; color: var(--electric); align-items: center; gap: 8px; margin-bottom: 14px; font-size: 12px; font-weight: 600; display: inline-flex; }
.sec-eyebrow::before { content: ""; background: var(--electric); border-radius: 2px; width: 22px; height: 2px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { color: var(--text-soft); font-size: 17px; line-height: 1.65; }
.sec-head .link { color: var(--tech-black); border-bottom: 2px solid var(--tech-black); transition: all var(--t-base) var(--ease); align-items: center; gap: 8px; padding-bottom: 4px; font-size: 14.5px; font-weight: 600; display: inline-flex; }
.sec-head .link:hover { color: var(--electric); border-color: var(--electric); gap: 12px; }
@media (width <= 900px) { .sec { padding: 80px 0; } .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; } }
@media (width <= 640px) { .sec { padding: 60px 0; } }

.badge { border-radius: var(--r-pill); letter-spacing: .04em; padding: 5px 10px; font-size: 11px; font-weight: 700; line-height: 1; }
.skip-link { z-index: 300; background: var(--tech-black); color: #fff; border-radius: 0 0 8px; padding: 10px 16px; position: absolute; top: 0; left: -9999px; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--electric); outline-offset: 2px; border-radius: 4px; }
body.no-scroll { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }

/* ==========================================================================
   Barra de anuncios
   ========================================================================== */
.announce { background: var(--tech-black); color: #fff; padding: 10px 0; font-size: 13px; position: relative; overflow: hidden; }
.announce .container { justify-content: space-between; align-items: center; gap: 16px; display: flex; }
.announce-meta { color: #ffffffa6; gap: 18px; font-size: 12px; display: flex; align-items: center; }
.announce-meta a { transition: color var(--t-base) var(--ease); }
.announce-meta a:hover { color: var(--cyan); }
.mkt { align-items: center; display: inline-flex; gap: 5px; }
.announce-msg { color: #ffffffeb; flex: 1; justify-content: center; align-items: center; height: 20px; display: flex; position: relative; overflow: hidden; }
.announce-slides { display: contents; }
.announce-slide { color: #ffffffeb; white-space: nowrap; opacity: 0; pointer-events: none; justify-content: center; align-items: center; gap: 10px; width: 100%; font-size: 13px; transition: opacity .5s; display: flex; position: absolute; top: 0; left: 0; }
.announce-slide.is-active { opacity: 1; pointer-events: auto; }
.announce-slide b { color: var(--cyan); font-weight: 600; }
@media (width <= 900px) { .announce-meta { display: none; } }
@media (width <= 640px) { .announce { padding: 8px 0; } .announce-slide { gap: 6px; padding: 0 4px; font-size: clamp(9px, 2.7vw, 12px); } }

/* ==========================================================================
   Header
   ========================================================================== */
.logo { font-family: var(--f-head); letter-spacing: -.02em; color: var(--tech-black); align-items: center; gap: 8px; font-size: 26px; font-weight: 700; display: inline-flex; }
.logo img { height: 30px; width: auto; }
.logo-mark { background: linear-gradient(135deg, var(--electric), var(--cyan)); color: #fff; border-radius: 8px; justify-content: center; align-items: center; width: 30px; height: 30px; font-size: 16px; font-weight: 700; display: inline-flex; box-shadow: 0 6px 18px #42bc0d59; }
.logo-dot { color: var(--electric); }
@media (width <= 640px) { .logo { font-size: 22px; } .logo img { height: 24px; } }

.icon-btn { background: var(--frost); border: 1px solid var(--border); width: 44px; height: 44px; color: var(--tech-black); transition: all var(--t-base) var(--ease); border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; position: relative; }
.icon-btn:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
.icon-btn .badge { background: var(--electric); color: #fff; border-radius: 9px; justify-content: center; align-items: center; min-width: 18px; height: 18px; padding: 0 5px; font-size: 11px; font-weight: 700; line-height: 1; display: inline-flex; position: absolute; top: -4px; right: -4px; }

.site-header { -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); z-index: 100; border-bottom: 1px solid var(--border); background: #fffffff5; position: sticky; top: 0; }
.header-inner { grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; height: 78px; display: grid; position: relative; }
.nav { justify-content: center; align-items: center; gap: 4px; display: flex; }
.nav-item { position: static; }
.nav-link { color: var(--text-soft); border-radius: var(--r-md); transition: all var(--t-fast) var(--ease); align-items: center; gap: 4px; padding: 10px 14px; font-size: 15px; font-weight: 500; display: inline-flex; }
.nav-link:hover { color: var(--tech-black); background: var(--frost); }
.nav-link .chev { transition: transform var(--t-fast) var(--ease); opacity: .6; }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }
.nav-link .hot { background: var(--electric); color: #fff; border-radius: 4px; margin-left: 4px; padding: 3px 6px; font-size: 10px; font-weight: 700; }
.mega { border-radius: var(--r-xl); width: min(1080px, 92vw); box-shadow: var(--shadow-xl); border: 1px solid var(--border); opacity: 0; pointer-events: none; transition: all var(--t-base) var(--ease); background: #fff; grid-template-columns: 1.1fr 1.1fr 1.1fr 1.5fr; gap: 28px; padding: 28px; display: grid; position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%) translateY(8px); }
.mega::before { content: ""; height: 32px; position: absolute; top: -32px; left: 0; right: 0; }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; pointer-events: auto; transform: translate(-50%) translateY(0); }
.mega-col h5 { font-family: var(--f-head); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-size: 13px; font-weight: 600; }
.mega-col ul li a { color: var(--text-soft); transition: color var(--t-fast) var(--ease); justify-content: space-between; align-items: center; padding: 7px 0; font-size: 14.5px; display: flex; }
.mega-col ul li a:hover { color: var(--electric); }
.mega-col ul li a .arr { opacity: 0; transition: all var(--t-fast) var(--ease); }
.mega-col ul li a:hover .arr { opacity: 1; transform: translate(2px); }
.mega-col ul li a .ico { width: 34px; height: 34px; border-radius: 8px; background: var(--frost); object-fit: contain; margin-right: 10px; flex-shrink: 0; }
.mega-col ul li a .lbl { flex: 1; display: inline-flex; align-items: center; }
.mega-feature { background: linear-gradient(160deg, var(--soft-blue), var(--soft-cyan)); border-radius: var(--r-lg); flex-direction: column; justify-content: space-between; min-height: 100%; padding: 22px; display: flex; position: relative; overflow: hidden; }
.mega-feature .tag { letter-spacing: .1em; text-transform: uppercase; color: var(--electric); font-size: 11px; font-weight: 700; }
.mega-feature h6 { font-family: var(--f-head); color: var(--tech-black); margin: 8px 0 6px; font-size: 22px; font-weight: 600; line-height: 1.2; }
.mega-feature p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.mega-feature img { border-radius: var(--r-md); aspect-ratio: 16/10; object-fit: cover; margin-top: 12px; }
.mega-feature .btn { margin-top: 14px; align-self: flex-start; }
.mega-veh { grid-template-columns: 1fr 1fr 1fr 1.3fr; }
.mega-veh-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 16px; transition: all var(--t-base) var(--ease); display: flex; flex-direction: column; gap: 8px; }
.mega-veh-card:hover { border-color: var(--electric); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mega-veh-card img { aspect-ratio: 1; object-fit: contain; background: var(--frost); border-radius: var(--r-md); padding: 10px; }
.mega-veh-card h6 { font-family: var(--f-head); font-size: 15px; font-weight: 600; color: var(--tech-black); }
.mega-veh-card span { color: var(--muted); font-size: 12.5px; }
.mega-veh-card b { color: var(--electric); font-size: 13px; font-weight: 600; }

.header-actions { align-items: center; gap: 8px; display: flex; }
.search-toggle { border-radius: var(--r-pill); background: var(--frost); border: 1px solid var(--border); color: var(--muted); min-width: 220px; transition: all var(--t-base) var(--ease); align-items: center; gap: 10px; padding: 10px 16px; font-size: 14px; display: inline-flex; }
.search-toggle:hover { border-color: var(--electric); color: var(--tech-black); background: #fff; }
.search-toggle .kbd { color: var(--muted); border: 1px solid var(--border); background: #fff; border-radius: 4px; margin-left: auto; padding: 2px 6px; font-size: 11px; }
.burger { display: none; }
@media (width <= 1280px) {
  .search-toggle { border-radius: 50%; justify-content: center; gap: 0; width: 44px; min-width: 0; height: 44px; padding: 0; }
  .search-toggle .kbd, .search-toggle span { display: none; }
  .search-toggle:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
}
@media (width <= 1100px) { .nav { display: none; } .header-inner { grid-template-columns: auto auto; justify-content: space-between; } .burger { display: inline-flex; } }
@media (width <= 640px) { .header-inner { gap: 12px; height: 64px; } .search-toggle { display: none; } .header-actions { gap: 4px; } .header-actions .icon-btn { width: 40px; height: 40px; } }

/* Menú móvil */
.mob-overlay { opacity: 0; pointer-events: none; transition: opacity var(--t-base); z-index: 120; background: #1d1d1b80; position: fixed; inset: 0; }
.mob-overlay.is-open { opacity: 1; pointer-events: auto; }
.mob-menu { width: min(86vw, 360px); height: 100dvh; transition: transform var(--t-slow) var(--ease); z-index: 130; box-shadow: var(--shadow-xl); background: #fff; flex-direction: column; padding: 18px; display: flex; position: fixed; top: 0; left: 0; transform: translate(-100%); overflow-y: auto; }
.mob-menu.is-open { transform: translate(0); }
.mob-menu-head { justify-content: space-between; align-items: center; margin-bottom: 18px; display: flex; }
.mob-search { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--frost); width: 100%; color: var(--muted); font: inherit; cursor: pointer; align-items: center; gap: 10px; margin-bottom: 14px; padding: 12px 14px; display: flex; }
.mob-nav { flex-direction: column; display: flex; }
.mob-nav a { border-bottom: 1px solid var(--border); font-family: var(--f-head); color: var(--text); padding: 14px 6px; font-size: 18px; font-weight: 600; }
.mob-menu-foot { border-top: 1px solid var(--border); flex-direction: column; gap: 14px; margin-top: 22px; padding-top: 18px; display: flex; }
.mob-util { flex-wrap: wrap; gap: 8px 20px; display: flex; }
.mob-util a { color: var(--muted); transition: color var(--t-base) var(--ease); font-size: 14px; font-weight: 500; }
.mob-util a:hover { color: var(--electric); }
.mob-market { color: var(--text); font-size: 14px; }
.mob-mega { margin-top: 6px; }
.mob-acc { border-bottom: 1px solid var(--border); }
.mob-acc-head { cursor: pointer; width: 100%; font-family: var(--f-head); color: var(--text); text-align: left; background: 0 0; border: none; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 6px; font-size: 18px; font-weight: 600; display: flex; }
.mob-acc-chev { opacity: .55; transition: transform var(--t-base) var(--ease); flex: none; }
.mob-acc.is-open .mob-acc-chev { transform: rotate(180deg); }
.mob-acc-body { max-height: 0; transition: max-height var(--t-base) var(--ease); margin: 0; padding: 0 6px; list-style: none; overflow: hidden; }
.mob-acc.is-open .mob-acc-body { max-height: 520px; }
.mob-acc-body li a { color: var(--text-soft); padding: 10px 0 10px 14px; font-size: 15px; display: block; }
.mob-acc-body li a:hover { color: var(--electric); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { background: var(--frost); padding: 28px 0 56px; position: relative; overflow: hidden; }
.hero-stage { max-width: 1640px; margin: 0 auto; padding: 0 72px; position: relative; }
.hero-cards { grid-template-columns: 1.6fr 1fr; gap: 22px; display: grid; }
.hero-card { isolation: isolate; background: linear-gradient(155deg, #1d1d1b 0%, #262624 55%, #2e2e2b 100%); border-radius: 32px; min-height: 640px; position: relative; overflow: hidden; }
.hero-card-lg { align-items: flex-end; display: flex; }
.hero-card-lg .hero-img-bg { object-fit: cover; z-index: 0; width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-card-lg::after { content: ""; z-index: 1; background: linear-gradient(#0000 25%, #1d1d1b26 45%, #1d1d1b8c 70%, #1d1d1beb 100%); position: absolute; inset: 0; }
.hero-card-content { z-index: 2; color: #fff; max-width: 580px; padding: 54px 60px; position: relative; }
.hero-card-heading { font-family: var(--f-head); letter-spacing: -.025em; color: #fff; margin-bottom: 18px; font-size: 56px; font-weight: 700; line-height: 1.04; }
.hero-card-heading .hl { background: linear-gradient(90deg, #bccf02 0%, #42bc0d 100%); color: #0000; -webkit-background-clip: text; background-clip: text; }
.hero-card-sub { color: #ffffffbd; max-width: 380px; margin: 0; font-size: 15px; line-height: 1.6; }
.hero-card-sm { text-align: center; background: linear-gradient(155deg, #161614 0%, #1d1d1b 55%, #242422 100%); flex-direction: column; align-items: center; padding: 46px 36px 40px; display: flex; position: relative; overflow: hidden; }
.hero-card-sm-top, .hero-card-product-wrap, .hero-card-ctas { z-index: 1; position: relative; }
.hero-watermark { z-index: 0; font-family: var(--f-head); letter-spacing: -.05em; text-align: center; color: #ffffff14; white-space: nowrap; pointer-events: none; user-select: none; font-size: clamp(72px, 10vw, 128px); font-weight: 800; line-height: .85; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-card-lg .hero-img-bg, .hero-card-content, .hero-card-sm-top, .hero-card-product-wrap img, .hero-watermark, .hero-card-sm-para { transition: opacity .32s; }
.hero-card.is-fading .hero-img-bg, .hero-card.is-fading .hero-card-content, .hero-card.is-fading .hero-card-sm-top, .hero-card.is-fading .hero-card-product-wrap img, .hero-card.is-fading .hero-watermark, .hero-card.is-fading .hero-card-sm-para { opacity: 0; }
.hero-card-sm-top { z-index: 2; margin-bottom: 8px; position: relative; }
.hero-card-sm-eyebrow { font-family: var(--f-head); background: linear-gradient(90deg, #42bc0d 0%, #bccf02 100%); color: #0000; letter-spacing: -.02em; -webkit-background-clip: text; background-clip: text; margin-bottom: 8px; font-size: 32px; font-weight: 700; line-height: 1.1; }
.hero-card-sm-para { color: #ffffff94; z-index: 1; width: 390px; max-width: 100%; margin-bottom: 18px; font-size: 13.5px; line-height: 1.65; position: relative; }
.hero-card-sm-desc { color: #ffffff9e; letter-spacing: .01em; font-size: 13px; font-weight: 500; }
.hero-card-product-wrap { z-index: 1; flex: 1; justify-content: center; align-items: center; width: 100%; min-height: 0; margin: 14px 0 0; display: flex; position: relative; }
.hero-card-product-wrap img { object-fit: contain; filter: drop-shadow(0 30px 50px #0000008c); max-width: 78%; max-height: 260px; }
.hero-card-ctas { z-index: 2; gap: 10px; margin-top: auto; display: flex; position: relative; }
.hero-card-ctas .btn { border-radius: var(--r-pill); cursor: pointer; justify-content: center; align-items: center; padding: 14px 32px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .22s, border-color .22s, color .22s, transform .22s; display: inline-flex; }
.hero-cta-light { color: var(--tech-black); background: #fff; border: 1.5px solid #fff; }
.hero-cta-light:hover { background: #ffffffe6; transform: translateY(-1px); }
.hero-cta-dark { color: #fff; background: 0 0; border: 1.5px solid #fff; }
.hero-cta-dark:hover { background: #42bc0d; border-color: #42bc0d; transform: translateY(-1px); }
.hero-dots { position: absolute; z-index: 3; right: 28px; top: 28px; display: flex; gap: 6px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; background: #ffffff59; padding: 0; transition: all .22s; }
.hero-dots button.is-active { background: #fff; width: 22px; border-radius: 4px; }
@media (width <= 1100px) { .hero-stage { padding: 0 20px; } .hero-cards { grid-template-columns: 1fr; gap: 18px; } .hero-card { border-radius: 26px; min-height: 500px; } .hero-card-content { padding: 40px 32px; } .hero-card-heading { font-size: 40px; } }
@media (width <= 640px) { .hero { padding: 18px 0 36px; } .hero-card { border-radius: 22px; min-height: 440px; } .hero-card-content { padding: 32px 24px; } .hero-card-heading { font-size: 32px; } .hero-card-sm { padding: 34px 22px 28px; } .hero-card-sm-eyebrow { font-size: 24px; } .hero-card-ctas .btn { padding: 12px 22px; font-size: 13px; } }

/* Confianza */
.trust { border-bottom: 1px solid var(--border); background: #fff; padding: 40px 0; }
.trust-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; display: grid; }
.trust-item { align-items: center; gap: 14px; display: flex; }
.trust-ic { background: var(--soft-blue); width: 48px; height: 48px; color: var(--electric); border-radius: 12px; flex-shrink: 0; justify-content: center; align-items: center; display: inline-flex; }
.trust-text h6 { font-family: var(--f-head); color: var(--tech-black); margin-bottom: 2px; font-size: 15px; font-weight: 600; }
.trust-text span { color: var(--muted); font-size: 13px; }
@media (width <= 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

/* ==========================================================================
   Categorías
   ========================================================================== */
.cat-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; display: grid; }
@media (width <= 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (width <= 600px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.cat-card { border-radius: var(--r-xl); border: 1px solid var(--border); transition: all var(--t-base) var(--ease); background: #fff; flex-direction: column; text-decoration: none; display: flex; overflow: hidden; }
.cat-card:hover { border-color: #d6efc9; transform: translateY(-5px); box-shadow: 0 12px 40px #1d1d1b1a; }
.cat-img { aspect-ratio: 1; background: var(--frost); width: 100%; position: relative; overflow: hidden; }
.cat-img img { object-fit: cover; object-position: center top; width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease); }
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-body { background: var(--frost); border-top: 1px solid var(--border); justify-content: space-between; align-items: center; gap: 8px; padding: 13px 15px; display: flex; }
.cat-label { align-items: center; min-width: 0; display: flex; }
.cat-card h6 { font-family: var(--f-head); color: var(--tech-black); letter-spacing: -.01em; white-space: nowrap; text-overflow: ellipsis; margin: 0 0 2px; font-size: 13.5px; font-weight: 700; transition: color .2s; overflow: hidden; }
.cat-card:hover h6 { color: #42bc0d; }
.cat-card span { color: var(--muted); font-size: 11px; display: block; }
.cat-shop { border: 1px solid var(--border); color: #94a3b8; background: #fff; border-radius: 50%; flex-shrink: 0; justify-content: center; align-items: center; width: 30px; height: 30px; transition: all .22s; display: flex; }
.cat-card:hover .cat-shop { color: #fff; background: #42bc0d; border-color: #42bc0d; transform: scale(1.1); }

/* ==========================================================================
   Productos
   ========================================================================== */
.tabs { border: 1px solid var(--border); border-radius: var(--r-pill); background: #fff; flex-shrink: 0; gap: 4px; margin-bottom: 0; padding: 5px; display: inline-flex; }
.tab { color: var(--text-soft); border-radius: var(--r-pill); transition: all var(--t-base) var(--ease); white-space: nowrap; padding: 10px 18px; font-size: 14px; font-weight: 500; }
.tab:hover { color: var(--tech-black); }
.tab.is-active { background: var(--tech-black); color: #fff; font-weight: 600; }
.prod-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; display: grid; }
@media (width <= 1100px) { .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (width <= 800px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.prod-card { border-radius: var(--r-xl); border: 1px solid var(--border); transition: all var(--t-base) var(--ease); background: #fff; flex-direction: column; display: flex; position: relative; overflow: hidden; }
.prod-card:hover { box-shadow: var(--shadow-lg); border-color: #0000; transform: translateY(-4px); }
.prod-card[hidden] { display: none; }
.prod-media { aspect-ratio: 1; background: var(--frost); position: relative; overflow: hidden; }
.prod-media img { object-fit: cover; width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease); }
.prod-media img.contain { object-fit: contain; padding: 18px; }
.prod-card:hover .prod-media img { transform: scale(1.06); }
.prod-badges { flex-direction: column; gap: 6px; display: flex; position: absolute; top: 14px; left: 14px; z-index: 2; }
.badge-new, .badge-hot { color: #fff; background: #42bc0d; }
.badge-sale { background: var(--error); color: #fff; }
.prod-wish, .prod-compare { width: 40px; height: 40px; box-shadow: var(--shadow-sm); color: var(--text-soft); transition: all var(--t-base) var(--ease); background: #fff; border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; position: absolute; right: 14px; z-index: 2; }
.prod-wish { top: 14px; }
.prod-compare { top: 62px; }
.prod-wish:hover { background: var(--error); color: #fff; transform: scale(1.08); }
.prod-wish.is-active { background: var(--error); color: #fff; }
.prod-wish.is-active svg { fill: currentColor; stroke: currentColor; }
.prod-compare:hover, .prod-compare.is-active { color: #fff; background: #42bc0d; }
.prod-compare:hover { transform: scale(1.08); }
.prod-body { flex-direction: column; gap: 6px; padding: 18px 18px 20px; display: flex; }
.prod-meta { justify-content: space-between; align-items: center; gap: 8px; display: flex; }
.prod-brand { color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-size: 12px; font-weight: 500; }
.prod-title { font-family: var(--f-head); color: var(--tech-black); margin-top: 4px; font-size: 17px; font-weight: 600; line-height: 1.35; }
.prod-foot { flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 10px; margin-top: 10px; display: flex; }
.prod-price { flex-wrap: wrap; align-items: baseline; gap: 8px; min-width: 0; display: inline-flex; }
.prod-price .now { font-family: var(--f-head); color: var(--tech-black); font-size: 19px; font-weight: 600; }
.prod-price .was { color: var(--muted); font-size: 14px; text-decoration: line-through; }
.prod-save { color: var(--success); font-size: 12px; font-weight: 700; }
.prod-quick { background: var(--tech-black); color: #fff; border-radius: var(--r-pill); transition: background var(--t-base) var(--ease); flex: 1; justify-content: center; align-items: center; gap: 6px; padding: 11px 10px; font-size: 13px; font-weight: 600; display: flex; }
.prod-quick:hover { background: var(--electric); }
.prod-qview { border: 1.5px solid var(--border); width: 42px; height: 42px; color: var(--tech-black); transition: all var(--t-base) var(--ease); background: #fff; border-radius: 50%; flex-shrink: 0; justify-content: center; align-items: center; display: inline-flex; }
.prod-qview:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
.prod-actions { opacity: 0; transition: all var(--t-base) var(--ease); align-items: center; gap: 8px; display: flex; position: absolute; bottom: 14px; left: 14px; right: 14px; transform: translateY(110%); z-index: 2; }
.prod-card:hover .prod-actions { opacity: 1; transform: translateY(0); }
@media (width <= 800px) { .prod-body { padding: 14px 14px 16px; } .prod-title { font-size: 15px; } .prod-price .now { font-size: 16px; } .prod-actions { opacity: 1; transform: none; } }
.featured-cta { justify-content: center; margin-top: 44px; display: flex; }

/* Promos */
.promo-grid { grid-template-columns: 1fr 1fr; gap: 28px; display: grid; }
.promo { border-radius: var(--r-2xl); color: #fff; isolation: isolate; flex-direction: column; justify-content: flex-end; min-height: 360px; padding: 56px; display: flex; position: relative; overflow: hidden; }
.promo::before { content: ""; z-index: -1; background: linear-gradient(#1d1d1b0d 0%, #1d1d1bbf 100%); position: absolute; inset: 0; }
.promo img.bg { object-fit: cover; z-index: -2; width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease); position: absolute; inset: 0; }
.promo:hover img.bg { transform: scale(1.04); }
.promo .tag { border-radius: var(--r-pill); background: var(--cyan); color: var(--tech-black); letter-spacing: .08em; text-transform: uppercase; width: max-content; margin-bottom: 14px; padding: 5px 12px; font-size: 11px; font-weight: 700; display: inline-block; }
.promo h3 { font-family: var(--f-head); letter-spacing: -.01em; margin-bottom: 12px; font-size: 38px; font-weight: 600; line-height: 1.12; }
.promo p { color: #ffffffdb; max-width: 380px; margin-bottom: 26px; font-size: 16px; }
.promo .promo-cta { align-self: flex-start; }
@media (width <= 900px) { .promo-grid { grid-template-columns: 1fr; gap: 18px; } .promo { min-height: 320px; padding: 40px; } .promo h3 { font-size: 30px; } }

/* Marquee */
.marquee-sec { background: var(--tech-black); border-top: 1px solid #ffffff12; border-bottom: 1px solid #ffffff12; padding: 0; overflow: hidden; }
.marquee-inner { width: max-content; animation: 28s linear infinite marqueeScroll; display: flex; }
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translate(0); } to { transform: translate(-50%); } }
.marquee-track { white-space: nowrap; align-items: center; padding: 22px 0; display: flex; }
.marquee-item { font-family: var(--f-head); letter-spacing: -.01em; color: #ffffffe0; text-transform: uppercase; align-items: center; gap: 14px; padding: 0 52px; font-size: clamp(22px, 3.5vw, 42px); font-weight: 800; display: inline-flex; }
.marquee-item.is-accent { color: var(--cyan); }
.marquee-prod-img { object-fit: contain; background: #ffffff1f; border-radius: 8px; flex-shrink: 0; width: 48px; height: 48px; padding: 5px; }
.marquee-dot { background: #fff3; border-radius: 50%; flex-shrink: 0; width: 8px; height: 8px; }

/* Lookbook con hotspots */
.lookbook-sec { padding-top: 64px; padding-bottom: 110px; }
.lookbook-wrap { border-radius: 22px; margin-top: 48px; position: relative; overflow: visible; }
.lookbook-img { object-fit: cover; border-radius: 22px; width: 100%; height: 800px; display: block; }
.lk-img-veil { pointer-events: none; background: linear-gradient(135deg, #1d1d1b73 0%, #1d1d1b1a 100%); border-radius: 22px; position: absolute; inset: 0; }
.lk-hotspots { pointer-events: none; position: absolute; inset: 0; }
.lk-hotspot { pointer-events: auto; position: absolute; transform: translate(-50%, -50%); }
.lk-dot { cursor: pointer; z-index: 2; background: #fff; border-radius: 50%; justify-content: center; align-items: center; width: 40px; height: 40px; transition: background .22s, transform .22s; display: flex; position: relative; box-shadow: 0 2px 16px #0006; }
.lk-dot::before { content: ""; border: 2px solid #ffffff80; border-radius: 50%; animation: 2.2s ease-in-out infinite lk-pulse; position: absolute; inset: -6px; }
@keyframes lk-pulse { 0%, to { opacity: .7; transform: scale(1); } 50% { opacity: 0; transform: scale(1.5); } }
.lk-dot svg { color: var(--tech-black); transition: color .22s; }
.lk-hotspot:hover .lk-dot, .lk-hotspot.is-open .lk-dot { background: var(--electric); transform: scale(1.1); }
.lk-hotspot:hover .lk-dot svg, .lk-hotspot.is-open .lk-dot svg { color: #fff; }
.lk-product-card { opacity: 0; pointer-events: none; z-index: 50; background: #fff; border-radius: 16px; width: 200px; transition: opacity .25s, transform .25s; position: absolute; top: 50%; left: calc(100% + 16px); overflow: hidden; transform: translateY(-50%) translate(10px); box-shadow: 0 10px 40px #00000038; }
.lk-card-left { left: auto; right: calc(100% + 16px); transform: translateY(-50%) translate(-10px); }
.lk-hotspot:hover .lk-product-card, .lk-hotspot.is-open .lk-product-card { opacity: 1; pointer-events: auto; transform: translateY(-50%) translate(0); }
.lk-pc-img { aspect-ratio: 4/3; background: var(--frost); overflow: hidden; }
.lk-pc-img img { object-fit: cover; width: 100%; height: 100%; display: block; }
.lk-pc-body { flex-direction: column; gap: 5px; padding: 11px 13px 13px; display: flex; }
.lk-pc-brand { letter-spacing: .07em; text-transform: uppercase; color: var(--muted); font-size: 10px; font-weight: 600; }
.lk-pc-name { font-family: var(--f-head); color: var(--tech-black); font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.lk-pc-price-row { align-items: baseline; gap: 6px; margin-top: 1px; display: flex; }
.lk-pc-price { font-family: var(--f-head); color: var(--tech-black); font-size: 16px; font-weight: 700; }
.lk-pc-was { color: var(--muted); font-size: 12px; text-decoration: line-through; }
.lk-pc-add { background: var(--electric); color: #fff; border-radius: var(--r-pill); text-align: center; cursor: pointer; width: 100%; font-size: 12px; font-weight: 700; font-family: var(--f-body); border: none; margin-top: 7px; padding: 9px 0; transition: background .2s; display: block; }
.lk-pc-add:hover { background: var(--electric-hov); }
@media (width <= 768px) { .lookbook-img { height: 360px; } .lk-product-card, .lk-card-left { width: min(220px, 72vw); transform: none; } .lk-hotspot.is-open { z-index: 60; } .lk-hotspot.is-open .lk-product-card { transform: none; } }

/* Bundles → Vehículos eléctricos */
.bundle-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; display: grid; }
.bundle { border: 1px solid var(--border); border-radius: var(--r-xl); transition: all var(--t-base) var(--ease); background: #fff; flex-direction: column; gap: 22px; min-width: 0; padding: 26px; display: flex; }
.bundle:hover { box-shadow: var(--shadow-lg); border-color: #0000; transform: translateY(-3px); }
.bundle-head { justify-content: space-between; align-items: center; display: flex; }
.bundle-tag { letter-spacing: .08em; text-transform: uppercase; color: var(--electric); border-radius: var(--r-pill); background: var(--soft-blue); padding: 5px 10px; font-size: 11px; font-weight: 700; }
.bundle-save { color: var(--success); font-size: 13px; font-weight: 700; }
.bundle-items { align-items: center; gap: 6px; display: flex; }
.bundle-item { aspect-ratio: 16/10; background: var(--frost); border-radius: var(--r-lg); flex: 1; min-width: 0; position: relative; overflow: hidden; }
.bundle-item img { object-fit: contain; width: 100%; height: 100%; padding: 12px; transition: transform var(--t-slow) var(--ease); }
.bundle:hover .bundle-item img { transform: scale(1.05); }
.bundle h4 { font-family: var(--f-head); color: var(--tech-black); font-size: 19px; font-weight: 600; line-height: 1.3; }
.bundle-feat-ul { border: 1px solid #e8edf2; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.bundle-feat-ul li { width: 100%; background: #fff; border-bottom: 1px solid #f1f5f9; align-items: center; gap: 12px; padding: 12px 14px; display: flex; font-size: 13.5px; color: var(--text-soft); }
.bundle-feat-ul li:last-child { border-bottom: none; }
.bundle-feat-icon { border-radius: 9px; flex-shrink: 0; justify-content: center; align-items: center; width: 36px; height: 36px; display: inline-flex; }
.bundle-feat-info { flex-direction: column; flex: 1; gap: 2px; min-width: 0; display: flex; }
.bundle-feat-name { color: #1d1d1b; white-space: nowrap; text-overflow: ellipsis; font-size: 13px; font-weight: 600; line-height: 1.3; overflow: hidden; }
.bundle-feat-spec { color: #94a3b8; font-size: 11px; line-height: 1.3; }
.bundle-feat-badge { color: #059669; white-space: nowrap; background: #ecfdf5; border: 1px solid #0596692e; border-radius: 100px; flex-shrink: 0; align-items: center; gap: 4px; padding: 3px 8px; font-size: 10.5px; font-weight: 600; display: inline-flex; }
.bundle-foot { border-top: 1px solid var(--border); justify-content: space-between; align-items: center; margin-top: auto; padding-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.bundle-price .now { font-family: var(--f-head); color: var(--tech-black); font-size: 22px; font-weight: 600; }
.bundle-price .was { color: var(--muted); margin-left: 6px; font-size: 14px; text-decoration: line-through; }
.bundle-price .ask { font-family: var(--f-head); color: var(--electric); font-size: 15px; font-weight: 600; }
@media (width <= 1024px) { .bundle-grid { grid-template-columns: 1fr 1fr; } }
@media (width <= 700px) { .bundle-grid { grid-template-columns: 1fr; } }

/* Spotlight */
.spot { background: var(--graphite); color: #fff; border-radius: var(--r-2xl); grid-template-columns: 1.05fr 1fr; align-items: stretch; height: 780px; min-height: unset; margin-top: 0; display: grid; overflow: hidden; }
.spot-media { background: var(--tech-black); min-height: 480px; position: relative; overflow: hidden; }
.spot-media img { object-fit: cover; width: 100%; height: 100%; transition: opacity .3s; }
.spot-media::after { content: ""; pointer-events: none; background: radial-gradient(closest-side at 70% 30%, #bccf0233, #0000 70%); position: absolute; inset: 0; }
.spot-badge { z-index: 3; font-family: var(--f-body); letter-spacing: .07em; text-transform: uppercase; color: var(--tech-black); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); white-space: nowrap; background: #ffffffeb; border: 1px solid #00000024; border-radius: 999px; align-items: center; gap: 7px; padding: 7px 14px; font-size: 11.5px; font-weight: 700; display: inline-flex; position: absolute; top: 32px; left: 28px; }
.spot-badge::before { content: "•"; color: #42bc0d; font-size: 14px; line-height: 1; }
.spot-body { flex-direction: column; justify-content: center; gap: 22px; padding: 60px; display: flex; }
.spot-eyebrow { letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); align-items: center; gap: 10px; font-size: 12px; font-weight: 600; display: inline-flex; }
.spot-eyebrow::before { content: ""; background: var(--cyan); border-radius: 2px; width: 22px; height: 2px; }
.spot h2 { color: #fff; max-width: 580px; }
.spot p { color: #ffffffb8; max-width: 480px; font-size: 17px; line-height: 1.7; }
.spot-features { grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-top: 4px; display: grid; }
.spot-features li { color: #ffffffe0; align-items: center; gap: 10px; font-size: 14.5px; display: flex; }
.spot-features li svg { color: var(--cyan); flex-shrink: 0; }
.spot-foot { flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 8px; display: flex; }
.spot-price { flex-direction: column; display: flex; }
.spot-price .now { font-family: var(--f-head); color: #fff; font-size: 32px; font-weight: 600; line-height: 1; }
.spot-price .was { color: #ffffff80; margin-top: 4px; font-size: 14px; text-decoration: line-through; }
.spot-arrow { color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); z-index: 3; cursor: pointer; background: #ffffff1f; border: 1.5px solid #ffffff47; border-radius: 50%; justify-content: center; align-items: center; width: 46px; height: 46px; transition: background .22s, border-color .22s, transform .22s; display: inline-flex; position: absolute; bottom: 28px; }
.spot-arrow:hover { background: var(--electric); border-color: var(--electric); transform: scale(1.08); }
.spot-arrow-prev { left: 24px; }
.spot-arrow-next { left: 78px; }
@media (width <= 1280px) { .spot { height: auto; } }
@media (width <= 1024px) { .spot { grid-template-columns: 1fr; } .spot-media { min-height: 400px; } .spot-body { padding: 44px 32px; } }

/* Ofertas con cuenta regresiva */
.deal-head { background: linear-gradient(135deg, var(--tech-black), var(--graphite)); border-radius: var(--r-2xl); color: #fff; justify-content: space-between; align-items: center; gap: 32px; margin-bottom: 36px; padding: 40px 50px; display: flex; position: relative; overflow: hidden; }
.deal-head::after { content: ""; pointer-events: none; background: radial-gradient(closest-side at 85%, #bccf0233, #0000 60%); position: absolute; inset: 0; }
.deal-head-l { flex-direction: column; gap: 6px; display: flex; position: relative; }
.deal-tag { color: var(--cyan); letter-spacing: .14em; text-transform: uppercase; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; display: inline-flex; }
.deal-tag .dot { background: var(--cyan); border-radius: 50%; width: 8px; height: 8px; animation: 1.4s ease-in-out infinite pulse; box-shadow: 0 0 0 4px #bccf0240; }
@keyframes pulse { 0%, to { opacity: 1; transform: scale(1); } 50% { opacity: .75; transform: scale(1.15); } }
.deal-head h3 { font-family: var(--f-head); color: #fff; letter-spacing: -.01em; font-size: 34px; font-weight: 600; line-height: 1.1; }
.deal-head p { color: #ffffffb3; max-width: 480px; margin-top: 6px; font-size: 15px; }
.deal-countdown { gap: 10px; display: flex; position: relative; }
.ct-cell { border-radius: var(--r-md); text-align: center; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); background: #ffffff0f; border: 1px solid #ffffff1a; min-width: 76px; padding: 14px 16px; }
.ct-num { font-family: var(--f-head); color: #fff; font-size: 30px; font-weight: 600; line-height: 1; }
.ct-lab { color: #fff9; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; font-size: 11px; }
@media (width <= 900px) { .deal-head { flex-direction: column; align-items: flex-start; padding: 30px; } .deal-head h3 { font-size: 26px; } .ct-cell { min-width: 62px; padding: 10px 12px; } .ct-num { font-size: 24px; } }
.deal-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; display: grid; }
@media (width <= 1024px) { .deal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (width <= 600px) { .deal-grid { grid-template-columns: 1fr; } }
.deal-card { border: 1px solid var(--border); border-radius: var(--r-xl); transition: all var(--t-base) var(--ease); background: #fff; flex-direction: column; display: flex; overflow: hidden; }
.deal-card:hover { box-shadow: var(--shadow-lg); border-color: #0000; transform: translateY(-3px); }
.deal-media { aspect-ratio: 4/3; background: var(--frost); position: relative; overflow: hidden; }
.deal-media img { object-fit: cover; width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease); }
.deal-card:hover .deal-media img { transform: scale(1.05); }
.deal-icon-row { z-index: 2; flex-direction: column; gap: 6px; display: flex; position: absolute; top: 12px; right: 12px; }
.deal-icon-btn { border: 1px solid var(--border); cursor: pointer; width: 34px; height: 34px; color: var(--muted); transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast); background: #fff; border-radius: 50%; justify-content: center; align-items: center; display: flex; box-shadow: 0 2px 8px #00000014; }
.deal-icon-btn:hover { background: var(--tech-black); color: #fff; transform: scale(1.08); }
.deal-icon-btn.is-active { background: var(--error); color: #fff; border-color: var(--error); }
.deal-icon-btn.is-active svg { fill: #fff; stroke: #fff; }
.deal-off-bubble { background: var(--error); color: #fff; width: 56px; height: 56px; font-family: var(--f-head); border-radius: 50%; justify-content: center; align-items: center; font-size: 15px; font-weight: 700; display: flex; position: absolute; top: 14px; left: 14px; box-shadow: 0 8px 18px #ef444459; z-index: 2; }
.deal-card-body { flex-direction: column; gap: 10px; padding: 18px 20px 20px; display: flex; }
.deal-card-body .prod-title { margin: 0; }
.deal-meta-row { justify-content: space-between; align-items: center; gap: 8px; display: flex; }
.deal-stock { margin-top: 4px; }
.stock-bar { background: var(--frost); border-radius: 3px; height: 6px; margin-bottom: 6px; overflow: hidden; }
.stock-bar-fill { background: linear-gradient(90deg, var(--warning), var(--error)); border-radius: 3px; height: 100%; display: block; }
.stock-meta { color: var(--muted); justify-content: space-between; font-size: 12px; display: flex; }
.stock-meta b { color: var(--error); font-weight: 600; }
.deal-actions { gap: 8px; margin-top: 10px; display: flex; }
.deal-quick { background: var(--tech-black); color: #fff; border-radius: var(--r-pill); transition: background var(--t-base) var(--ease); flex: 1; justify-content: center; align-items: center; gap: 6px; padding: 10px 12px; font-size: 13px; font-weight: 600; display: flex; }
.deal-quick:hover { background: var(--electric); }
.deal-qview { background: var(--frost); border: 1.5px solid var(--border); width: 40px; height: 40px; color: var(--tech-black); transition: all var(--t-base) var(--ease); border-radius: 50%; flex-shrink: 0; justify-content: center; align-items: center; display: inline-flex; }
.deal-qview:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }

/* Comparador */
.compare-wrap { border: 1px solid var(--border); border-radius: var(--r-2xl); background: #fff; overflow: hidden; }
.compare-grid { grid-template-columns: repeat(3, 1fr); display: grid; }
.cmp-col { border-right: 1px solid var(--border); flex-direction: column; gap: 18px; padding: 32px 30px; display: flex; }
.cmp-col:last-child { border-right: none; }
.cmp-col.is-best { background: linear-gradient(180deg, var(--soft-blue), #fff); position: relative; }
.cmp-best-badge { background: var(--electric); color: #fff; letter-spacing: .08em; border-radius: var(--r-pill); padding: 5px 10px; font-size: 11px; font-weight: 700; position: absolute; top: 14px; right: 14px; }
.cmp-img { aspect-ratio: 1; background: var(--frost); border-radius: var(--r-lg); max-width: 220px; width: 100%; margin: 0 auto; overflow: hidden; }
.cmp-img img { object-fit: cover; width: 100%; height: 100%; }
.cmp-name { font-family: var(--f-head); color: var(--tech-black); text-align: center; font-size: 22px; font-weight: 600; }
.cmp-price { font-family: var(--f-head); color: var(--electric); text-align: center; font-size: 24px; font-weight: 600; }
.cmp-price .was { color: var(--muted); font-size: 15px; text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.cmp-spec { flex-direction: column; gap: 10px; margin-top: 6px; display: flex; }
.cmp-spec li { border-bottom: 1px solid var(--border); justify-content: space-between; align-items: center; padding: 8px 0; font-size: 13.5px; display: flex; }
.cmp-spec li:last-child { border-bottom: none; }
.cmp-spec li span:first-child { color: var(--muted); }
.cmp-spec li b { color: var(--tech-black); font-weight: 600; }
.cmp-foot { margin-top: auto; }
@media (width <= 991.98px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } .cmp-col { border-bottom: 1px solid var(--border); } .cmp-col:nth-child(2n) { border-right: none; } .cmp-col:last-child { border-bottom: none; border-right: none; } }
@media (width <= 767.98px) { .compare-grid { grid-template-columns: 1fr; } .cmp-col { border-right: none; border-bottom: 1px solid var(--border); } .cmp-col:last-child { border-bottom: none; } }

/* Soluciones (need-grid) */
.need-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; display: grid; }
.need-card { border-radius: var(--r-xl); aspect-ratio: 4/3; color: #fff; isolation: isolate; transition: transform var(--t-base) var(--ease); position: relative; overflow: hidden; }
.need-card:hover { transform: translateY(-4px); }
.need-card img { object-fit: cover; z-index: -2; width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease); position: absolute; inset: 0; }
.need-card:hover img { transform: scale(1.05); }
.need-card::before { content: ""; z-index: -1; background: linear-gradient(#1d1d1b00 30%, #1d1d1bd9 100%); position: absolute; inset: 0; }
.need-card-body { flex-direction: column; justify-content: space-between; display: flex; position: absolute; inset: 22px; }
.need-ic { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; background: #ffffff24; border: 1px solid #fff3; border-radius: 12px; justify-content: center; align-items: center; width: 42px; height: 42px; display: inline-flex; }
.need-bot h5 { font-family: var(--f-head); margin-bottom: 6px; font-size: 22px; font-weight: 600; line-height: 1.2; }
.need-bot p { color: #ffffffcc; font-size: 13.5px; line-height: 1.5; margin-bottom: 10px; max-width: 360px; }
.need-bot span { color: #ffffffc7; transition: gap var(--t-fast) var(--ease); align-items: center; gap: 6px; font-size: 13px; display: inline-flex; }
.need-card:hover .need-bot span { color: var(--cyan); gap: 10px; }
.need-cta { text-align: center; margin-top: 40px; }
.need-cta h4 { font-family: var(--f-head); font-size: 22px; font-weight: 600; color: var(--tech-black); margin-bottom: 6px; }
.need-cta p { color: var(--text-soft); font-size: 15px; }
@media (width <= 900px) { .need-grid { grid-template-columns: 1fr; } .need-card { aspect-ratio: 16/9; } }

/* Marcas */
.brand-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; padding: 32px 0; overflow: hidden; }
.brand-strip .lead { text-align: center; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; font-size: 12px; font-weight: 600; }
.brand-scroll-outer { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, #0000, #fff 6% 94%, #0000); mask-image: linear-gradient(90deg, #0000, #fff 6% 94%, #0000); }
.brand-scroll-inner { width: max-content; animation: 28s linear infinite brandScroll; display: flex; }
.brand-scroll-inner:hover { animation-play-state: paused; }
@keyframes brandScroll { 0% { transform: translate(0); } to { transform: translate(-50%); } }
.brand-scroll-track { align-items: center; gap: 0; display: flex; }
.brand-scroll-track .brand { padding: 6px 40px; display: inline-flex; align-items: center; height: 60px; filter: grayscale(1); opacity: .55; transition: opacity .22s, filter .22s; }
.brand-scroll-track .brand img { height: 34px; width: auto; max-width: 150px; object-fit: contain; }
.brand-scroll-track .brand:hover { filter: none; opacity: 1; }
.brand-scroll-sep { background: #dde0e6; border-radius: 50%; flex-shrink: 0; width: 5px; height: 5px; }

/* Testimonios */
.test-sec { background: #f6f7f9; padding: 110px 0 120px; position: relative; overflow: hidden; }
.test-head { text-align: center; z-index: 2; max-width: 720px; margin: 0 auto 56px; position: relative; }
.test-eye { letter-spacing: .06em; text-transform: uppercase; color: #1d1d1b; background: #fff; border: 1px solid #1d1d1b14; border-radius: 100px; align-items: center; gap: 9px; margin-bottom: 22px; padding: 7px 14px 7px 11px; font-size: 11.5px; font-weight: 700; display: inline-flex; box-shadow: 0 1px 2px #1d1d1b0a; }
.test-eye-dot { background: #42bc0d; border-radius: 50%; width: 7px; height: 7px; animation: 2s ease-in-out infinite testPulse; box-shadow: 0 0 0 4px #42bc0d2e; }
@keyframes testPulse { 0%, to { box-shadow: 0 0 0 4px #42bc0d2e; } 50% { box-shadow: 0 0 0 8px #42bc0d0a; } }
.test-head h2 { white-space: nowrap; margin: 0 0 16px; }
.test-head-sub { color: #5a6478; max-width: 560px; margin: 0 auto 20px; font-size: 15px; line-height: 1.6; }
.test-head-trust { color: #475569; align-items: center; gap: 14px; font-size: 14px; display: inline-flex; }
.test-head-trust .stars { color: #42bc0d; letter-spacing: 1.5px; font-size: 16px; line-height: 1; }
.test-head-trust b { color: #1d1d1b; font-weight: 700; }
.test-marquee { grid-template-columns: repeat(3, 1fr); gap: 20px; height: 620px; display: grid; position: relative; -webkit-mask-image: linear-gradient(#0000 0%, #000 10% 90%, #0000 100%); mask-image: linear-gradient(#0000 0%, #000 10% 90%, #0000 100%); }
.test-col { will-change: transform; flex-direction: column; gap: 16px; animation: 38s linear infinite testScrollUp; display: flex; }
.test-col.is-reverse { animation: 38s linear infinite testScrollDown; }
.test-marquee:hover .test-col { animation-play-state: paused; }
@keyframes testScrollUp { 0% { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes testScrollDown { 0% { transform: translateY(-50%); } to { transform: translateY(0); } }
.test-card { background: #fff; border: 1px solid #1d1d1b0d; border-radius: 16px; flex-shrink: 0; padding: 22px 22px 20px; transition: box-shadow .25s, transform .25s, border-color .25s; box-shadow: 0 1px 2px #1d1d1b08; }
.test-card:hover { border-color: #42bc0d40; transform: translateY(-2px); box-shadow: 0 12px 28px #1d1d1b14; }
.test-card-row { justify-content: space-between; align-items: center; margin-bottom: 12px; display: flex; }
.test-stars { color: #42bc0d; letter-spacing: 1.5px; font-size: 14px; line-height: 1; }
.test-verified { color: #16a34a; letter-spacing: .03em; text-transform: uppercase; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; display: inline-flex; }
.test-verified svg { width: 12px; height: 12px; }
.test-qtext { color: #334155; margin: 0 0 18px; font-size: 14px; font-weight: 400; line-height: 1.55; }
.test-card-foot { border-top: 1px solid #eef0f3; align-items: center; gap: 10px; padding-top: 14px; display: flex; }
.test-avatar { background: #e8edf2; border-radius: 50%; flex-shrink: 0; width: 30px; height: 30px; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); }
.test-author { color: #1d1d1b; margin-bottom: 1px; font-size: 12.5px; font-weight: 700; line-height: 1.15; }
.test-meta { color: #94a3b8; font-size: 11px; line-height: 1.2; }
@media (width <= 900px) { .test-marquee { grid-template-columns: repeat(2, 1fr); height: 560px; } }
@media (width <= 760px) { .test-head h2 { white-space: normal; } }
@media (width <= 600px) { .test-sec { padding: 72px 0 80px; } .test-marquee { grid-template-columns: 1fr; height: 520px; } }

/* Guías (blog) */
.blog-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; display: grid; }
.blog-card { border: 1px solid var(--border); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); background: #fff; border-radius: 18px; flex-direction: column; text-decoration: none; display: flex; overflow: hidden; }
.blog-card:hover { border-color: #0000; transform: translateY(-5px); box-shadow: 0 20px 50px #1d1d1b1f; }
.blog-media { aspect-ratio: 16/10; background: var(--frost); flex-shrink: 0; display: block; overflow: hidden; }
.blog-media img { object-fit: cover; width: 100%; height: 100%; transition: transform .65s cubic-bezier(.25, .46, .45, .94); display: block; }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { flex-direction: column; flex: 1; gap: 12px; padding: 26px 24px 22px; display: flex; }
.blog-date { color: var(--muted); font-size: 12px; letter-spacing: .02em; justify-content: space-between; align-items: center; gap: 12px; display: flex; }
.blog-author { color: var(--text); white-space: nowrap; text-overflow: ellipsis; font-weight: 600; overflow: hidden; }
.blog-card h4 { font-family: var(--f-head); color: var(--tech-black); margin: 0; font-size: 19px; font-weight: 700; line-height: 1.3; transition: color .22s; }
.blog-card h4 a { color: inherit; }
.blog-card:hover h4 { color: var(--electric); }
.blog-card p { color: var(--muted); flex: 1; margin: 0; font-size: 14px; line-height: 1.65; }
.blog-tags { flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 6px; display: flex; }
.blog-tag { color: var(--text-soft); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px 13px; font-size: 11.5px; font-weight: 500; transition: border-color .2s, color .2s; }
.blog-card:hover .blog-tag { border-color: var(--electric); color: var(--electric); }
@media (width <= 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (width <= 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* Newsletter → WhatsApp */
.news { background: radial-gradient(900px 460px at 90% 10%, #bccf0233, transparent 60%), radial-gradient(700px 380px at 0% 100%, #42bc0d33, transparent 60%), var(--tech-black); color: #fff; text-align: center; padding: 100px 0; overflow: hidden; }
.news-inner { max-width: 720px; margin: 0 auto; }
.news h2 { color: #fff; margin-bottom: 14px; }
.news h2 .accent { background: linear-gradient(90deg, var(--electric), var(--cyan)); color: #0000; -webkit-background-clip: text; background-clip: text; }
.news p { color: #ffffffb8; margin-bottom: 32px; font-size: 17px; }
.news-form { border-radius: var(--r-pill); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); background: #ffffff14; border: 1px solid #ffffff24; align-items: center; gap: 8px; max-width: 560px; margin: 0 auto; padding: 6px 6px 6px 22px; display: flex; }
.news-form input { color: #fff; background: 0 0; border: none; flex: 1; padding: 12px 0; font-size: 15px; min-width: 0; }
.news-form input::placeholder { color: #ffffff80; }
.news-perks { flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; margin-top: 28px; display: flex; }
.news-perks span { color: #ffffffb3; align-items: center; gap: 6px; font-size: 13px; display: inline-flex; }
.news-perks span svg { color: var(--cyan); }
@media (width <= 640px) { .news { padding: 70px 0; } .news-form { border-radius: var(--r-lg); flex-direction: column; gap: 6px; padding: 6px; } .news-form input { width: 100%; padding: 14px 16px; } .news-form .btn { width: 100%; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { color: var(--text-soft); border-top: 1px solid var(--border); background: #fafbfc; padding: 72px 0 96px; }
.footer-top { border-bottom: 1px solid var(--border); grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; display: grid; }
.foot-brand p { color: var(--muted); max-width: 320px; margin: 16px 0 22px; font-size: 14.5px; line-height: 1.65; }
.foot-social { gap: 8px; display: flex; }
.foot-social a { border: 1px solid var(--border); width: 38px; height: 38px; color: var(--text-soft); transition: all var(--t-base) var(--ease); background: #fff; border-radius: 10px; justify-content: center; align-items: center; display: inline-flex; }
.foot-social a:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); transform: translateY(-2px); }
.foot-col h6 { font-family: var(--f-head); letter-spacing: .06em; color: var(--tech-black); text-transform: uppercase; margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.foot-col ul { flex-direction: column; gap: 11px; display: flex; }
.foot-col ul li, .foot-col ul li a { color: var(--text-soft); transition: color var(--t-fast) var(--ease); font-size: 14.5px; line-height: 1.5; }
.foot-col ul li a:hover { color: var(--electric); }
.foot-col ul li small { color: var(--muted); display: block; font-size: 12px; }
.foot-app { flex-direction: column; gap: 10px; margin-top: 16px; display: flex; }
.foot-app a { border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; display: inline-flex; transition: border-color .2s; }
.foot-app a:hover { border-color: var(--tech-black); }
.foot-app a small { color: var(--muted); font-size: 10px; display: block; }
.foot-app a b { color: var(--tech-black); font-size: 13px; font-weight: 600; display: block; }
.footer-bottom { color: var(--muted); flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; font-size: 13px; display: flex; }
.pay-row { flex-wrap: wrap; align-items: center; gap: 10px; display: flex; }
.pay-chip { border: 1px solid var(--border); height: 26px; font-family: var(--f-head); letter-spacing: .02em; color: var(--text-soft); background: #fff; border-radius: 6px; flex-shrink: 0; align-items: center; padding: 0 10px; font-size: 11px; font-weight: 700; display: inline-flex; }
@media (width <= 1024px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } .foot-brand { grid-column: 1/-1; } }
@media (width >= 768px) and (width <= 1279.98px) { .footer-top { grid-template-columns: repeat(4, 1fr); } .foot-brand { grid-column: 1/-1; } }
@media (width <= 640px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; } }
@media (width <= 991.98px) { .footer-bottom { text-align: center; flex-direction: column; align-items: center; gap: 14px; } .pay-row { justify-content: center; } }

/* ==========================================================================
   Overlays: carrito, favoritos, cuenta, búsqueda, vista rápida, popup, toast
   ========================================================================== */
.cart-overlay, .wish-overlay, .acct-overlay { -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); z-index: 800; opacity: 0; pointer-events: none; transition: opacity var(--t-base) var(--ease); background: #1d1d1b73; position: fixed; inset: 0; }
.cart-overlay.is-open, .wish-overlay.is-open, .acct-overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer { z-index: 801; width: 100%; max-width: 440px; transition: transform var(--t-slow) var(--ease); background: #fff; flex-direction: column; display: flex; position: fixed; top: 0; bottom: 0; right: 0; transform: translate(110%); box-shadow: -20px 0 60px #1d1d1b24; }
.drawer.is-open { transform: translate(0); }
.drawer-head { border-bottom: 1px solid var(--border); flex-shrink: 0; justify-content: space-between; align-items: center; padding: 20px 24px; display: flex; }
.drawer-head h5 { font-family: var(--f-head); color: var(--tech-black); align-items: center; gap: 10px; font-size: 18px; font-weight: 600; display: flex; }
.count-chip { background: var(--electric); color: #fff; border-radius: var(--r-pill); padding: 3px 8px; font-size: 11px; font-weight: 700; }
.count-chip.is-red { background: var(--error); }
.drawer-x { background: var(--frost); border: 1px solid var(--border); width: 36px; height: 36px; color: var(--muted); transition: all var(--t-fast) var(--ease); border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; }
.drawer-x:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
.drawer-body { flex-direction: column; flex: 1; gap: 14px; padding: 16px 24px; display: flex; overflow-y: auto; }
.drawer-empty { text-align: center; flex-direction: column; flex: 1; justify-content: center; align-items: center; gap: 14px; padding: 40px 0; display: flex; }
.drawer-empty .empty-ic { background: var(--frost); width: 72px; height: 72px; color: var(--muted); border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; }
.drawer-empty h6 { font-family: var(--f-head); color: var(--tech-black); font-size: 18px; font-weight: 600; }
.drawer-empty p { color: var(--muted); max-width: 240px; font-size: 14px; }
.cart-item { border: 1px solid var(--border); border-radius: var(--r-lg); animation: slideIn .25s var(--ease) both; background: #fff; align-items: flex-start; gap: 14px; padding: 14px; display: flex; }
@keyframes slideIn { 0% { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.ci-img { border-radius: var(--r-md); background: var(--frost); flex-shrink: 0; width: 80px; height: 80px; overflow: hidden; }
.ci-img img { object-fit: cover; width: 100%; height: 100%; }
.ci-info { flex: 1; min-width: 0; }
.ci-brand { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: 11px; font-weight: 500; }
.ci-name { font-family: var(--f-head); color: var(--tech-black); margin: 3px 0 8px; font-size: 15px; font-weight: 600; line-height: 1.3; }
.ci-price { font-family: var(--f-head); color: var(--tech-black); font-size: 16px; font-weight: 600; }
.ci-row { justify-content: space-between; align-items: center; gap: 8px; margin-top: 8px; display: flex; }
.ci-qty { border: 1px solid var(--border); border-radius: var(--r-pill); align-items: center; display: inline-flex; overflow: hidden; }
.ci-qty button { width: 30px; height: 30px; color: var(--tech-black); transition: background var(--t-fast) var(--ease); background: #fff; border: none; justify-content: center; align-items: center; font-size: 16px; font-weight: 500; display: flex; }
.ci-qty button:hover { background: var(--frost); }
.ci-qty span { color: var(--tech-black); text-align: center; min-width: 30px; padding: 0 10px; font-size: 14px; font-weight: 600; }
.ci-remove { color: var(--muted); transition: color var(--t-fast) var(--ease); align-items: center; gap: 4px; font-size: 13px; display: flex; }
.ci-remove:hover { color: var(--error); }
.cart-summary { border-top: 1px solid var(--border); flex-direction: column; flex-shrink: 0; gap: 10px; padding: 18px 24px; display: flex; }
.cs-row { color: var(--text-soft); justify-content: space-between; font-size: 14px; display: flex; }
.cs-row.total { font-family: var(--f-head); color: var(--tech-black); border-top: 1px solid var(--border); margin-top: 4px; padding-top: 8px; font-size: 18px; font-weight: 600; }
.cart-ctas { flex-direction: column; flex-shrink: 0; gap: 8px; padding: 0 24px 24px; display: flex; }
.cart-trust { justify-content: center; gap: 18px; padding: 10px 0 0; display: flex; }
.cart-trust span { color: var(--muted); align-items: center; gap: 5px; font-size: 12px; display: flex; }
.cart-trust span svg { color: var(--success); }
.wish-row { border-bottom: 1px solid var(--border); grid-template-columns: 64px 1fr auto; align-items: center; gap: 12px; padding: 12px 0; display: grid; }
.wish-row-img { border-radius: var(--r-md); background: var(--frost); width: 64px; height: 64px; display: block; overflow: hidden; }
.wish-row-img img { object-fit: cover; width: 100%; height: 100%; }
.wish-row-name { font-family: var(--f-head); color: var(--text); font-size: 14px; font-weight: 600; line-height: 1.3; }
.wish-row-price { color: var(--text); margin-top: 4px; font-weight: 600; }
.wish-row-x { cursor: pointer; color: var(--muted); border-radius: var(--r-sm); background: 0 0; border: none; padding: 4px 8px; font-size: 22px; line-height: 1; }
.wish-row-x:hover { color: var(--error); background: var(--frost); }
.wish-foot { border-top: 1px solid var(--border); flex-shrink: 0; padding: 16px 24px; }
.wish-foot .btn { width: 100%; }
.acct-drawer { max-width: 380px; }
.acct-hero { border-bottom: 1px solid var(--border); text-align: center; flex-direction: column; flex-shrink: 0; align-items: center; gap: 14px; padding: 28px 24px 24px; display: flex; }
.acct-avatar-wrap { background: var(--frost); border: 2px solid var(--border); width: 64px; height: 64px; color: var(--muted); border-radius: 50%; justify-content: center; align-items: center; display: flex; }
.acct-hero-text { line-height: 1.5; }
.acct-hero-text span { color: var(--muted); font-size: 13px; display: block; }
.acct-hero-text strong { color: var(--tech-black); font-size: 15px; font-weight: 700; }
.acct-cta-row { gap: 10px; width: 100%; display: flex; }
.acct-btn-primary { border-radius: var(--r-pill); background: var(--tech-black); color: #fff; text-align: center; flex: 1; padding: 11px 0; font-size: 13.5px; font-weight: 700; transition: background .18s; }
.acct-btn-primary:hover { background: var(--electric); }
.acct-btn-ghost { border-radius: var(--r-pill); color: var(--tech-black); border: 1.5px solid var(--border); text-align: center; background: 0 0; flex: 1; padding: 11px 0; font-size: 13.5px; font-weight: 700; transition: border-color .18s; }
.acct-btn-ghost:hover { border-color: var(--tech-black); }
.acct-body { flex: 1; padding: 8px 0; overflow-y: auto; }
.acct-section-label { letter-spacing: .07em; text-transform: uppercase; color: var(--muted); padding: 14px 24px 6px; font-size: 11px; font-weight: 700; }
.acct-link { color: var(--tech-black); align-items: center; gap: 14px; padding: 13px 24px; font-size: 14px; font-weight: 500; transition: background .15s; display: flex; }
.acct-link:hover { background: var(--frost); }
.acct-link svg { color: var(--muted); flex-shrink: 0; }

/* Búsqueda */
.search-overlay { z-index: 900; -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); opacity: 0; pointer-events: none; transition: opacity .28s var(--ease); background: radial-gradient(130% 110% at 50% -10%, #42bc0d38, #1d1d1bc7 55%); flex-direction: column; align-items: center; padding: 110px 20px 40px; display: flex; position: fixed; inset: 0; }
.search-overlay.is-open { opacity: 1; pointer-events: all; }
.search-box { opacity: 0; width: 100%; max-width: 640px; transition: transform .34s var(--ease), opacity .28s var(--ease); background: #fff; border: 1px solid #ffffff8c; border-radius: 22px; overflow: hidden; transform: translateY(16px) scale(.97); box-shadow: 0 2px 8px #1d1d1b0d, 0 30px 80px #1d1d1b5c; }
.search-overlay.is-open .search-box { opacity: 1; transform: translateY(0) scale(1); }
.search-input-row { border-bottom: 1px solid var(--border); align-items: center; gap: 14px; padding: 16px 18px; display: flex; }
.search-ic { width: 42px; height: 42px; color: var(--electric); background: linear-gradient(140deg, #42bc0d24, #42bc0d0a); border-radius: 13px; flex-shrink: 0; justify-content: center; align-items: center; display: flex; }
.search-input-row input { appearance: none; border: 1.5px solid var(--border); min-width: 0; font-family: var(--f-body); color: var(--tech-black); background: var(--frost); transition: border-color .2s, box-shadow .2s, background .2s; border-radius: 12px; outline: 0; flex: 1; margin: 0; padding: 11px 16px; font-size: 16.5px; font-weight: 500; line-height: 1.4; }
.search-input-row input:focus { border-color: var(--electric); background: #fff; box-shadow: 0 0 0 3px #42bc0d24; }
.search-close-btn kbd { background: var(--frost); border: 1px solid var(--border); font-family: var(--f-body); letter-spacing: .06em; color: var(--muted); transition: all var(--t-fast) var(--ease); border-bottom-width: 2px; border-radius: 9px; align-items: center; padding: 6px 10px; font-size: 11px; font-weight: 700; display: inline-flex; }
.search-close-btn:hover kbd { background: var(--tech-black); border-color: var(--tech-black); color: #fff; transform: translateY(-1px); }
.search-hints { padding: 18px 18px 20px; }
.search-hint-label { letter-spacing: .08em; text-transform: uppercase; color: var(--muted); align-items: center; gap: 6px; margin-bottom: 14px; font-size: 11px; font-weight: 700; display: flex; }
.search-hint-label svg { color: var(--electric); }
.search-hint-pills { flex-wrap: wrap; gap: 9px; display: flex; }
.search-hint-pill { border-radius: var(--r-pill); background: var(--frost); color: var(--tech-black); cursor: pointer; transition: all .2s var(--ease); white-space: nowrap; border: 1px solid #0000; padding: 8px 15px; font-size: 13px; font-weight: 600; }
.search-hint-pill:hover { border-color: var(--electric); color: var(--electric); background: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px #42bc0d2e; }
.search-results { max-height: min(58vh, 520px); padding: 8px 10px 10px; overflow-y: auto; }
.search-results[hidden] { display: none; }
.sr-label { letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 4px 12px 8px; font-size: 10.5px; font-weight: 700; }
.sr-product { transition: background .15s var(--ease); border-radius: 14px; align-items: center; gap: 13px; padding: 8px 12px; display: flex; }
.sr-product:hover { background: var(--frost); }
.sr-thumb { background: var(--frost); border: 1px solid var(--border); border-radius: 12px; flex-shrink: 0; width: 50px; height: 50px; overflow: hidden; }
.sr-thumb img { object-fit: cover; width: 100%; height: 100%; }
.sr-info { flex-direction: column; gap: 3px; min-width: 0; display: flex; }
.sr-name { color: var(--tech-black); white-space: nowrap; text-overflow: ellipsis; font-size: 14px; font-weight: 600; overflow: hidden; }
.sr-price { color: var(--electric); font-size: 13px; font-weight: 700; }
.sr-empty { text-align: center; color: var(--muted); padding: 34px 16px; font-size: 14px; }

/* Vista rápida */
.qv-overlay { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); z-index: 850; opacity: 0; pointer-events: none; transition: opacity var(--t-base) var(--ease); background: #1d1d1b8c; justify-content: center; align-items: center; padding: 20px; display: flex; position: fixed; inset: 0; }
.qv-overlay.is-open { opacity: 1; pointer-events: auto; }
.qv-modal { border-radius: var(--r-2xl); width: 100%; max-width: 820px; max-height: 90vh; box-shadow: var(--shadow-xl); transition: transform var(--t-slow) var(--ease); background: #fff; grid-template-columns: 1fr 1fr; display: grid; position: relative; overflow-y: auto; transform: scale(.96) translateY(12px); }
.qv-overlay.is-open .qv-modal { transform: scale(1) translateY(0); }
.qv-close { z-index: 2; background: var(--frost); border: 1px solid var(--border); width: 36px; height: 36px; color: var(--muted); transition: all var(--t-fast) var(--ease); border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; position: absolute; top: 16px; right: 16px; }
.qv-close:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
.qv-media { background: var(--frost); border-radius: var(--r-2xl) 0 0 var(--r-2xl); aspect-ratio: 1; justify-content: center; align-items: center; padding: 32px; display: flex; overflow: hidden; }
.qv-media img { object-fit: contain; width: 100%; height: 100%; }
.qv-body { flex-direction: column; gap: 14px; padding: 36px 30px; display: flex; }
.qv-brand { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 600; }
.qv-name { font-family: var(--f-head); color: var(--tech-black); font-size: 24px; font-weight: 600; line-height: 1.2; }
.qv-price-row { align-items: baseline; gap: 10px; display: flex; }
.qv-price-row .now { font-family: var(--f-head); color: var(--tech-black); font-size: 28px; font-weight: 600; }
.qv-price-row .was { color: var(--muted); font-size: 16px; text-decoration: line-through; }
.qv-price-row .save { color: var(--success); font-size: 13px; font-weight: 700; }
.qv-divider { background: var(--border); height: 1px; }
.qv-desc { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }
.qv-buy { align-items: stretch; gap: 10px; margin-top: auto; display: flex; }
.qv-buy .btn-primary { flex: 1; }
.qv-qty { border: 1.5px solid var(--border); border-radius: var(--r-lg); flex-shrink: 0; align-items: center; display: inline-flex; overflow: hidden; }
.qv-qty button { cursor: pointer; width: 38px; color: var(--tech-black); background: 0 0; border: 0; justify-content: center; align-self: stretch; align-items: center; display: inline-flex; font-size: 18px; }
.qv-qty button:hover { background: var(--frost); }
.qv-qty input { text-align: center; width: 36px; font-family: var(--f-head); color: var(--tech-black); background: 0 0; border: 0; font-size: 15px; font-weight: 600; -moz-appearance: textfield; }
.qv-qty input::-webkit-outer-spin-button, .qv-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qv-details { color: var(--muted); transition: color var(--t-fast) var(--ease), gap var(--t-fast) var(--ease); align-items: center; gap: 6px; margin-top: 12px; font-size: 13.5px; font-weight: 600; display: inline-flex; }
.qv-details:hover { color: var(--electric); gap: 9px; }
@media (width <= 680px) { .qv-modal { grid-template-columns: 1fr; max-width: 420px; } .qv-media { border-radius: var(--r-2xl) var(--r-2xl) 0 0; } .qv-body { padding: 24px 22px; } }

/* Popup asesor */
.popup-backdrop { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); z-index: 900; opacity: 0; pointer-events: none; transition: opacity var(--t-slow) var(--ease); background: #1d1d1b8c; justify-content: center; align-items: center; padding: 20px; display: flex; position: fixed; inset: 0; }
.popup-backdrop.is-open { opacity: 1; pointer-events: auto; }
.popup { border-radius: var(--r-2xl); width: 100%; max-width: 860px; box-shadow: var(--shadow-xl); transition: transform var(--t-slow) var(--ease); background: #fff; grid-template-columns: 1fr 1.1fr; display: grid; position: relative; overflow: hidden; transform: translateY(24px) scale(.97); }
.popup-backdrop.is-open .popup { transform: translateY(0) scale(1); }
.popup-visual { background: var(--graphite); isolation: isolate; flex-direction: column; justify-content: flex-end; min-height: 480px; padding: 36px; display: flex; position: relative; overflow: hidden; }
.popup-visual img { object-fit: cover; opacity: .55; z-index: -1; width: 100%; height: 100%; position: absolute; inset: 0; }
.popup-visual::after { content: ""; z-index: -1; background: radial-gradient(closest-side at 30% 20%, #bccf0247, #0000 70%), linear-gradient(160deg, #42bc0d4d 0%, #1d1d1bcc 100%); position: absolute; inset: 0; }
.popup-visual .logo img { height: 34px; }
.popup-body { flex-direction: column; justify-content: center; padding: 46px 40px 40px; display: flex; position: relative; }
.popup-close { background: var(--frost); border: 1px solid var(--border); width: 36px; height: 36px; color: var(--muted); transition: all var(--t-base) var(--ease); border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; position: absolute; top: 18px; right: 18px; }
.popup-close:hover { background: var(--tech-black); color: #fff; border-color: var(--tech-black); }
.popup-eyebrow { letter-spacing: .14em; text-transform: uppercase; color: var(--electric); margin-bottom: 10px; font-size: 11px; font-weight: 700; }
.popup-body h4 { font-family: var(--f-head); color: var(--tech-black); letter-spacing: -.01em; margin-bottom: 10px; font-size: 30px; font-weight: 600; line-height: 1.18; }
.popup-body > p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }
.popup-form { flex-direction: column; gap: 12px; display: flex; }
.popup-input-wrap { position: relative; }
.popup-input-wrap svg { color: var(--muted); pointer-events: none; position: absolute; top: 50%; left: 16px; transform: translateY(-50%); }
.popup-input { background: var(--frost); border: 1.5px solid var(--border); border-radius: var(--r-pill); width: 100%; color: var(--tech-black); transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); padding: 14px 18px 14px 44px; font-size: 15px; }
.popup-input:focus { border-color: var(--electric); background: #fff; box-shadow: 0 0 0 3px #42bc0d1f; }
.popup-skip { text-align: center; color: var(--muted); margin-top: 16px; font-size: 13px; }
.popup-skip a { color: var(--muted); text-underline-offset: 3px; text-decoration: underline; cursor: pointer; }
.popup-skip a:hover { color: var(--tech-black); }
@media (width <= 700px) { .popup { grid-template-columns: 1fr; max-width: 420px; } .popup-visual { display: none; } .popup-body { padding: 36px 28px 32px; } .popup-body h4 { font-size: 24px; } }

/* Toast, volver arriba, WhatsApp flotante */
.toast { background: var(--tech-black); color: #fff; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; z-index: 400; transition: opacity var(--t-base), transform var(--t-base); padding: 12px 20px; font-size: 14px; font-weight: 600; position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 16px); display: flex; align-items: center; }
.toast.is-visible { opacity: 1; transform: translate(-50%); }
.toast-action { color: var(--cyan); pointer-events: auto; cursor: pointer; border-left: 1px solid #ffffff40; margin-left: 12px; padding-left: 12px; font-weight: 700; }
.to-top { background: var(--tech-black); color: #fff; width: 48px; height: 48px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all var(--t-base) var(--ease); z-index: 99; border-radius: 50%; justify-content: center; align-items: center; display: inline-flex; position: fixed; bottom: 24px; right: 24px; transform: translateY(12px); }
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--electric); transform: translateY(-2px); }
.wa-float { position: fixed; z-index: 98; left: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 6px 16px 6px 6px; box-shadow: var(--shadow-lg); transition: transform .22s; font-size: 13px; font-weight: 600; color: var(--tech-black); }
.wa-float:hover { transform: translateY(-2px); }
.wa-float .wa-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--wa); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.wa-float small { display: block; color: var(--muted); font-weight: 400; font-size: 11px; }
@media (width <= 640px) { .wa-float span { display: none; } .wa-float { padding: 4px; } }


/* ==========================================================================
   Modo estructura: placeholders en lugar de imágenes, banner full-width,
   botones y márgenes marcados. Paleta corporativa Cahuana.
   ========================================================================== */
:root { --lime: #bccf02; --green: #42bc0d; --electric: #42bc0d; --electric-hov: #36a009; --cyan: #bccf02; --tech-black: #1d1d1b; --graphite: #2a2a27; --frost: #f4f6fb; --soft-blue: #eef8e8; --soft-cyan: #f7f9e0; --ph-line: #b9c0cb; }

/* Placeholders */
.ph { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; box-sizing: border-box; overflow: hidden; color: #6b7280; font-family: var(--f-body); font-size: 12px; font-weight: 600; letter-spacing: .02em; line-height: 1.3; padding: 10px;
  background: repeating-linear-gradient(135deg, #e9edf3 0 12px, #f4f6fb 12px 24px); border: 2px dashed var(--ph-line); border-radius: 12px; }
.ph::before { content: ""; width: 26px; height: 22px; margin-right: 8px; flex-shrink: 0; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%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' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat; opacity: .8; }
.ph::after { content: attr(data-label); max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-dark { background: repeating-linear-gradient(135deg, #262624 0 12px, #1d1d1b 12px 24px); border-color: #ffffff40; color: #ffffffb3; }
.ph.ico, .marquee-prod-img.ph, .sr-thumb .ph, .ci-img .ph, .wish-row-img .ph { padding: 0; font-size: 0; }
.ph.ico::before, .marquee-prod-img.ph::before, .sr-thumb .ph::before, .ci-img .ph::before, .wish-row-img .ph::before { margin: 0; width: 18px; height: 16px; }
.ph.ico::after, .marquee-prod-img.ph::after, .sr-thumb .ph::after, .ci-img .ph::after, .wish-row-img .ph::after { display: none; }

/* Placeholders en cada contexto (donde antes había <img>) */
.prod-media .ph, .cat-img .ph, .deal-media .ph, .blog-media .ph, .cmp-img .ph, .bundle-item .ph, .lk-pc-img .ph, .qv-media .ph, .sr-thumb .ph, .ci-img .ph, .wish-row-img .ph { width: 100%; height: 100%; border-radius: 0; border-width: 0; border-bottom: 2px dashed var(--ph-line); }
.cmp-img .ph, .bundle-item .ph, .qv-media .ph, .sr-thumb .ph, .ci-img .ph, .wish-row-img .ph, .lk-pc-img .ph { border: 2px dashed var(--ph-line); border-radius: inherit; }
.hero-card-lg .hero-img-bg.ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: none; z-index: 0; font-size: 14px; align-items: flex-start; justify-content: flex-end; padding: 28px 32px; }
.hero-card-product-wrap .ph { width: 78%; height: 260px; max-width: 420px; }
.promo .ph.bg { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: none; z-index: -2; align-items: flex-start; justify-content: flex-end; padding: 22px 26px; }
.need-card .ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: none; z-index: -2; align-items: flex-start; justify-content: flex-end; padding: 22px; }
.lookbook-img.ph { width: 100%; height: 640px; border-radius: 22px; font-size: 14px; }
.lk-img-veil { display: none; }
.spot-media .ph { width: 100%; height: 100%; min-height: 480px; border-radius: 0; border: none; font-size: 14px; }
.mega-feature .ph { aspect-ratio: 16/10; margin-top: 12px; border-radius: var(--r-md); }
.mega-veh-card .ph { aspect-ratio: 1; border-radius: var(--r-md); }
.popup-visual .ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: none; z-index: -1; align-items: flex-start; justify-content: flex-end; padding: 22px; }
.popup-visual::after { display: none; }
.popup-visual .logo { color: #fff; }
.popup-visual .logo-dot { color: var(--lime); }
.cat-card:hover .cat-img .ph, .prod-card:hover .prod-media .ph { transform: none; }

/* Logo tipográfico */
.logo-mark { background: linear-gradient(135deg, var(--green), var(--lime)); box-shadow: 0 6px 18px #42bc0d59; }
.logo-dot { color: var(--green); }

/* Marcas como texto */
.brand-scroll-track .brand { font-family: var(--f-head); color: #9aa1ab; letter-spacing: -.02em; white-space: nowrap; font-size: 22px; font-weight: 700; filter: none; opacity: 1; }
.brand-scroll-track .brand:hover { color: var(--tech-black); }

/* Banner a ancho completo */
.hero { padding: 0; background: var(--tech-black); }
.hero-stage { max-width: none; padding: 0; }
.hero-cards { gap: 0; }
.hero-card { border-radius: 0; min-height: 620px; }
.hero-card-sm { border-left: 2px dashed #ffffff33; }
.hero-card-content { padding: 60px clamp(24px, 5vw, 90px); }
.hero-dots { top: 24px; right: 32px; }
.hero-dots button { background: #ffffff59; }
.hero-dots button.is-active { background: var(--lime); }
.hero-card-sm-eyebrow { background: linear-gradient(90deg, var(--lime), var(--green)); -webkit-background-clip: text; background-clip: text; }
@media (width <= 1100px) { .hero-stage { padding: 0; } .hero-cards { gap: 0; } .hero-card { border-radius: 0; } .hero-card-sm { border-left: none; border-top: 2px dashed #ffffff33; } }
@media (width <= 640px) { .hero { padding: 0; } .hero-card { border-radius: 0; } }

/* Botones bien marcados */
.btn { border-width: 2px; font-weight: 700; }
.btn-primary { background: var(--green); color: #fff; border-color: #36a009; box-shadow: 0 6px 0 #2f8f08, 0 10px 22px #42bc0d40; }
.btn-primary:hover:not(:disabled) { background: var(--electric-hov); border-color: #2f8f08; transform: translateY(2px); box-shadow: 0 4px 0 #2f8f08, 0 8px 18px #42bc0d40; }
.btn-secondary { background: #fff; color: var(--tech-black); border-color: var(--tech-black); }
.btn-secondary:hover { background: var(--tech-black); color: #fff; }
.btn-dark { background: var(--tech-black); color: #fff; border-color: var(--tech-black); box-shadow: 0 5px 0 #000; }
.btn-dark:hover { background: var(--green); border-color: #36a009; box-shadow: 0 5px 0 #2f8f08; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--tech-black); border-color: #fff; box-shadow: 0 5px 0 #c9ced8; }
.btn-light:hover { background: var(--lime); border-color: var(--lime); color: var(--tech-black); box-shadow: 0 5px 0 #8fa000; }
.btn-wa { border-color: #1ebe5b; box-shadow: 0 5px 0 #159a47, 0 10px 22px #25d36640; }
.btn-wa:hover { transform: translateY(2px); box-shadow: 0 3px 0 #159a47; }
.btn-ghost { border: 2px dashed transparent; }
.btn-ghost:hover { border-color: currentColor; }
.hero-card-ctas .btn { border-width: 2px; font-weight: 700; }
.hero-cta-light { background: var(--lime); border-color: var(--lime); color: var(--tech-black); box-shadow: 0 5px 0 #8fa000; }
.hero-cta-light:hover { background: #d3e51a; border-color: #d3e51a; transform: translateY(-1px); }
.hero-cta-dark { color: #fff; border-color: #fff; }
.hero-cta-dark:hover { background: var(--green); border-color: var(--green); }
.tab.is-active { background: var(--green); color: #fff; }
.tabs { border-width: 2px; }
.icon-btn { border: 2px solid #d5dae2; }
.icon-btn:hover { border-color: var(--tech-black); }
.icon-btn .badge { background: var(--green); }
.search-toggle { border-width: 2px; }
.prod-quick, .deal-quick, .lk-pc-add, .cu-add, .acct-btn-primary { border: 2px solid var(--tech-black); font-weight: 700; }
.lk-pc-add { border-color: #36a009; }
.prod-qview, .deal-qview, .prod-wish, .prod-compare, .deal-icon-btn, .cat-shop, .drawer-x, .qv-close, .popup-close, .spot-arrow { border: 2px solid #d5dae2; }
.spot-arrow { border-color: #ffffff80; }
.sec-head .link { border-bottom-width: 3px; }
.nav-link .hot { background: var(--green); }
.news-form { border: 2px solid #ffffff40; }
.news-form .btn { box-shadow: none; }
.ct-cell { border: 2px solid #ffffff33; }
.cat-card, .prod-card, .deal-card, .bundle, .blog-card, .compare-wrap, .mega-veh-card, .test-card, .bundle-feat-ul { border-width: 2px; }
.cat-card:hover, .prod-card:hover, .deal-card:hover, .bundle:hover, .blog-card:hover { border-color: var(--green); }
.cmp-col.is-best { outline: 2px solid var(--green); outline-offset: -2px; }
.badge-new, .badge-hot { background: var(--lime); color: var(--tech-black); }
.badge-sale { background: var(--green); }
.deal-off-bubble { background: var(--green); box-shadow: 0 8px 18px #42bc0d59; }
.prod-save, .bundle-save { color: #36a009; }
.test-stars, .test-head-trust .stars { color: var(--green); }
.test-eye-dot { background: var(--green); box-shadow: 0 0 0 4px #42bc0d2e; }
.trust-ic { background: #eef8e8; color: var(--green); border: 2px solid #d6efc9; }
.need-ic { border-width: 2px; }
.foot-social a, .foot-app a, .pay-chip { border-width: 2px; }
.announce-msg b, .announce-slide b { color: var(--lime); }

/* Márgenes marcados: contorno del contenedor y separación de secciones */
main .container, .footer .container { outline: 1px dashed var(--ph-line); outline-offset: -1px; }
main > section { border-top: 2px dashed #d5dae2; }
main > section.hero, main > section.trust { border-top: none; }
.trust { border-top: 2px dashed #d5dae2; border-bottom: 2px dashed #d5dae2; }
.sec-frost, .test-sec { box-shadow: inset 0 0 0 1px #e3e7ee; }
.marquee-sec { border-top: 2px dashed #ffffff33; border-bottom: 2px dashed #ffffff33; }
.footer { border-top: 2px dashed #d5dae2; }
.footer-top { border-bottom: 2px dashed var(--ph-line); }
.site-header { border-bottom: 2px solid var(--tech-black); }
.hero-card-lg .hero-img-bg.ph { align-items: flex-end; padding: 28px 32px 34px; }
.search-toggle span { white-space: nowrap; }
.search-toggle { min-width: 200px; }
.header-inner { gap: 20px; }
.nav-link { padding: 10px 10px; font-size: 14.5px; }
.search-toggle { min-width: 170px; padding: 10px 14px; }
@media (width <= 1440px) { .search-toggle { min-width: 0; width: 44px; height: 44px; padding: 0; border-radius: 50%; justify-content: center; gap: 0; } .search-toggle span, .search-toggle .kbd { display: none; } }
