/*
Theme Name: Blocksy Child Blockout
Theme URI: https://blockout.com.ar
Description: Child theme Blockout dark mode gaming
Author: Blockout Entertainment
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child-blockout
*/

/* =====================================================
   VARIABLES GLOBALES BLOCKOUT
   ===================================================== */
:root {
  --bo-bg:      #060810;
  --bo-bg2:     #0D1120;
  --bo-bg3:     #131929;
  --bo-border:  rgba(255,255,255,.06);
  --bo-border2: rgba(255,255,255,.12);
  --bo-green:   #5CB82A;
  --bo-yellow:  #FFCB05;
  --bo-orange:  #F0A800;
  --bo-red:     #DC2626;
  --bo-txt:     #EEF0F4;
  --bo-muted:   #7A8499;
  --bo-dim:     #3D4760;
  --bo-r:       10px;
  --bo-r2:      16px;
  --bo-t:       .22s cubic-bezier(.4,0,.2,1);
}

/* =====================================================
   TIPOGRAFÍA GLOBAL
   ===================================================== */
body {
  font-family: 'Inter', sans-serif !important;
  background-color: var(--bo-bg) !important;
  color: var(--bo-txt) !important;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.woocommerce-loop-product__title,
.product_title {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bo-txt) !important;
  letter-spacing: -.01em;
}

/* =====================================================
   HEADER (Blocksy)
   ===================================================== */
.site-header,
[data-id="header"] {
  background: rgba(6,8,16,.92) !important;
  backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid var(--bo-border) !important;
}

/* Logo con badge amarillo */
.site-logo,
.custom-logo-link,
.ct-logo {
  background: var(--bo-yellow) !important;
  padding: 6px 14px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(255,203,5,.25) !important;
  transition: transform var(--bo-t), box-shadow var(--bo-t) !important;
}
.site-logo:hover,
.custom-logo-link:hover {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 6px 24px rgba(255,203,5,.4) !important;
}
.custom-logo { height: 44px !important; width: auto !important; }

/* Menú de navegación */
.ct-main-header-menu .menu-item > a,
.ct-header-menu .menu-item > a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: .875rem !important;
  color: var(--bo-muted) !important;
  transition: color var(--bo-t) !important;
}
.ct-main-header-menu .menu-item > a:hover,
.ct-main-header-menu .menu-item.current-menu-item > a {
  color: var(--bo-txt) !important;
}

/* Buscador */
.ct-header-search input,
.wp-block-search__input {
  background: var(--bo-bg3) !important;
  border: 1.5px solid var(--bo-border) !important;
  color: var(--bo-txt) !important;
  border-radius: var(--bo-r) !important;
  font-family: 'Inter', sans-serif !important;
}
.ct-header-search input:focus,
.wp-block-search__input:focus {
  border-color: var(--bo-green) !important;
  box-shadow: 0 0 0 3px rgba(92,184,42,.12) !important;
  outline: none !important;
}

