/* ==========================================================================
   CholloCheck — Design System v2 (Neobrutalist)
   Fuentes cargadas vía wp_enqueue_style en functions.php:
   Nunito (headings), Nunito Sans (body), Caveat (script accent)
   ========================================================================== */

:root {
  --red:          #E8453C;
  --red-dark:     #C93930;
  --red-light:    #FF6059;
  --black:        #1A1A1A;
  --white:        #FFFFFF;
  --off-white:    #FFF8F7;
  --gray:         #6B7280;
  --gray-light:   #F3F4F6;
  --green:        #22C55E;
  --badge-orange: #FF6B35;

  /* Alias para páginas interiores */
  --text:         #1A1A1A;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --bg:           #FFF8F7;
  --border:       #E5E7EB;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --max-width:    1200px;
  --font:         'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout
   ========================================================================== */

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

.section { padding: 80px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 96px 0; }

.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.section-title .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--red);
  font-size: 1.15em;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(237 81 69);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--black);
  height: 64px;
}

/* Admin bar offset */
.admin-bar .site-header { top: 32px; }

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; }

/* Logotipo custom de WP (img) */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img,
.custom-logo { max-height: 60px; width: auto; display: block; }

/* Logotipo texto fallback */
.site-logo__text { display: flex; align-items: center; gap: 2px; }
.site-logo__check {
  background: var(--red);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
}
.site-logo__mark { color: var(--red); font-size: 20px; margin-left: 2px; }

/* Nav WP */
.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li { position: relative; list-style: none; }

.site-nav li a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.site-nav li a:hover { color: var(--black); text-decoration: none; }

.site-nav li.current-menu-item > a,
.site-nav li.current-menu-ancestor > a,
.site-nav li.current_page_parent > a { color: var(--red); }

/* Dropdown */
.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: white;
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 var(--black);
  min-width: 180px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 6px;
  z-index: 200;
}
.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu { display: flex; }
.site-nav .sub-menu li a { font-size: 13px; padding: 8px 12px; color: var(--red); border-radius: var(--radius-sm); }
.site-nav li.menu-item-has-children > a::after { content: ' ▾'; font-size: 11px; opacity: .5; }

/* CTA button (último ítem del menú o clase nav-cta) */
.site-nav li:last-child > a,
.site-nav li.nav-cta > a {
  background: var(--red) ;
  color: white ;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  margin-left: 8px;
}
.site-nav li:last-child > a:hover,
.site-nav li.nav-cta > a:hover {
  background: var(--red-dark) ;
  color: white ;
  text-decoration: none;
}

.site-nav .sub-menu li:last-child > a{
  background: white;
  color: var(--red);
  text-decoration: none;
  padding: 8px 12px;
  margin-left: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  color: var(--black);
}

/* ==========================================================================
   Hero — portada
   ========================================================================== */

.hero {
  background: var(--red);
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 25%;
  width: 350px;
  height: 350px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.2);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 60px);
  color: white;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.hero-h1 .outline {
  -webkit-text-stroke: 2.5px white;
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .15s, box-shadow .15s;
}
.btn-solid:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); text-decoration: none; color: var(--red); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 3px solid rgba(255,255,255,0.45);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); text-decoration: none; color: white; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  color: white;
}

.hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero card (último chollo publicado) */
.hero-card {
  background: white;
  border-radius: 20px;
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform .3s;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.hero-card:hover { transform: rotate(0deg) scale(1.02); }

.hc-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  position: relative;
  overflow: hidden;
}
.hc-img img { width: 100%; height: 100%; object-fit: cover; }

.hc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 2px solid var(--black);
  letter-spacing: .04em;
}

.hc-pct {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--black);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-body { padding: 16px; }

.hc-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--black);
}

.hc-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: #F0FDF4;
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 10px;
}

.hc-prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.hc-now { font-family: var(--font-heading); font-weight: 900; font-size: 28px; color: var(--red); }
.hc-was { font-size: 14px; color: var(--gray); text-decoration: line-through; font-weight: 600; }

.hc-btn {
  display: block;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s;
}
.hc-btn:hover { background: var(--red-dark); text-decoration: none; color: white; }

.hero-live {
  position: absolute;
  bottom: -16px;
  right: -24px;
  background: white;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  border-radius: 12px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  transform: rotate(-3deg);
  z-index: 3;
  white-space: nowrap;
}

/* Dot animado */
.pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-anim 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* ==========================================================================
   Ticker
   ========================================================================== */

