/* ==========================================================================
   STREAMZONE 2.0 — PIXEL-PERFECT DESIGN SYSTEM v10
   Reference: Exact mockup — dark promo bar, white sticky nav, blue hero
   ========================================================================== */

:root {
  --sz-primary: #2563eb;
  --sz-primary-hover: #1d4ed8;
  --sz-text-dark: #0f172a;
  --sz-text-muted: #64748b;
  --sz-border: #e2e8f0;
  --sz-bg: #f8fafc;
  --sz-white: #ffffff;
  --sz-shadow: 0 2px 16px rgba(15,23,42,0.06);
  --sz-radius: 14px;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  overflow-x: hidden;
}

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

/* =============================================
   1. PROMO BAR — Dark background matching mockup
   ============================================= */
.sz-top-promo-bar {
  background: #1e293b;
  padding: 8px 0;
  position: relative;
  z-index: 1002;
  overflow: hidden;
}

.sz-promo-bar-track {
  display: flex;
  width: max-content;
  animation: promoscroll 30s linear infinite;
  gap: 0;
}

.sz-promo-bar-track:hover { animation-play-state: paused; }

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

.sz-promo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 12.5px;
  color: #cbd5e1;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.sz-promo-item .emoji { font-size: 14px; }
.sz-promo-item strong { color: #f1f5f9; font-weight: 700; }
.sz-promo-item a { color: #7dd3fc; font-weight: 600; }

/* =============================================
   2. NAVBAR — Sticky, clean white, blur
   ============================================= */
.sz-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  height: auto;
  display: block;
}

.sz-navbar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sz-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.sz-brand-icon-sq {
  width: 34px;
  height: 34px;
  background: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.sz-brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.sz-brand-name span { color: #0284c7; }

.sz-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.sz-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

.sz-nav-link:hover { color: #2563eb; }

.sz-nav-link.active {
  color: #2563eb;
  font-weight: 700;
}

.sz-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
  border-radius: 9999px;
}

.sz-btn-venta-nav {
  background: #2563eb;
  color: white !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  transition: all 0.2s;
}

.sz-btn-venta-nav:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.sz-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sz-ctrl-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

.sz-ctrl-pill select {
  appearance: none;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  outline: none;
  padding-right: 12px;
}

.sz-cart-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #0f172a;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: background 0.2s;
}

.sz-cart-btn:hover { background: #f1f5f9; }

.sz-cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  background: #2563eb;
  color: white;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* =============================================
   3. HERO SECTION — Blue room atmosphere
   ============================================= */
.sz-hero-section {
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 40%, #f0f9ff 70%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 52px 24px 60px;
}

.sz-hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sz-hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.sz-hero-left { display: flex; flex-direction: column; gap: 18px; }

.sz-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  width: fit-content;
}

.sz-hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -1px;
}

.sz-hero-title .blue { color: #2563eb; }

.sz-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  max-width: 480px;
}

.sz-hero-trust3 {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sz-trust3-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sz-trust3-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.sz-trust3-text strong { display: block; font-size: 12.5px; font-weight: 700; color: #0f172a; }
.sz-trust3-text span { font-size: 11px; color: #64748b; }

.sz-hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sz-cta-primary {
  padding: 12px 26px;
  background: #2563eb;
  color: white !important;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sz-cta-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.sz-cta-secondary {
  padding: 11px 24px;
  background: transparent;
  color: #2563eb !important;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid #2563eb;
  border-radius: 8px;
  transition: all 0.2s;
}

.sz-cta-secondary:hover { background: #eff6ff; }

.sz-hero-dots { display: flex; gap: 6px; align-items: center; }
.sz-dot { width: 6px; height: 6px; border-radius: 9999px; background: #94a3b8; }
.sz-dot.active { width: 20px; background: #1e293b; }

.sz-hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.sz-tv-room {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.sz-tv-room::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg,rgba(147,197,253,0.15) 0%,rgba(186,230,253,0.25) 50%,rgba(224,242,254,0.1) 100%);
  border-radius: 24px;
  z-index: 0;
}

.sz-tv-outer {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  border: 2.5px solid #1e293b;
  border-radius: 12px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 60px rgba(15,23,42,0.3),
    0 0 60px rgba(56,189,248,0.1);
  aspect-ratio: 16 / 9.5;
}

.sz-tv-screen {
  background: radial-gradient(ellipse at 60% 40%, #0f172a 0%, #020617 100%);
  border-radius: 8px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sz-tv-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 20px;
  width: 100%;
  max-width: 420px;
  align-items: center;
  justify-items: center;
}

.sz-brand-netflix { color: #e50914; font-size: 22px; font-weight: 900; font-family: 'Impact', sans-serif; letter-spacing: 1px; }
.sz-brand-disney { color: #fff; font-size: 19px; font-weight: 800; font-family: Georgia, serif; font-style: italic; }
.sz-brand-disney span { color: #38bdf8; }
.sz-brand-hbo { color: #fff; font-size: 20px; font-weight: 900; }
.sz-brand-hbo span { font-style: italic; }
.sz-brand-prime { color: #00a8e1; font-size: 15px; font-weight: 700; }
.sz-brand-youtube { color: #ff0000; font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 4px; }
.sz-brand-youtube span { color: #fff; font-size: 14px; }
.sz-brand-spotify { color: #1db954; font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.sz-brand-iptv { color: #facc15; font-size: 18px; font-weight: 900; letter-spacing: 2px; }
.sz-brand-paramount { color: #fff; font-size: 15px; font-weight: 700; }
.sz-brand-more { color: #64748b; font-size: 14px; font-weight: 600; }

.sz-tv-stand-row {
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

.sz-tv-leg {
  width: 16px;
  height: 22px;
  background: linear-gradient(180deg, #334155, #1e293b);
  clip-path: polygon(25% 0%,75% 0%,100% 100%,0% 100%);
}

@media (max-width: 960px) {
  .sz-hero-wrap { grid-template-columns: 1fr; }
  .sz-hero-right { display: none; }
  .sz-hero-title { font-size: 32px; }
}

/* =============================================
   4. CATEGORIES ROW
   ============================================= */
.sz-cats-wrap {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 24px;
}

.sz-cats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.sz-cat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #0f172a;
}

.sz-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border-color: #cbd5e1;
}

.sz-cat-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sz-cat-label { font-size: 13px; font-weight: 700; color: #0f172a; }

.sz-cat-circle.stream { background: #eff6ff; color: #2563eb; }
.sz-cat-circle.music { background: #f0fdf4; color: #16a34a; }
.sz-cat-circle.tv { background: #faf5ff; color: #9333ea; }
.sz-cat-circle.entret { background: #fff7ed; color: #ea580c; }
.sz-cat-circle.lic { background: #f0fdfa; color: #0d9488; }
.sz-cat-circle.promo { background: #fef2f2; color: #dc2626; }

@media (max-width: 900px) { .sz-cats-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 500px) { .sz-cats-grid { grid-template-columns: repeat(2,1fr); } }

/* =============================================
   5. SECTION HEADERS & CONTAINERS
   ============================================= */
.sz-sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
}

.sz-sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sz-sec-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.sz-sec-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sz-ver-todos {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
}

.sz-arr {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.15s;
}

.sz-arr:hover { background: #f1f5f9; color: #0f172a; }

/* =============================================
   6. PRODUCT CARDS GRID — 6 columns
   ============================================= */
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1200px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 380px) { .grid { grid-template-columns: 1fr; gap: 12px; } }

.sz-product-card-20 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  cursor: pointer;
}

.sz-product-card-20:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.09);
  border-color: #cbd5e1;
}

.sz-card-media-wrap {
  width: 100%;
  background: #0f172a;
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}

.sz-card-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.sz-product-card-20:hover .sz-card-media-wrap img { /* zoom removed */ }

.sz-card-discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: white;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  z-index: 3;
  letter-spacing: 0.3px;
}

.sz-card-top-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #2563eb;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  z-index: 3;
}

.sz-card-content {
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.sz-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* aliases for crearCard compatibility */
.sz-card-price-row {
  display: flex;
  align-items: flex-end; /* Alineado por debajo con el precio */
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 2px;
  min-height: 25px;
}
.sz-card-desde,
.sz-card-since { font-size: 11px; color: #94a3b8; font-weight: 500; margin: 0; }
.sz-card-prices { display: inline-flex; align-items: baseline; gap: 5px; line-height: 1; }
.sz-card-main-price,
.sz-card-price { font-size: 16px; font-weight: 800; color: #0f172a; line-height: 1; }
.sz-card-old-price { font-size: 11.5px; color: #94a3b8; text-decoration: line-through; }

/* Píldoras de variantes de duración en la card */
.sz-card-duration-pills {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 6px 0 3px;
}
.sz-duration-pill {
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2.5px 8px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  line-height: 1.2;
}
.sz-duration-pill:hover {
  background: #e0f2fe;
  border-color: #0284c7;
}
.sz-duration-pill.active {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 1px 4px rgba(2, 132, 199, 0.3);
}

.sz-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.sz-card-stars { color: #f59e0b; font-size: 10px; }
.sz-card-stars i { font-size: 9px; }
.sz-stars-gold { color: #f59e0b; font-size: 10px; }
.sz-card-score,
.sz-rating-score { font-weight: 700; color: #0f172a; }
.sz-card-reviews,
.sz-rating-count { color: #94a3b8; }

.sz-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}

.sz-btn-card-buy {
  flex: 1;
  height: 34px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: inherit;
}

.sz-btn-card-buy:hover:not(.disabled) { background: #1d4ed8; }
.sz-btn-card-buy.disabled { background: #cbd5e1; color: #94a3b8; cursor: not-allowed; }

.sz-btn-card-eye {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}

.sz-btn-card-eye:hover { background: #f8fafc; color: #0f172a; border-color: #cbd5e1; }

/* =============================================
   7. LICENSES CAROUSEL
   ============================================= */
.sz-lic-carousel-outer {
  position: relative;
  overflow: visible;
}

.sz-lic-carousel-track-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  display: flex;
  gap: 18px;
  padding-bottom: 4px;
}

.sz-lic-carousel-track-wrap::-webkit-scrollbar { display: none; }

.sz-lic-card {
  flex: 0 0 calc(16.666% - 16px);
  min-width: 140px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
  color: #0f172a;
  scroll-snap-align: start;
}

.sz-lic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border-color: #cbd5e1;
}

.sz-lic-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 38px; }
.sz-lic-name { font-size: 13px; font-weight: 700; color: #0f172a; }
.sz-lic-desde { font-size: 11px; color: #94a3b8; }
.sz-lic-price { font-size: 16px; font-weight: 800; color: #2563eb; }

/* =============================================
   8. BENEFITS STRIP
   ============================================= */
.sz-benefits-bar {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 24px;
}

.sz-benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sz-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 170px;
}

.sz-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sz-benefit-text strong { display: block; font-size: 13px; font-weight: 700; color: #0f172a; }
.sz-benefit-text span { font-size: 11.5px; color: #64748b; }

/* =============================================
   9. TESTIMONIALS INFINITE CAROUSEL
   ============================================= */
.sz-test-section {
  padding: 40px 0;
  background: #f8fafc;
  overflow: hidden;
}

.sz-test-title-row {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sz-marquee-lane {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-l 35s linear infinite;
  margin-bottom: 16px;
}

.sz-marquee-lane.reverse {
  animation: marquee-r 40s linear infinite;
}

.sz-marquee-lane:hover { animation-play-state: paused; }

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

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

.sz-test-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  flex-shrink: 0;
  width: 280px;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}

.sz-test-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.sz-test-text { font-size: 13px; line-height: 1.55; color: #334155; flex: 1; }
.sz-test-author { font-size: 12px; font-weight: 700; color: #0f172a; }

/* =============================================
   10. RESELLER CTA BANNER
   ============================================= */
.sz-reseller-wrap {
  max-width: 1280px;
  margin: 0 auto 50px;
  padding: 0 24px;
}

.sz-reseller-banner {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #8b5cf6 100%);
  border-radius: 20px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 16px 40px rgba(37,99,235,0.3);
}

.sz-reseller-left {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.sz-reseller-hs {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.sz-reseller-texts h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
  color: white;
}

.sz-reseller-texts p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.sz-btn-join {
  padding: 13px 32px;
  background: white;
  color: #4338ca !important;
  font-weight: 800;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all 0.2s;
  flex-shrink: 0;
}

.sz-btn-join:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .sz-reseller-banner { flex-direction: column; padding: 28px; text-align: center; }
  .sz-reseller-left { flex-direction: column; }
}

/* =============================================
   11. FOOTER — Clean white, NO social icons
   ============================================= */
.sz-footer-20 {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 52px 24px 0;
}

.sz-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.sz-foot-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 260px;
}

.sz-foot-col-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  display: block;
}

.sz-foot-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sz-foot-link {
  font-size: 13px;
  color: #64748b;
  transition: color 0.15s;
}

.sz-foot-link:hover { color: #2563eb; }

.sz-footer-bottom {
  border-top: 1px solid #f1f5f9;
  padding: 20px 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.sz-footer-copy { font-size: 12px; color: #94a3b8; }

.sz-payments-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sz-payment-logo {
  height: 24px;
  object-fit: contain;
  filter: grayscale(0.1);
  border-radius: 4px;
  background: white;
  padding: 2px 4px;
  border: 1px solid #e2e8f0;
}

.sz-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  font-size: 11.5px;
  font-weight: 800;
  background: white;
}

.sz-payment-badge.visa { color: #1a1f71; }
.sz-payment-badge.mc { color: #eb001b; }
.sz-payment-badge.pse { color: #007940; }

@media (max-width: 900px) {
  .sz-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .sz-footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   12. CART DRAWER — Premium dark style (RIGHT SLIDE-IN)
   NEVER overlaps footer — it's a fixed drawer
   ============================================= */
#carritoContainer {
  position: fixed !important;
  top: 0 !important;
  right: -420px !important;
  width: 400px !important;
  height: 100vh !important;
  background: #1e293b !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.35) !important;
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1) !important;
  overflow: hidden !important;
  border-left: 1px solid rgba(255,255,255,0.08) !important;
  /* Cart is always fixed — does NOT push or overlap page footer */
}

#carritoContainer.open {
  right: 0 !important;
}

/* Cart Overlay (background dimming) */
.sz-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}

.sz-cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Cart Header */
.sz-cart-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.sz-cart-hdr-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 17px;
  font-weight: 700;
}

.sz-cart-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.15s;
  font-family: inherit;
}

.sz-cart-close-btn:hover { background: rgba(255,255,255,0.15); color: white; }

/* Cart Items List */
.sz-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

/* Individual Cart Item Row */
.sz-cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px;
}

.sz-cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #0f172a;
}

.sz-cart-item-info { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.sz-cart-item-name { font-size: 14px; font-weight: 600; color: white; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sz-cart-item-qty { font-size: 12px; color: #94a3b8; }

.sz-cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.sz-cart-item-price { font-size: 14px; font-weight: 700; color: white; white-space: nowrap; }

.sz-remove-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.15s;
  font-family: inherit;
}

.sz-remove-btn:hover { background: rgba(239,68,68,0.3); color: white; }

/* Cart Footer — Total + Checkout */
.sz-cart-ftr {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

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

.sz-cart-total-label { font-size: 14px; color: #94a3b8; font-weight: 600; }
.sz-cart-total-amount { font-size: 24px; font-weight: 800; color: #60a5fa; }

.sz-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white !important;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.4);
  font-family: inherit;
}

.sz-btn-checkout:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.5);
}

/* Empty cart state */
.sz-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px 20px;
  color: #475569;
}

.sz-cart-empty-icon { font-size: 52px; opacity: 0.5; }
.sz-cart-empty p { font-size: 14px; opacity: 0.7; }

/* =============================================
   13. FLOATING WHATSAPP
   ============================================= */
.wa-soporte {
  position: fixed !important;
  bottom: 80px !important;
  right: 22px !important;
  z-index: 900 !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.wa-soporte:hover { /* zoom removed */ }
.wa-soporte img { width: 30px; height: 30px; }

/* =============================================
   MISC UTILITIES
   ============================================= */
.sz-brand-logo-ref {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.sz-brand-logo-ref .sz-brand-icon-sq {
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
}

.sz-brand-logo-ref .sz-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.sz-brand-logo-ref .sz-brand-name span { color: #0284c7; }

/* PRODUCT CAROUSEL OVERRIDE */
.sz-product-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 18px;
  padding-bottom: 15px;
}
.sz-product-carousel-track::-webkit-scrollbar { display: none; }
.sz-product-carousel-track > .sz-product-card-20 {
  flex: 0 0 calc(20% - 14.4px);
  min-width: 220px;
  scroll-snap-align: start;
}
@media (max-width: 1200px) { .sz-product-carousel-track > .sz-product-card-20 { flex: 0 0 calc(25% - 13.5px); } }
@media (max-width: 900px) { .sz-product-carousel-track > .sz-product-card-20 { flex: 0 0 calc(33.333% - 12px); } }
@media (max-width: 600px) { .sz-product-carousel-track > .sz-product-card-20 { flex: 0 0 calc(50% - 9px); min-width: 160px; } }

/* NEW HERO SLIDER */
.sz-hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #0f172a;
}
.sz-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}
.sz-slide.active { opacity: 1; z-index: 2; }
.sz-slide-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 30%;
  background-size: cover;
  background-position: right center;
  mask-image: linear-gradient(to right, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
  opacity: 0.8;
  z-index: 0;
}
.sz-slide-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  color: white;
}
.sz-slide-content h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.sz-slide-content p {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.sz-hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.sz-hero-nav-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.sz-hero-nav-dot.active { background: white; /* zoom removed */ }

/* Testimonials spacing fix */
.sz-test-card { margin-right: 24px !important; }


/* =============================================
   TESTIMONIALS (Restored)
   ============================================= */
.sz-test-section { padding: 40px 24px; max-width: 1280px; margin: 0 auto; overflow: hidden; }
.sz-test-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sz-marquee-lane { display: flex; width: max-content; animation: scroll-left 55s linear infinite; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.sz-test-card { 
  background: #ffffff; 
  border: 1px solid #e2e8f0; 
  border-radius: 14px; 
  padding: 18px 20px; 
  width: 280px; 
  flex-shrink: 0; 
  box-shadow: 0 2px 8px rgba(15,23,42,0.04); 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  margin-right: 24px !important;
}
.sz-test-stars { color: #facc15; font-size: 14px; letter-spacing: 2px; }
.sz-test-text { font-size: 13px; color: #475569; font-style: italic; line-height: 1.5; margin:0; flex:1; }
.sz-test-author { font-size: 12px; font-weight: 700; color: #0f172a; margin:0; margin-top: auto; }

/* =============================================
   BULLETPROOF BUTTONS & ACCORDIONS (v11)
   ============================================= */
.sz-btn-card-buy,
.sz-btn-buy,
.btn-comprar {
  flex: 1;
  height: 38px;
  background: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1) !important;
  font-family: inherit !important;
  box-shadow: 0 3px 10px rgba(37,99,235,0.25) !important;
  text-decoration: none !important;
}

.sz-btn-card-buy:hover:not(.disabled),
.sz-btn-buy:hover:not(.disabled),
.btn-comprar:hover:not(.disabled) {
  background: #1d4ed8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 14px rgba(37,99,235,0.35) !important;
}

.sz-btn-card-buy.disabled,
.sz-btn-buy.disabled,
.btn-comprar.disabled {
  background: #e2e8f0 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.sz-btn-card-eye {
  width: 38px !important;
  height: 38px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  color: #475569 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.sz-btn-card-eye:hover {
  background: #f8fafc !important;
  color: #2563eb !important;
  border-color: #cbd5e1 !important;
  transform: translateY(-1px) !important;
}

/* Accordion in producto.html */
.sz-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.03);
}

.sz-accordion-header {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 14.5px;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
  user-select: none;
}

.sz-accordion-header:hover {
  background: #f1f5f9;
}

.sz-accordion-icon {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  color: #2563eb;
  font-size: 14px;
}

.sz-accordion-header.open .sz-accordion-icon {
  transform: rotate(180deg);
}

.sz-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #334155;
  background: #ffffff;
}

.sz-accordion-header.open + .sz-accordion-content {
  max-height: 2500px;
  padding: 24px;
  border-top: 1px solid #e2e8f0;
}

/* Testimonials pristine cards */
.sz-test-section {
  padding: 48px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.sz-test-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 20px 22px !important;
  width: 290px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 14px rgba(15,23,42,0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin-right: 20px !important;
  transition: all 0.25s ease !important;
}

.sz-test-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.08) !important;
  border-color: #cbd5e1 !important;
}

.sz-test-stars {
  color: #f59e0b !important;
  font-size: 11px !important;
  display: flex !important;
  gap: 3px !important;
}

.sz-test-text {
  font-size: 13px !important;
  color: #334155 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  flex: 1 !important;
}

.sz-test-author {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 !important;
}

.sz-marquee-lane > .sz-product-card-20 {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .sz-marquee-lane > .sz-product-card-20 {
    width: 200px;
  }
}

#header-global { position: sticky; top: 0; z-index: 9999; background: white; }

/* Toast Notification */
#toastContainer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sz-toast {
  background: white;
  border-left: 5px solid #10b981;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: slideInRight 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  min-width: 300px;
}
.sz-toast i {
  color: #10b981;
  font-size: 24px;
}
.sz-toast strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.sz-toast span {
  font-size: 13px;
  color: #64748b;
}
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

/* Categories Dynamism */
.sz-cat-card {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.sz-cat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(37,99,235,0.15));
  opacity: 0;
  transition: opacity 0.3s;
}
.sz-cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
}
.sz-cat-card:hover::before {
  opacity: 1;
}

/* Header Dropdowns */
.header-lang select, .header-currency select {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px auto;
  padding-right: 28px;
  transition: all 0.2s;
}
.header-lang select:hover, .header-currency select:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

/* Mejoras a Dropdowns */
.sz-ctrl-pill { position: relative; overflow: hidden; transition: all 0.2s; cursor: pointer; }
.sz-ctrl-pill:hover { background: #e2e8f0; border-color: #cbd5e1; }
.sz-ctrl-pill select { opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; }


/* ================= RESTORED ORIGINAL HERO BANNER ================= */
.hero-banner { width: 100%; margin: 0 auto; padding: 0; }
.hero-right { width: 100%; }
.banner-slider { width: 100%; position: relative; overflow: hidden;  }
.hero-video-container {
  width: 100%; position: relative;  overflow: hidden;
  aspect-ratio: 21 / 9; min-height: 400px;
}
@media(max-width: 768px) {
  .hero-video-container { aspect-ratio: 4 / 5; min-height: unset; }
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover; position: absolute;
  top: 0; left: 0; z-index: 1;
}
.youtube-wrapper { pointer-events: none; overflow: hidden; }
.youtube-wrapper iframe {
  width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
@media(max-width: 768px) {
  .youtube-wrapper iframe { width: 250vw; height: 140.625vw; }
}
.hero-video-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.1) 80%, rgba(0,0,0,0.5) 100%);
  z-index: 2; pointer-events: none;
}
.hero-mute-btn {
  position: absolute; bottom: 20px; right: 20px; z-index: 10;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2);
  color: white; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(4px); transition: all 0.3s ease;
}
.hero-mute-btn:hover { background: rgba(255,255,255,0.2); }

.banner-slider picture { display: block; }
.banner-slider img {
  width: 100%; height: auto; min-height: 550px;
  object-fit: cover; object-position: center center;
  display: block;  opacity: 1; transition: opacity .8s ease;
}
@media(max-width:768px){
  .banner-slider { height: auto; }
  .banner-slider img { min-height: unset !important; object-fit: contain !important;  }
}

.hero-indicators {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-indicators .dot {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.3s;
}
.hero-indicators .dot.active { background: white; }

@media (max-width: 600px) {
  .sz-grid-6 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .sz-product-carousel-track > .sz-product-card-20 { flex: 0 0 calc(100% - 10px) !important; }
  .sz-product-img-wrap { padding-top: 130%; }
}

/* ================= NEW CENTERED NAVIGATION ================= */
.sz-navbar-inner.sz-nav-centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 24px;
}
.sz-mobile-menu-btn {
  visibility: hidden; display: block;
  background: none; border: none; font-size: 22px; color: #0f172a; cursor: pointer;
  padding: 8px; justify-self: start;
}
.sz-nav-brand.sz-brand-center { justify-self: center; }
.sz-nav-controls { justify-self: end; }

.sz-nav-links-bottom {
  display: flex; justify-content: center; gap: 30px; padding: 12px 24px;
  background: white; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
}
.sz-nav-links-bottom .sz-nav-link {
  color: #475569; font-weight: 500; font-size: 15px; text-decoration: none;
}
.sz-nav-links-bottom .sz-nav-link:hover { color: #2563eb; }

/* Mobile Sidebar */
.sz-mobile-sidebar {
  position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
  background: white; z-index: 1001; transition: 0.3s ease; box-shadow: 4px 0 15px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; padding: 20px;
}
.sz-mobile-sidebar.active { left: 0; }
.sz-mobile-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.sz-mobile-sidebar-header button { background: none; border: none; cursor: pointer; }
.sz-mobile-sidebar-links { display: flex; flex-direction: column; gap: 24px; }
.sz-mobile-sidebar-links a { font-size: 18px; color: #0f172a; text-decoration: none; font-weight: 500; }
.sz-mobile-sidebar-links .mobile-reseller-btn {
  background: #2563eb; color: white; padding: 12px; border-radius: 8px; text-align: center; margin-top: 10px;
}
.sz-mobile-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: 0.3s ease;
}
.sz-mobile-overlay.active { opacity: 1; pointer-events: all; }

@media (max-width: 960px) {
  .sz-nav-links-bottom { display: none; }
  .sz-mobile-menu-btn { visibility: visible; }
  .desktop-only { display: none !important; }
}

.sz-payments-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.sz-payment-logo {
  height: 32px !important;
  object-fit: contain !important;
  padding: 0 !important;
  transform: none !important;
  border-radius: 4px;
}

/* ================= OVERRIDE NAVBAR ================= */
.sz-navbar-inner { padding: 18px 24px !important; display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 24px;
}
.sz-nav-links {
  margin-left: auto;
  justify-content: flex-end;
  flex: none;
}
@media (max-width: 960px) {
  .sz-navbar-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }
  .sz-nav-brand { justify-self: center; }
  .sz-nav-controls { justify-self: end; }
}

/* ================= OVERRIDE BENEFITS BAR (missing styles) ================= */
.sz-benefits-bar {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}
.sz-benefit-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sz-benefit-box i {
  font-size: 24px;
  color: #2563eb;
}
.sz-benefit-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
}
.sz-benefit-text p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* ================= OVERRIDE BENEFITS BAR HOME (missing styles) ================= */
.sz-benefits-bar-home {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.sz-benefits-bar-home-inner {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}
.sz-home-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sz-home-benefit-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
}
.sz-home-benefit-texts {
  display: flex;
  flex-direction: column;
}
.sz-home-benefit-texts strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
}
.sz-home-benefit-texts span {
  font-size: 13px;
  color: #64748b;
}

/* ================= OVERRIDE DISTRIBUTOR CTA (missing styles) ================= */
.sz-dist-card {
  max-width: 1280px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: white;
}
@media (max-width: 768px) {
  .sz-dist-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    margin: 0 20px 60px;
  }
}
.sz-dist-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #38bdf8;
}
.sz-dist-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
  color: white;
}
.sz-dist-desc {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.sz-dist-btn {
  background: white;
  color: #0f172a;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sz-dist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

/* Badges de Compra Online en cards y páginas de producto */
.sz-badge-online-card {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 4px;
  letter-spacing: 0px;
  margin-left: auto;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 2px;
}
.sz-badge-online-card i {
  font-size: 8px;
}

.sz-online-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