/* Carrito header */
.ct-header-cart .cart-count {
  background: var(--bo-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

/* =====================================================
   TOPBAR
   ===================================================== */
.ct-header-top-bar,
[data-id="top-bar"] {
  background: var(--bo-bg2) !important;
  border-bottom: 1px solid var(--bo-border) !important;
  font-size: .78rem !important;
  color: var(--bo-muted) !important;
}

/* =====================================================
   DROPDOWN / MEGA MENU
   ===================================================== */
.ct-header-menu .sub-menu,
.ct-header-menu .mega-menu {
  background: var(--bo-bg2) !important;
  border: 1px solid var(--bo-border2) !important;
  border-radius: var(--bo-r2) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.7) !important;
  padding: 20px !important;
}
.ct-header-menu .sub-menu .menu-item a {
  color: var(--bo-muted) !important;
  font-size: .875rem !important;
  padding: 6px 0 !important;
}
.ct-header-menu .sub-menu .menu-item a:hover {
  color: var(--bo-txt) !important;
  background: none !important;
}

/* =====================================================
   FONDO GENERAL / CONTENT
   ===================================================== */
.site-main,
.ct-container,
main,
.wp-site-blocks {
  background-color: var(--bo-bg) !important;
}

/* Cards y superficies */
.ct-card,
.wp-block-group,
.entry-content .wp-block-cover {
  background: var(--bo-bg2) !important;
  border: 1px solid var(--bo-border) !important;
  border-radius: var(--bo-r2) !important;
}

/* =====================================================
   BOTONES GLOBALES
   ===================================================== */
.wp-block-button__link,
.button,
.btn,
input[type="submit"],
button[type="submit"],
.wc-block-components-button {
  background: linear-gradient(135deg, var(--bo-green), var(--bo-orange)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--bo-r) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(92,184,42,.3) !important;
  transition: transform var(--bo-t), box-shadow var(--bo-t) !important;
}
.wp-block-button__link:hover,
.button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(92,184,42,.45) !important;
  color: #fff !important;
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.woocommerce-breadcrumb,
.ct-breadcrumbs {
  color: var(--bo-muted) !important;
  font-size: .82rem !important;
  padding: 12px 0 !important;
}
.woocommerce-breadcrumb a,
.ct-breadcrumbs a { color: var(--bo-green) !important; }
.bc-sep { color: var(--bo-dim) !important; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer,
[data-id="footer"] {
  background: var(--bo-bg2) !important;
  border-top: 1px solid var(--bo-border) !important;
  color: var(--bo-muted) !important;
}
.site-footer a { color: var(--bo-muted) !important; transition: color var(--bo-t) !important; }
.site-footer a:hover { color: var(--bo-txt) !important; }
.site-footer h3, .site-footer h4 {
  font-family: 'Rajdhani', sans-serif !important;
  color: var(--bo-txt) !important;
  font-size: .8rem !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

/* Barra legal footer */
.blockout-arrepentimiento-bar {
  background: var(--bo-bg) !important;
  border-top: 1px solid var(--bo-border) !important;
  padding: 16px 24px !important;
  text-align: center !important;
}
.blockout-arrepent-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--bo-red) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: var(--bo-r) !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  transition: background var(--bo-t) !important;
}
.blockout-arrepent-btn:hover { background: #B91C1C !important; }

/* =====================================================
   LINKS GLOBALES
   ===================================================== */
a { color: var(--bo-green); transition: color var(--bo-t); }
a:hover { color: #86E55C; }

/* =====================================================
   INPUTS Y FORMS
   ===================================================== */
input, textarea, select {
  background: var(--bo-bg3) !important;
  border: 1.5px solid var(--bo-border) !important;
  color: var(--bo-txt) !important;
  border-radius: var(--bo-r) !important;
  font-family: 'Inter', sans-serif !important;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--bo-green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(92,184,42,.1) !important;
}
label { color: var(--bo-muted) !important; font-size: .875rem !important; }

/* =====================================================
   GOLDEN PASS — Mi cuenta
   ===================================================== */
.blockout-golden-coming {
  background: var(--bo-bg2);
  border: 1px solid rgba(255,203,5,.2);
  border-radius: var(--bo-r2);
  padding: 40px;
  text-align: center;
}
.blockout-golden-coming h3 {
  font-size: 2rem !important;
  color: var(--bo-yellow) !important;
  margin-bottom: 12px !important;
}

/* =====================================================
   ALIAS DE VARIABLES (compatibilidad con layout homepage)
   ===================================================== */
:root {
  --bg:      var(--bo-bg);
  --bg2:     var(--bo-bg2);
  --bg3:     var(--bo-bg3);
  --border:  var(--bo-border);
  --border2: var(--bo-border2);
  --P:       var(--bo-green);
  --P2:      #4AA520;
  --A:       var(--bo-orange);
  --C:       #06B6D4;
  --gold:    var(--bo-yellow);
  --txt:     var(--bo-txt);
  --muted:   var(--bo-muted);
  --dim:     var(--bo-dim);
  --r:       var(--bo-r);
  --r2:      var(--bo-r2);
  --r3:      24px;
  --sh:      0 8px 32px rgba(0,0,0,.55);
  --sh2:     0 20px 60px rgba(0,0,0,.7);
  --t:       var(--bo-t);
}

/* =====================================================
   LAYOUT GENERAL
   ===================================================== */
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 28px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--P), var(--A));
  color: #fff !important; font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 24px rgba(92,184,42,.4);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(92,184,42,.55); color: #fff !important; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  border: 1.5px solid var(--border2); color: var(--txt) !important;
  font-weight: 600; font-size: .95rem;
  backdrop-filter: blur(8px);
  transition: all var(--t);
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--P); background: rgba(92,184,42,.1); transform: translateY(-2px); }

/* =====================================================
   DEAL TICKER
   ===================================================== */