.ticker {
  background: var(--black);
  color: white;
  padding: 11px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item .sep { color: var(--red); font-size: 16px; }

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

/* ==========================================================================
   Deals — Chollos de hoy
   ========================================================================== */

.deals-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.deals-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Filtros */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }

.ftab {
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  border: 2px solid var(--black);
  background: white;
  color: var(--black);
  transition: all .15s;
  line-height: 1;
}
.ftab.on,
.ftab:hover { background: var(--black); color: white; }

/* Grid de cards — home (.grid) y archivo (.deals-grid) */
.grid,
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  transition: opacity .25s;
}

/* Card individual */
.card {
  background: white;
  border-radius: 16px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); text-decoration: none; color: inherit; }

.card-img {
  width: 100%;
  height: 158px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.cbadge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1.5px solid var(--black);
  letter-spacing: .04em;
  white-space: nowrap;
}
.bp { background: var(--badge-orange); color: white; }
.bs { background: var(--red); color: white; }
.bg { background: #DCFCE7; color: #16A34A; }

.cpct {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--black);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 8px;
}

.card-body { padding: 12px 14px 14px; }

.card-nicho {
  font-size: 10px;
  font-weight: 800;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pnew { font-family: var(--font-heading); font-weight: 900; font-size: 20px; color: var(--red); }
.pold { font-size: 12px; color: var(--gray); text-decoration: line-through; font-weight: 600; }

.psave { font-size: 11px; font-weight: 700; color: var(--green); margin-bottom: 8px; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--gray-light);
}
.card-src { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; }
.card-time { font-size: 10px; color: var(--gray); font-weight: 600; }

.deals-bottom { text-align: center; margin-top: 36px; }

/* Botón outline neobrutalist */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .15s, box-shadow .15s;
}
.btn-outline:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); text-decoration: none; color: var(--black); }

/* ==========================================================================
   Channels — sección oscura
   ========================================================================== */

.ch-section { background: var(--black); padding: 80px 0; }
.ch-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.ch-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-top: 8px;
  font-weight: 600;
  margin-bottom: 0;
}

.ch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.chcard {
  border-radius: 20px;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
  text-decoration: none;
  display: block;
}
.chcard:hover { transform: translateY(-4px); text-decoration: none; }
.chcard.active { background: var(--red); border: 2px solid rgba(255,255,255,0.2); }
.chcard.soon   { background: #232323; border: 2px solid #333; }

.ch-emoji { font-size: 44px; margin-bottom: 16px; display: block; }

.ch-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: white;
  margin-bottom: 4px;
}

.ch-handle {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.ch-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 18px;
}

.ch-tag-on {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.2);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-heading);
}

.ch-tag-soon {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-heading);
}

/* ==========================================================================
   How — cómo verificamos
   ========================================================================== */

.how-section {
  background: white;
  padding: 80px 0;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.steps-how { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }

.step-how { display: flex; gap: 16px; align-items: flex-start; }

.snum {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  border-radius: 12px;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stitle {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 3px;
}

.sdesc { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 600; }

/* Score box */
.score-box {
  background: var(--off-white);
  border: 2px solid var(--black);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--black);
}

.sb-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 22px;
}

.bar-item { margin-bottom: 14px; }

.bar-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.bar-lbl strong { color: var(--black); }

.bar-track {
  height: 10px;
  background: var(--gray-light);
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid var(--black);
}

.bar-fill { height: 100%; border-radius: 100px; }

.score-sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed var(--black);
}

.ss-lbl { font-family: var(--font-heading); font-weight: 900; font-size: 14px; color: var(--black); }
.ss-num { font-family: var(--font-heading); font-weight: 900; font-size: 38px; color: var(--red); }
.ss-result {
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 2px solid var(--black);
}

/* ==========================================================================
   Diff — por qué CholloCheck
   ========================================================================== */

.diff-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.dcard {
  background: white;
  border: 2px solid var(--black);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .2s, box-shadow .2s;
}
.dcard:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

.dicon { font-size: 38px; margin-bottom: 14px; display: block; }
.dtitle { font-family: var(--font-heading); font-weight: 900; font-size: 17px; color: var(--black); margin-bottom: 8px; }
.ddesc { font-size: 14px; color: var(--gray); line-height: 1.6; font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--black);
  color: white;
  padding: 52px 24px 32px;
  margin-top: 0;
}