.deal-ticker {
  background: linear-gradient(135deg, rgba(92,184,42,.12), rgba(240,168,0,.08));
  border-top: 1px solid rgba(92,184,42,.2);
  border-bottom: 1px solid rgba(92,184,42,.2);
  display: flex; align-items: center; height: 44px; overflow: hidden;
}
.ticker-label { flex-shrink: 0; background: linear-gradient(135deg,var(--P),var(--A)); color: #fff; padding: 0 20px; height: 100%; display: flex; align-items: center; font-size: .78rem; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.ticker-scroll { flex: 1; overflow: hidden; position: relative; }
.ticker-scroll::after { content: ''; position: absolute; right: 0; top: 0; width: 60px; height: 100%; background: linear-gradient(to left, var(--bg), transparent); z-index: 1; }
.ticker-inner { display: inline-flex; align-items: center; gap: 24px; white-space: nowrap; font-size: .82rem; color: var(--muted); padding: 0 24px; animation: bo-ticker 22s linear infinite; }
.ticker-inner strong { color: var(--txt); font-weight: 700; }
.ticker-inner .ts { color: var(--P); font-size: .6rem; }
@keyframes bo-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; padding: 80px 0 60px; background: var(--bg); }
.hero-noise { position: absolute; inset: 0; z-index: 0; opacity: .4; }
.hero-blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.b1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(92,184,42,.35) 0%, transparent 70%); top: -200px; left: -150px; animation: blobanim 12s ease-in-out infinite alternate; }
.b2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,168,0,.25) 0%, transparent 70%); bottom: -150px; right: 100px; animation: blobanim 15s ease-in-out infinite alternate-reverse; }
.b3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%); top: 50%; right: 30%; animation: blobanim 18s ease-in-out infinite alternate; }
@keyframes blobanim { from { transform: scale(1) rotate(0deg); } to { transform: scale(1.15) rotate(15deg); } }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black, transparent); }
.hero-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.gengar-inline { display: inline-block; vertical-align: middle; margin: 0 4px; position: relative; }
.gengar-img { width: clamp(90px, 10vw, 140px); height: auto; mix-blend-mode: multiply; filter: drop-shadow(0 0 20px rgba(155,111,216,.8)) drop-shadow(0 0 50px rgba(100,60,180,.4)); animation: gengar-drift 4s ease-in-out infinite; cursor: pointer; transform-origin: center bottom; }
.gengar-img:hover { animation: gengar-spook .5s ease-in-out forwards; filter: drop-shadow(0 0 30px rgba(255,34,68,.9)) drop-shadow(0 0 60px rgba(155,111,216,.7)); }
@keyframes gengar-drift { 0% { transform: translateX(0px) translateY(0px) rotate(-3deg) scaleX(1); } 50% { transform: translateX(-14px) translateY(-10px) rotate(-6deg) scaleX(0.95); } 100% { transform: translateX(0px) translateY(0px) rotate(-3deg) scaleX(1); } }
@keyframes gengar-spook { 0% { transform: scale(1) rotate(-3deg); } 40% { transform: scale(1.1) rotate(4deg) translateX(5px); } 100% { transform: scale(1) rotate(-3deg); } }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(92,184,42,.12); border: 1px solid rgba(92,184,42,.3); color: #86E55C; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; margin-bottom: 22px; }
.dot { width: 7px; height: 7px; background: var(--P); border-radius: 50%; box-shadow: 0 0 8px var(--P); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-family: 'Rajdhani', sans-serif !important; font-size: clamp(3.2rem, 5.5vw, 5.5rem) !important; font-weight: 700 !important; line-height: 1.03 !important; letter-spacing: -.025em !important; margin-bottom: 20px !important; color: var(--txt) !important; }
.ht-grad { background: linear-gradient(135deg, var(--P) 0%, #86E55C 40%, var(--A) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.05rem !important; color: var(--muted) !important; max-width: 420px; line-height: 1.75 !important; margin-bottom: 34px !important; }
.hero p strong { color: var(--txt) !important; font-weight: 600 !important; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 20px; }
.ht-item { display: flex; flex-direction: column; }
.ht-item strong { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--txt); }
.ht-item span { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.ht-div { width: 1px; height: 32px; background: var(--border2); }

.hero-right { position: relative; height: 460px; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(92,184,42,.15); }
.hr1 { width: 380px; height: 380px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: spin 30s linear infinite; }
.hr2 { width: 280px; height: 280px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(240,168,0,.1); animation: spin 20s linear infinite reverse; }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.hcard { position: absolute; background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--r2); overflow: hidden; width: 200px; box-shadow: var(--sh); transition: transform var(--t), box-shadow var(--t); }
.hcard:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--sh2); }
.hc1 { top: 20px; right: 20px; z-index: 3; animation: floatA 5s ease-in-out infinite; }
.hc2 { top: 160px; right: 140px; z-index: 2; animation: floatB 6s ease-in-out infinite; opacity: .88; }
.hc3 { top: 300px; right: 50px; z-index: 2; animation: floatA 7s ease-in-out infinite reverse; opacity: .78; }
@keyframes floatA { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0px) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(1deg); } }