.site-footer .container { max-width: var(--max-width); margin: 0 auto; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
}
.footer-brand__logo span { color: var(--red); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 600;
  max-width: 260px;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.footer-col ul li a:hover,
.footer-col a:hover { color: white; text-decoration: none; }

/* Footer channels */
.footer-channels { display: flex; flex-direction: column; gap: 10px; }

.footer-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.footer-channel-dot--soon { background: rgba(255,255,255,0.3); }

.site-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__bottom a { color: rgba(255,255,255,0.28); text-decoration: none; }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.55); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Animación de entrada (.fu → .vis)
   ========================================================================== */

.fu {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fu.vis { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Botones globales
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .1s, box-shadow .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 12px rgba(232,69,60,.25);
}
.btn-primary:hover { background: var(--red-dark); color: white; }

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }

.btn-telegram {
  background: #229ED9;
  color: white;
  box-shadow: 0 4px 12px rgba(34,158,217,.25);
}
.btn-telegram:hover { background: #1a8fc0; color: white; }

.btn-whatsapp {
  background: #4cb648;
  color: white;
  box-shadow: 0 4px 12px rgba(34,158,217,.25);
}
.btn-whatsapp:hover { background: #65f161; color: white; }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .8125rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 740px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { padding-top: 0; }

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; font-weight: 400; color: var(--text-light); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

/* ==========================================================================
   Páginas interiores — Hero de página
   ========================================================================== */

.page-hero {
  background: white;
  padding: 56px 0 48px;
  border-bottom: 2px solid var(--black);
}

.page-hero__breadcrumb {
  font-size: .8125rem;
  color: var(--text-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-hero__breadcrumb a { color: var(--text-light); }
.page-hero__breadcrumb a:hover { color: var(--red); text-decoration: none; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--black);
}

.page-hero__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ==========================================================================
   Archivo chollos
   ========================================================================== */

.archive-header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.archive-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.archive-header__lead {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 620px;
}

.archive-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted);
}
.archive-empty p { font-size: 1.0625rem; margin-bottom: 24px; }

.archive-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--black);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.archive-pagination .page-numbers:hover { background: var(--black); color: white; }
.archive-pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: white; }

/* Filtro nicho (archivo) */
.nicho-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.nicho-filter__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 800;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--black);
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nicho-filter__tab:hover { background: var(--black); color: white; text-decoration: none; }
.nicho-filter__tab--active { background: var(--red); border-color: var(--red); color: white; }
.nicho-filter__tab--active:hover { background: var(--red-dark); border-color: var(--red-dark); color: white; }

/* ==========================================================================
   Deal card — single-chollo.php y archivos
   ========================================================================== */

.deal-card {
  background: white;
  border-radius: 16px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.deal-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

/* ==========================================================================
   Single deal
   ========================================================================== */

.deal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: var(--text-muted);
  padding: 24px 0 20px;
}
.deal-breadcrumb a { color: var(--text-muted); }
.deal-breadcrumb a:hover { color: var(--red); }

.deal-single__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.deal-single__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--black);
}

.deal-single__image--placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.deal-single__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.deal-single__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 20px;
}

.deal-single__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.deal-single__price { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }

.deal-single__verified {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: #2d7a3a;
  background: #f0faf2;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 20px;
}

.deal-single__cta { width: 100%; justify-content: center; margin-bottom: 8px; }

.deal-single__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.deal-single__telegram-cta {
  background: #f0f7ff;
  border: 2px solid #b3d4f5;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.deal-single__telegram-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.deal-single__telegram-inner strong { display: block; font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.deal-single__telegram-inner p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.deal-single__related { border-top: 1px solid var(--border); padding-top: 40px; margin-bottom: 48px; }

/* ==========================================================================
   Score badges (deal-card y single)
   ========================================================================== */

.deal-badge {
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1.5px solid var(--black);
}
.deal-badge--score-high   { background: #DCFCE7; color: #16A34A; }
.deal-badge--score-great  { background: var(--red); color: white; }
.deal-badge--score-excep  { background: var(--badge-orange); color: white; }

/* ==========================================================================
   Prose (páginas de contenido)
   ========================================================================== */

.prose p { margin-bottom: 16px; line-height: 1.75; }
.prose h2 { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 900; margin: 40px 0 12px; color: var(--text); }
.prose h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; margin: 28px 0 8px; color: var(--text); }
.prose ul  { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 6px; line-height: 1.65; color: var(--text-muted); }

/* Steps (cómo funciona) */
.steps { display: flex; flex-direction: column; gap: 32px; max-width: 760px; }
.step  { display: flex; gap: 20px; }
.step__number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: white;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid var(--black); box-shadow: 3px 3px 0 var(--black);
}
.step__content h3 { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step__content p  { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; }

/* Score badges grid (cómo funciona) */
.badges-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 640px; }
.score-badge {
  background: white;
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 3px 3px 0 var(--black);
  display: flex; align-items: flex-start; gap: 12px;
}
.score-badge__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.score-badge__label { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.score-badge__range { font-size: .8125rem; color: var(--text-light); }

/* Brands */
.brands-list { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag {
  background: white; border: 2px solid var(--black); border-radius: 100px;
  padding: 4px 12px; font-size: .8125rem; color: var(--text-muted);
}

/* Data table */
.data-table {
  width: 100%; border-collapse: collapse; background: white;
  border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--black);
}
.data-table th {
  text-align: left; font-family: var(--font-heading); font-size: .8125rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-muted); background: var(--gray-light);
  padding: 12px 16px; border-bottom: 2px solid var(--black);
}
.data-table td { padding: 12px 16px; font-size: .9375rem; color: var(--text); border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafafa; }

/* Notice */
.notice {
  background: var(--off-white);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9375rem;
  color: var(--text);
}

/* Two-col layout */
.two-col       { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.two-col--equal { grid-template-columns: 1fr 1fr; }

/* Sidebar */
.sidebar-card {
  background: white;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.sidebar-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }

/* Feature cards */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.feature-card__icon { font-size: 1.75rem; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.feature-card p  { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; }

/* Channel cards (página canales) */
.channels-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.channel-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.channel-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.channel-card--active { border-color: var(--red); }
.channel-card__header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.channel-card__emoji  { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.channel-card__name   { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 900; color: var(--text); }
.channel-card__handle { font-size: .8125rem; color: var(--text-light); font-family: monospace; }
.channel-card__desc   { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.channel-card__badge  {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-heading); font-size: .75rem; font-weight: 800;
  padding: 4px 12px; border-radius: 100px; border: 1.5px solid var(--black);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px;
}
.badge-active { background: #DCFCE7; color: #16A34A; }
.badge-soon   { background: var(--gray-light); color: var(--gray); }

/* Channel list (home anterior) */
.channel-list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 700px; }
.channel-list__item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px; background: var(--white);
  border: 2px solid var(--black); box-shadow: 3px 3px 0 var(--black);
  border-radius: var(--radius-md); flex-wrap: wrap;
}
.channel-list__item--active { border-color: var(--red); background: #FFF0F0; }
.channel-list__info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.channel-list__emoji { font-size: 1.5rem; flex-shrink: 0; }
.channel-list__info strong { display: block; font-family: var(--font-heading); font-size: .9375rem; font-weight: 800; color: var(--text); }
.channel-list__handle { font-size: .8125rem; color: var(--text-muted); }

/* 404 */
.not-found {
  min-height: 60vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 80px 20px;
}
.not-found__code { font-family: var(--font-heading); font-size: 5rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 12px; }
.not-found h1 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.not-found p  { color: var(--text-muted); margin-bottom: 28px; }

/* Utility */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--bg); }
.bg-red     { background: var(--red); }
.text-red   { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .grid, .deals-grid { grid-template-columns: repeat(3,1fr); }
  .ch-grid  { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .channels-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .grid, .deals-grid { grid-template-columns: repeat(2,1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .deals-top { flex-direction: column; align-items: flex-start; }

  /* Nav móvil */
  .site-nav,
  .site-nav ul { display: none; }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    background: white;
    padding: 24px;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
    border-top: 2px solid var(--black);
  }

  .site-nav.is-open ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .site-nav.is-open li { width: 100%; }

  .site-nav.is-open li a {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 800;
    padding: 12px 16px;
    display: block;
    border-radius: var(--radius-sm);
    color: var(--black);
  }

  .site-nav.is-open .sub-menu {
    display: flex;
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    margin: 4px 0 8px 16px;
    padding: 4px;
  }

  .site-nav.is-open li:last-child > a {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    border-radius: 100px;
  }

  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-inner { padding: 48px 24px; }
  .deal-single__layout { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .home-feed__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid, .deals-grid { grid-template-columns: 1fr; }
  .ch-grid { grid-template-columns: 1fr; }
}

/* Admin bar */
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .site-nav.is-open { top: 110px; }
}