.hcard-img { height: 140px; background-size: 100% auto; background-position: top center; background-repeat: no-repeat; border-radius: 8px 8px 0 0; overflow: hidden; }
.hci-switch  { background-image: url('images/hero-switch.jpg');  background-color: #7F1D1D; background-size: 110%; background-position: 50% 8%; }
.hci-pokemon { background-image: url('images/hero-booster.jpg'); background-color: #78350F; background-size: 110%; background-position: 50% 5%; }
.hci-ps5     { background-image: url('images/hero-fc26.jpg');    background-color: #1E3A8A; background-size: 110%; background-position: 50% 8%; }
.hcard-body { padding: 12px 14px; }
.hcard-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--P); }
.hcard-name { font-size: .9rem; font-weight: 700; color: var(--txt); margin: 3px 0 6px; }
.hcard-price { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 700; background: linear-gradient(135deg,var(--P),var(--A)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hcard-badge { position: absolute; top: 10px; left: 10px; padding: 3px 9px; border-radius: 999px; font-size: .65rem; font-weight: 800; letter-spacing: .06em; }
.hcb-new { background: var(--C); color: #fff; }
.hcb-hot { background: var(--gold); color: #000; }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1.5px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); margin: 0 auto; animation: scrollin 2s ease-in-out infinite; }
@keyframes scrollin { 0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* =====================================================
   SECTIONS GENERIC
   ===================================================== */
.sec { padding: 72px 0; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.sec-head h2 { font-family: 'Rajdhani', sans-serif !important; font-size: clamp(1.7rem, 3vw, 2.4rem) !important; font-weight: 700 !important; letter-spacing: -.01em !important; color: var(--txt) !important; }
.sec-link { font-size: .85rem; font-weight: 700; color: var(--P) !important; transition: color var(--t); }
.sec-link:hover { color: #86E55C !important; }

/* =====================================================
   CATEGORÍAS
   ===================================================== */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-tile { position: relative; border-radius: var(--r2); overflow: hidden; background: var(--bg2); border: 1px solid var(--border); padding: 0 !important; display: flex; flex-direction: column; gap: 0; cursor: pointer; transition: all var(--t); min-height: 200px; text-decoration: none !important; }
.cat-tile:hover { transform: translateY(-5px); border-color: var(--border2); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.cat-art { position: relative; width: 100%; height: 160px; overflow: hidden; background: #000; }
.cat-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(13,17,32,1) 100%); pointer-events: none; z-index: 2; }
.cat-sprite { position: absolute; inset: 0; background-image: url('/wp-content/themes/blocksy-child/images/categorias.png'); background-size: 500% auto; background-repeat: no-repeat; background-position: 0% center; mix-blend-mode: screen; transition: transform .4s ease, filter .4s ease; filter: brightness(1.05) saturate(1.1); }
.cat-tile:hover .cat-sprite { transform: scale(1.07); filter: brightness(1.15) saturate(1.2); }
.cat-sp-0 { background-position: 0% center; }
.cat-sp-1 { background-position: 25% center; }
.cat-sp-2 { background-position: 50% center; }
.cat-sp-3 { background-position: 75% center; }
.cat-sp-4 { background-position: 100% center; }
.cat-glow { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80%; height: 60px; border-radius: 50%; filter: blur(20px); opacity: .3; transition: opacity var(--t); z-index: 1; }
.cat-tile:hover .cat-glow { opacity: .65; }
.cat-gaming .cat-glow { background: #7C3AED; }
.cat-tcg    .cat-glow { background: #F59E0B; }
.cat-acc    .cat-glow { background: #2563EB; }
.cat-tech   .cat-glow { background: #22C55E; }
.cat-toys   .cat-glow { background: #F0A800; }
.cat-info { padding: 14px 16px 16px; flex: 1; }
.cat-info h3 { font-family: 'Rajdhani', sans-serif !important; font-size: 1.05rem !important; font-weight: 700 !important; line-height: 1.25 !important; margin-bottom: 4px !important; color: var(--txt) !important; }
.cat-info span { font-size: .75rem; color: var(--muted); }
.cat-arrow { position: absolute; top: 20px; right: 18px; font-size: 1rem; color: var(--dim); transition: all var(--t); opacity: 0; transform: translateX(-6px); }
.cat-tile:hover .cat-arrow { opacity: 1; transform: translateX(0); color: var(--muted); }

/* =====================================================
   PRODUCT CARDS
   ===================================================== */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pc { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--t), border-color var(--t), box-shadow var(--t); position: relative; }
.pc:hover { transform: translateY(-5px); border-color: rgba(92,184,42,.35); box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(92,184,42,.15); }
.pc-top { position: relative; }
.pc-badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; gap: 5px; }
.pbadge { padding: 3px 9px; border-radius: 999px; font-size: .65rem; font-weight: 800; letter-spacing: .05em; }
.pb-new  { background: var(--C); color: #fff; }
.pb-deal { background: var(--A); color: #fff; }
.pb-hot  { background: var(--gold); color: #000; }
.pc-img-link { display: block; overflow: hidden; }
.pc-img-real { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: var(--bg3); display: block; transition: transform var(--t); }
.pc:hover .pc-img-real { transform: scale(1.04); }
.pc-overlay { position: absolute; inset: 0; background: rgba(6,8,16,.75); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; opacity: 0; transition: opacity var(--t); }
.pc:hover .pc-overlay { opacity: 1; }
.pc-add { background: linear-gradient(135deg,var(--P),var(--A)); color: #fff; padding: 10px 22px; border-radius: var(--r); font-size: .82rem; font-weight: 700; transform: translateY(6px); transition: transform var(--t); box-shadow: 0 4px 16px rgba(92,184,42,.5); cursor: pointer; border: none; }
.pc:hover .pc-add { transform: translateY(0); }
.pc-wish { position: absolute; top: 10px; right: 10px; z-index: 3; width: 30px; height: 30px; background: rgba(6,8,16,.6); border-radius: 50%; backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--muted); transition: all var(--t); opacity: 0; border: none; cursor: pointer; }
.pc:hover .pc-wish { opacity: 1; }
.pc-wish:hover { color: var(--A); background: rgba(240,168,0,.15); }
.pc-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.pc-brand { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--P); margin-bottom: 5px; }
.pc-name { font-size: .88rem; font-weight: 600; color: var(--txt) !important; line-height: 1.45; flex: 1; margin-bottom: 12px; }
.pc-name a { color: var(--txt) !important; text-decoration: none !important; }
.pc-name a:hover { color: var(--P) !important; }
.pc-sm .pc-name { font-size: .82rem; }
.pc-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.pc-price-wrap { display: flex; align-items: baseline; gap: 7px; }
.pc-price { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; background: linear-gradient(135deg,var(--P),var(--A)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pc-sm .pc-price { font-size: 1.05rem; }
.pc-old { font-size: .78rem; color: var(--dim); text-decoration: line-through; }
.bo-empty { color: var(--muted); font-style: italic; padding: 20px 0; }

/* =====================================================
   PROMO BANNER
   ===================================================== */
.promo { position: relative; overflow: hidden; padding: 72px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.promo-bg { position: absolute; inset: 0; }
.promo-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.pb1 { width: 500px; height: 500px; background: rgba(92,184,42,.2); top: -100px; left: -100px; }
.pb2 { width: 400px; height: 400px; background: rgba(240,168,0,.15); bottom: -100px; right: 200px; }
.promo-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.promo-tag { display: inline-block; background: var(--A); color: #fff; padding: 4px 14px; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.promo h2 { font-family: 'Rajdhani', sans-serif !important; font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important; font-weight: 700 !important; line-height: 1.08 !important; margin-bottom: 14px !important; color: var(--txt) !important; }
.promo h2 span { background: linear-gradient(135deg,var(--P),var(--A)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.promo p { color: var(--muted) !important; font-size: .95rem !important; margin-bottom: 28px !important; }
.countdown { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--r); padding: 14px 20px; min-width: 76px; }
.cd-unit span { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1; background: linear-gradient(135deg,var(--P),var(--A)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cd-unit small { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }
.cd-dot { font-size: 1.8rem; font-weight: 700; color: var(--dim); margin-bottom: 10px; }
.promo-cards-vis { position: relative; height: 300px; }
.pcard-vis { position: absolute; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; box-shadow: var(--sh); border: 1px solid rgba(255,255,255,.08); }
.pv1 { width: 150px; height: 200px; top: 0; left: 60px; background: linear-gradient(145deg,#0F1B05,#2D5C0F,#5CB82A); animation: floatA 4s ease-in-out infinite; }
.pv2 { width: 130px; height: 170px; top: 60px; left: 180px; background: linear-gradient(145deg,#1A0A00,#92400E,#F0A800); animation: floatB 5s ease-in-out infinite; z-index: 2; }
.pv3 { width: 120px; height: 160px; top: 120px; left: 30px; background: linear-gradient(145deg,#0F1B05,#3D7A14,#86E55C); animation: floatA 6s ease-in-out infinite reverse; }

/* =====================================================
   GOLDEN PASS
   ===================================================== */
.golden-pass { position: relative; overflow: hidden; padding: 80px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gp-bg { position: absolute; inset: 0; overflow: hidden; }
.gp-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.gp1 { width: 500px; height: 500px; background: rgba(255,203,5,.12); top: -100px; right: -100px; }
.gp2 { width: 400px; height: 400px; background: rgba(92,184,42,.08); bottom: -100px; left: 100px; }
.gp-stars { position: absolute; inset: 0; }
.gps { position: absolute; color: #FFCB05; opacity: .15; font-size: 1.2rem; animation: floatA 6s ease-in-out infinite; }
.s1 { top: 10%; left: 5%;  font-size: 2rem; }
.s2 { top: 30%; left: 15%; animation-delay: 1s; }
.s3 { top: 60%; left: 8%;  font-size: 1.5rem; animation-delay: 2s; }
.s4 { top: 15%; right: 10%; font-size: 2.5rem; animation-delay: .5s; opacity: .2; }
.s5 { top: 70%; right: 5%; font-size: 1.8rem; animation-delay: 1.5s; }
.s6 { top: 45%; right: 20%; animation-delay: 3s; }
.gp-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gp-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,203,5,.12); border: 1px solid rgba(255,203,5,.3); color: #FFCB05; padding: 5px 14px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; margin-bottom: 18px; }
.golden-pass h2 { font-family: 'Rajdhani', sans-serif !important; font-size: clamp(2.5rem, 4vw, 4rem) !important; font-weight: 700 !important; line-height: 1.05 !important; margin-bottom: 16px !important; color: var(--txt) !important; }
.golden-pass h2 span { color: #FFCB05 !important; -webkit-text-fill-color: #FFCB05 !important; background: none !important; }
.golden-pass p { color: var(--muted) !important; font-size: .95rem !important; line-height: 1.75 !important; margin-bottom: 28px !important; max-width: 440px; }
.golden-pass p strong { color: var(--txt) !important; }
.gp-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.gp-benefit { display: flex; align-items: center; gap: 12px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; }
.gpb-ico { font-size: 1.5rem; flex-shrink: 0; }
.gp-benefit div { display: flex; flex-direction: column; }
.gp-benefit strong { font-size: .82rem; font-weight: 700; color: var(--txt) !important; }
.gp-benefit span { font-size: .72rem; color: var(--muted); }
.gp-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-golden { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--r); background: linear-gradient(135deg, #FFCB05, #F0A800); color: #000 !important; font-weight: 800; font-size: .95rem; box-shadow: 0 4px 24px rgba(255,203,5,.35); transition: transform var(--t), box-shadow var(--t); text-decoration: none; }
.btn-golden:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(255,203,5,.5); color: #000 !important; }
.gp-right { display: flex; align-items: center; justify-content: center; }
.gp-card { position: relative; width: 360px; height: 220px; background: linear-gradient(135deg, #1A1400 0%, #3D2E00 40%, #7A5C00 70%, #FFCB05 100%); border-radius: 20px; padding: 28px; box-shadow: 0 24px 64px rgba(255,203,5,.25), 0 0 0 1px rgba(255,203,5,.15); overflow: hidden; animation: floatA 5s ease-in-out infinite; }
.gp-card-shine { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%); border-radius: 20px; animation: shine 4s ease-in-out infinite; }
@keyframes shine { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
.gp-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.gp-card-tier { background: linear-gradient(135deg, #FFCB05, #F0A800); color: #000; padding: 4px 12px; border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.gp-card-chip { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); width: 40px; height: 30px; background: linear-gradient(135deg, #FFCB05, #CC9900); border-radius: 6px; opacity: .7; }
.gp-card-mid { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gp-card-stars { color: #FFCB05; font-size: 1.1rem; letter-spacing: 2px; }
.gp-card-points span { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: #FFCB05; }
.gp-card-name { font-size: .68rem; font-weight: 700; letter-spacing: .15em; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.gp-card-num { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .1em; }

/* =====================================================
   SERVICIO TÉCNICO
   ===================================================== */
.servicio-tec { background: var(--bg); padding: 72px 0; }
.st-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.st-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(92,184,42,.1); border: 1px solid rgba(92,184,42,.25); color: var(--P); padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
.servicio-tec h2 { font-family: 'Rajdhani', sans-serif !important; font-size: clamp(2rem, 3.5vw, 3rem) !important; font-weight: 700 !important; line-height: 1.1 !important; margin-bottom: 14px !important; color: var(--txt) !important; }
.servicio-tec h2 span { color: var(--P) !important; -webkit-text-fill-color: var(--P) !important; }
.servicio-tec p { color: var(--muted) !important; font-size: .95rem !important; line-height: 1.75 !important; margin-bottom: 24px !important; max-width: 420px; }
.st-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.st-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 14px; }
.st-note { font-size: .82rem; color: var(--muted); background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 14px; margin-bottom: 20px; }
.st-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.st-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.st-ico-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all var(--t); }
.st-ico-card:hover { border-color: rgba(92,184,42,.35); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.st-ico-card span { font-size: 2.2rem; }
.st-ico-card small { font-size: .72rem; color: var(--muted); font-weight: 600; }
.st-c1 { animation: floatA 4s ease-in-out infinite; }
.st-c2 { animation: floatB 5s ease-in-out infinite; }
.st-c3 { animation: floatA 6s ease-in-out infinite reverse; }
.st-c4 { animation: floatB 4.5s ease-in-out infinite; }
.st-c5 { animation: floatA 5.5s ease-in-out infinite reverse; }
.st-c6 { animation: floatB 3.5s ease-in-out infinite; }

/* =====================================================
   DUAL BANNERS
   ===================================================== */
.duos { padding: 0 0 72px; }
.duos-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo { position: relative; border-radius: var(--r3); overflow: hidden; min-height: 220px; padding: 40px; display: flex; align-items: flex-end; border: 1px solid var(--border); cursor: pointer; transition: transform var(--t), box-shadow var(--t); text-decoration: none !important; }
.duo:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.duo-tcg { background: linear-gradient(135deg,#0A1A02 0%,#2D5C0F 50%,#5CB82A 100%); }
.duo-consolas { background: linear-gradient(135deg,#1F1500 0%,#92400E 50%,#F0A800 100%); }
.duo-content { position: relative; z-index: 1; }
.duo-tag { display: inline-block; background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); padding: 4px 12px; border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.duo h3 { font-family: 'Rajdhani', sans-serif !important; font-size: 2rem !important; font-weight: 700 !important; color: #fff !important; line-height: 1.2 !important; margin-bottom: 16px !important; }
.duo-cta { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; transition: all var(--t); }
.duo:hover .duo-cta { color: #fff; border-color: #fff; }
.duo-deco { position: absolute; right: 30px; top: 50%; transform: translateY(-50%); font-size: 5rem; opacity: .25; filter: blur(.5px); }

/* =====================================================
   BENEFITS
   ===================================================== */
.benefits-sec { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.benefits-wrap { display: flex; align-items: stretch; justify-content: space-between; gap: 0; }
.bene { display: flex; align-items: center; gap: 14px; padding: 12px 24px; flex: 1; border-right: 1px solid var(--border); transition: background var(--t); }
.bene:last-child { border-right: none; }
.bene:hover { background: rgba(255,255,255,.02); }
.bene-ico { font-size: 1.8rem; flex-shrink: 0; }
.bene-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--txt) !important; }
.bene-text span { font-size: .75rem; color: var(--muted); }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.nl-sec { padding: 60px 0; }
.nl-wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r3); padding: 40px 48px; position: relative; overflow: hidden; }
.nl-wrap::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(92,184,42,.15), transparent 70%); }
.nl-left { display: flex; align-items: center; gap: 20px; }
.nl-icon { font-size: 2.5rem; }
.nl-left h3 { font-family: 'Rajdhani', sans-serif !important; font-size: 1.7rem !important; font-weight: 700 !important; margin-bottom: 4px !important; color: var(--txt) !important; }
.nl-left p { font-size: .88rem !important; color: var(--muted) !important; }
.nl-form { display: flex; gap: 10px; flex-shrink: 0; }
.nl-form input[type="email"] { background: var(--bg3) !important; border: 1.5px solid var(--border) !important; color: var(--txt) !important; font-size: .88rem !important; padding: 12px 20px !important; border-radius: var(--r) !important; width: 280px; outline: none !important; }
.nl-form input[type="email"]::placeholder { color: var(--muted) !important; }
.nl-form input[type="email"]:focus { border-color: var(--P) !important; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .promo-wrap { grid-template-columns: 1fr; }
  .promo-right { display: none; }
  .hero-wrap { gap: 32px; }
}
@media (max-width: 768px) {
  .hero { padding: 50px 0 40px; min-height: auto; }
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 220px; }
  .hc2, .hc3, .hero-ring { display: none; }
  .hc1 { top: 50%; right: 50%; transform: translate(50%,-50%); }
  .hero h1 { font-size: 3rem !important; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .duos-wrap { grid-template-columns: 1fr; gap: 14px; }
  .gp-wrap { grid-template-columns: 1fr; gap: 40px; }
  .gp-card { width: 100%; max-width: 360px; }
  .st-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-wrap { flex-direction: column; gap: 0; }
  .bene { border-right: none; border-bottom: 1px solid var(--border); }
  .bene:last-child { border-bottom: none; }
  .nl-wrap { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .nl-form { width: 100%; flex-direction: column; }
  .nl-form input { width: 100% !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem !important; }
  .hero-right { display: none; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ════════════════════════════════════════════════════
   HEADER CUSTOM BLOCKOUT (header.php override)
   ════════════════════════════════════════════════════ */

/* ── TOP BAR ticker ──────────────────────────────── */
.bo-topbar {
  background: var(--bo-bg);
  border-bottom: 1px solid var(--bo-border);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.bo-topbar__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: bo-scroll 28s linear infinite;
  will-change: transform;
}
.bo-topbar__item {
  font-size: .72rem;
  color: var(--bo-muted);
  padding: 0 28px;
  border-right: 1px solid var(--bo-border);
  line-height: 32px;
  letter-spacing: .02em;
}
@keyframes bo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER PRINCIPAL ────────────────────────────── */
.bo-header {
  background: var(--bo-bg2);
  border-bottom: 1px solid var(--bo-border);
  position: sticky !important;
  top: 0 !important;
  z-index: 9999;
}
.admin-bar .bo-header {
  top: 32px !important;
}
@media (max-width: 782px) { .admin-bar .bo-header { top: 46px !important; } }

.bo-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
}

/* Logo */
.bo-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.bo-header__logo img {
  height: 52px !important;
  width: auto !important;
  display: block;
}
.bo-logo-fallback {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--bo-yellow);
  letter-spacing: -.01em;
}

/* Buscador */
.bo-header__search {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  background: var(--bo-bg3);
  border: 1px solid var(--bo-border2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--bo-t);
  max-width: 620px;
}
.bo-header__search:focus-within {
  border-color: var(--bo-green);
  box-shadow: 0 0 0 3px rgba(92,184,42,.15);
}
.bo-search-input {
  flex: 1 1 auto;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 10px 16px !important;
  color: var(--bo-txt) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  min-width: 0;
}
.bo-search-input::placeholder { color: var(--bo-muted) !important; }
.bo-search-btn {
  flex: 0 0 auto;
  background: var(--bo-green) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  cursor: pointer !important;
  transition: background var(--bo-t) !important;
  white-space: nowrap;
}
.bo-search-btn:hover { background: #4ca324 !important; }

/* Acciones (Cuenta + Carrito) */
.bo-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bo-haction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--bo-txt) !important;
  text-decoration: none !important;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background var(--bo-t), color var(--bo-t);
}
.bo-haction:hover {
  background: var(--bo-bg3);
  color: var(--bo-green) !important;
}
.bo-haction svg { display: block; stroke: currentColor; }
.bo-haction__label {
  font-size: .65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.bo-cart-wrap {
  position: relative;
  display: inline-flex;
}
.bo-cart-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--bo-orange);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ── NAVEGACIÓN PRINCIPAL ────────────────────────── */
.bo-nav {
  background: var(--bo-bg);
  border-bottom: 1px solid var(--bo-border);
}
.bo-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.bo-nav__list {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}
.bo-nav__list > li > a {
  display: block;
  padding: 11px 13px;
  color: rgba(238,240,244,.75) !important;
  text-decoration: none !important;
  font-size: .8rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: color var(--bo-t), background var(--bo-t);
  border-bottom: 2px solid transparent;
}
.bo-nav__list > li > a:hover,
.bo-nav__list > li.current-menu-item > a,
.bo-nav__list > li.current-menu-ancestor > a {
  color: var(--bo-txt) !important;
  border-bottom-color: var(--bo-green);
}
/* Items especiales */
.bo-nav--gold > a { color: var(--bo-yellow) !important; font-weight: 600 !important; }
.bo-nav--gold > a:hover { border-bottom-color: var(--bo-yellow) !important; }
.bo-nav--hot  > a { color: var(--bo-orange) !important; font-weight: 700 !important; }
.bo-nav--hot  > a:hover { border-bottom-color: var(--bo-orange) !important; }

/* Submenu (dropdown) */
.bo-nav__list > li { position: relative; }
.bo-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bo-bg2);
  border: 1px solid var(--bo-border);
  border-radius: var(--bo-r);
  padding: 6px 0;
  min-width: 210px;
  z-index: 10000;
  box-shadow: var(--sh);
}
.bo-nav__list > li:hover > .sub-menu { display: block; }
.bo-nav__list .sub-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--bo-muted) !important;
  font-size: .8rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none !important;
  transition: color var(--bo-t), background var(--bo-t);
}
.bo-nav__list .sub-menu a:hover {
  color: var(--bo-txt) !important;
  background: var(--bo-bg3);
}

/* ── Responsive header ───────────────────────────── */
@media (max-width: 900px) {
  .bo-header__search { max-width: 100%; }
  .bo-topbar { display: none; }
}
@media (max-width: 640px) {
  .bo-header__inner { padding: 10px 14px; gap: 10px; }
  .bo-search-btn { padding: 10px 12px !important; font-size: .75rem !important; }
  .bo-nav { display: none; } /* mobile: se maneja por Blocksy offcanvas */
}

/* ── Ocultar secciones de Blocksy no usadas ─────────── */
.ct-trending-block,
.ct-footer-widgets,
.footer-widgets-area,
.ct-widget-area--footer-two,
.ct-widget-area--footer-three {
  display: none !important;
}

/* ── Footer Blocksy: forzar fondo oscuro ─────────────── */
footer#footer,
.ct-footer,
footer.site-footer {
  background-color: var(--bo-bg2) !important;
  border-top: 1px solid var(--bo-border) !important;
}

footer#footer *,
.ct-footer *,
footer.site-footer * {
  color: var(--bo-muted) !important;
}

footer#footer a,
.ct-footer a,
footer.site-footer a {
  color: var(--bo-muted) !important;
  text-decoration: none;
}
footer#footer a:hover,
.ct-footer a:hover {
  color: var(--bo-txt) !important;
}

/* ════════════════════════════════════════════════════
   FOOTER CUSTOM BLOCKOUT (footer.php override)
   ════════════════════════════════════════════════════ */

#bo-footer { font-family: 'Inter', sans-serif; }

/* ── Main columns ────────────────────────────────── */
.bo-footer__main {
  background: var(--bo-bg2);
  border-top: 1px solid var(--bo-border);
  padding: 56px 0 40px;
}
.bo-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
}
.bo-footer__col { flex: 1 1 0; min-width: 0; }
.bo-footer__col--brand { flex: 1.4 1 0; }

/* Logo */
.bo-footer__logo { display: inline-block; margin-bottom: 16px; text-decoration: none !important; }
.bo-footer__logo img { height: 52px !important; width: auto !important; }
.bo-footer__tagline {
  font-size: .82rem;
  color: var(--bo-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Social icons */
.bo-footer__social { display: flex; gap: 10px; }
.bo-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--bo-border);
  color: var(--bo-muted) !important;
  text-decoration: none !important;
  transition: border-color var(--bo-t), color var(--bo-t), background var(--bo-t);
}
.bo-footer__social a:hover {
  border-color: var(--bo-green);
  color: var(--bo-txt) !important;
  background: var(--bo-bg3);
}

/* Column headings */
.bo-footer__heading {
  font-family: 'Inter', sans-serif !important;
  font-size: .7rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  color: var(--bo-muted) !important;
  text-transform: uppercase;
  margin-bottom: 18px !important;
}

/* Footer links */
.bo-footer__links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bo-footer__links li,
.bo-footer__links a {
  font-size: .82rem;
  color: var(--bo-muted) !important;
  text-decoration: none !important;
  transition: color var(--bo-t);
}
.bo-footer__links a:hover { color: var(--bo-txt) !important; }
.bo-footer__links--contact li { display: flex; align-items: center; gap: 6px; }
.bo-fc-icon { font-size: 1rem; line-height: 1; }
.bo-footer__wa-link strong { color: var(--bo-green) !important; }
.bo-footer__wa-link:hover strong { color: #4ca324 !important; }

/* ── Legal bar ───────────────────────────────────── */
.bo-footer__legal {
  background: var(--bo-bg);
  border-top: 1px solid var(--bo-border);
  padding: 20px 0;
}
.bo-footer__legal .bo-footer__inner {
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* AFIP */
.bo-legal__afip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}
.bo-afip-qr {
  width: 52px;
  height: 52px;
  background: var(--bo-bg3);
  border: 1px solid var(--bo-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.bo-legal__afip-label {
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--bo-muted);
  text-transform: uppercase;
}

/* Arrepentimiento button */
.bo-legal__arrepent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 22px;
  background: #DC2626;
  color: #fff !important;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: .85rem;
  transition: background var(--bo-t);
  text-align: center;
}
.bo-legal__arrepent svg { margin-bottom: 2px; }
.bo-legal__arrepent small {
  font-size: .65rem;
  font-weight: 400;
  opacity: .85;
  letter-spacing: .05em;
}
.bo-legal__arrepent:hover { background: #b91c1c; color: #fff !important; }

/* Defensa del consumidor */
.bo-legal__defensa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 22px;
  border: 1px solid var(--bo-border);
  border-radius: 10px;
  color: var(--bo-txt) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: .85rem;
  transition: border-color var(--bo-t), background var(--bo-t);
  text-align: center;
}
.bo-legal__defensa small {
  font-size: .65rem;
  font-weight: 400;
  color: var(--bo-muted);
  letter-spacing: .03em;
}
.bo-legal__defensa:hover {
  border-color: var(--bo-green);
  background: var(--bo-bg3);
  color: var(--bo-txt) !important;
}

/* ── Payment / shipping bar ──────────────────────── */
.bo-footer__payments {
  background: var(--bo-bg);
  border-top: 1px solid var(--bo-border);
  padding: 16px 0;
}
.bo-footer__payments .bo-footer__inner {
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.bo-pay__group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bo-pay__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--bo-muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.bo-pay__methods { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.bo-pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid var(--bo-border);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--bo-txt) !important;
  background: var(--bo-bg2);
  white-space: nowrap;
}
.bo-pay-badge--mp    { border-color: #009EE3; color: #009EE3 !important; }
.bo-pay-badge--visa  { border-color: #1A1F71; color: #fff !important; background: #1A1F71; }
.bo-pay-badge--mc    { border-color: #EB001B; color: #EB001B !important; }
.bo-pay-badge--amex  { border-color: #2E77BC; color: #2E77BC !important; }
.bo-pay-badge--naranja { border-color: #FF6900; color: #FF6900 !important; }
.bo-pay-badge--correo  { border-color: var(--bo-yellow); color: var(--bo-yellow) !important; }
.bo-pay-badge--local   { border-color: var(--bo-green);  color: var(--bo-green)  !important; }

/* ── Copyright ───────────────────────────────────── */
.bo-footer__copy {
  background: var(--bo-bg);
  border-top: 1px solid var(--bo-border);
  padding: 14px 0;
}
.bo-footer__copy .bo-footer__inner {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.bo-footer__copy span {
  font-size: .75rem;
  color: var(--bo-muted);
}
.bo-footer__legal-links { display: flex; gap: 20px; }
.bo-footer__legal-links a {
  font-size: .75rem;
  color: var(--bo-muted) !important;
  text-decoration: none !important;
}
.bo-footer__legal-links a:hover { color: var(--bo-txt) !important; }

/* ── Responsive footer ───────────────────────────── */
@media (max-width: 900px) {
  .bo-footer__inner { flex-wrap: wrap; gap: 28px; }
  .bo-footer__col { flex: 1 1 calc(50% - 14px); }
  .bo-footer__col--brand { flex: 1 1 100%; }
}
@media (max-width: 580px) {
  .bo-footer__col { flex: 1 1 100%; }
  .bo-footer__payments .bo-footer__inner { gap: 16px; }
  .bo-pay__group { flex-direction: column; align-items: flex-start; }
  .bo-footer__copy .bo-footer__inner { flex-direction: column; text-align: center; }
}
