/* ═══════════════════════════════════════════════════════════
   TIENDAS CAMPING PRO — CSS Principal
   Estética: Outdoor aventura — verde profundo + naranja fuego
   ═══════════════════════════════════════════════════════════ */

:root {
  --verde:        #1a3d2b;
  --verde-med:    #2d6a4f;
  --verde-claro:  #52b788;
  --naranja:      #e76f00;
  --naranja-vivo: #ff8c1a;
  --crema:        #f5f0e8;
  --blanco:       #ffffff;
  --gris-texto:   #2c2c2c;
  --gris-suave:   #6b7280;
  --gris-bg:      #f8f6f2;
  --amazon:       #ff9900;
  --amazon-hover: #e68a00;
  --sombra:       0 4px 24px rgba(0,0,0,.12);
  --sombra-hover: 0 8px 40px rgba(0,0,0,.2);
  --radio:        12px;
  --transicion:   .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gris-texto);
  background: var(--blanco);
  line-height: 1.65;
}

h1,h2,h3,h4,h5 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--verde);
}

a { color: var(--verde-med); text-decoration: none; }
a:hover { color: var(--naranja); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ═══ OFFER BAR ═══ */
.offer-bar {
  background: var(--naranja);
  color: var(--blanco);
  text-align: center;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
}
.offer-bar a { color: var(--blanco); text-decoration: underline; font-weight: 700; }
.offer-bar a:hover { opacity: .8; }

/* ═══ HEADER ═══ */
.site-header {
  background: var(--verde);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.site-header .container {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  padding-top: 14px; padding-bottom: 14px;
}

.logo { display: flex; align-items: center; gap: 10px; color: var(--blanco); flex: 0 0 auto; min-width: max-content; white-space: nowrap; }
.logo:hover { color: var(--naranja-vivo); }
.logo-icon { font-size: 1.8rem; }
.logo-text { font-family: 'Bebas Neue', cursive; font-size: 1.45rem; letter-spacing: .06em; white-space: nowrap; word-break: normal; overflow-wrap: normal; }

.main-nav { flex: 1 1 auto; min-width: 0; }
.main-nav ul { display: flex; list-style: none; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.88);
  padding: 10px 11px; border-radius: 6px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transicion);
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,.15); color: var(--naranja-vivo); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 110%; left: 0;
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  min-width: 180px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transicion);
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { color: var(--gris-texto) !important; background: none !important; padding: 12px 16px; display: block; font-size: 1rem; line-height: 1.35; }
.dropdown li a:hover { background: var(--gris-bg) !important; color: var(--verde-med) !important; }

.nav-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,.4); color: #fff; font-size: 1.45rem; padding: 8px 13px; border-radius: 6px; cursor: pointer; }

/* Mobile Nav (Oculto globalmente por defecto para evitar duplicados estáticos) */
.mobile-nav { display: none; }

/* ═══ BOTONES AMAZON ═══ */
.btn-amazon, a.btn-amazon {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amazon);
  color: var(--gris-texto) !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transicion);
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,153,0,.4);
}
.btn-amazon:hover, a.btn-amazon:hover {
  background: var(--amazon-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,.5);
  color: var(--gris-texto) !important;
}
.btn-amazon .arrow { font-size: 1.1em; }

.btn-amazon-lg {
  font-size: 1.15rem;
  padding: 18px 36px;
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--verde) !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--verde);
  transition: var(--transicion);
}
.btn-secondary:hover { background: var(--verde); color: var(--blanco) !important; }

/* ═══ HERO ═══ */
.hero {
  background:
    linear-gradient(135deg, rgba(26,61,43,.92) 0%, rgba(26,61,43,.7) 60%, rgba(231,111,0,.3) 100%),
    image-set(
      url('../../img/hero-tienda-campana.webp') type('image/webp'),
      url('../../img/hero-tienda-campana.jpg') type('image/jpeg')
    ) center/cover no-repeat;
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--blanco), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--naranja);
  color: var(--blanco);
  padding: 6px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--blanco);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 em { color: var(--naranja-vivo); font-style: normal; }
.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,.9);
  margin-bottom: 36px; max-width: 520px;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  margin-top: 40px; flex-wrap: wrap;
}
.trust-item { color: rgba(255,255,255,.8); font-size: .88rem; display: flex; align-items: center; gap: 6px; }
.trust-item strong { color: var(--blanco); }

/* ═══ SECCIONES ═══ */
.section { padding: 80px 0; }
.section-alt { background: var(--gris-bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.section-header p { color: var(--gris-suave); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  color: var(--naranja); font-weight: 700; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 8px;
}

/* ═══ TARJETAS DE PRODUCTO ═══ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicion);
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,.06);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); }

.product-img-wrap {
  position: relative;
  background: var(--gris-bg);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--naranja);
  color: var(--blanco);
  padding: 4px 12px; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
}
.product-badge.verde { background: var(--verde-med); }

.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-marca { color: var(--gris-suave); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.product-nombre { font-family: 'Bebas Neue', cursive; font-size: 1.45rem; margin: 4px 0 10px; color: var(--verde); line-height: 1.2; }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--amazon); font-size: 1rem; }
.rating-num { font-size: .9rem; font-weight: 700; }
.rating-count { color: var(--gris-suave); font-size: .82rem; }

.product-desc { color: var(--gris-suave); font-size: .9rem; line-height: 1.6; margin-bottom: 14px; }

.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  background: rgba(82,183,136,.12);
  color: var(--verde-med);
  border: 1px solid rgba(82,183,136,.3);
  padding: 3px 10px; border-radius: 50px;
  font-size: .78rem; font-weight: 600;
}

.product-precio { margin-top: auto; }
.precio-actual { font-size: 1.7rem; font-family: 'Bebas Neue', cursive; color: var(--naranja); }
.precio-ant { font-size: .95rem; color: var(--gris-suave); text-decoration: line-through; margin-left: 6px; }
.precio-ahorro { font-size: .8rem; color: #16a34a; font-weight: 700; margin-left: 6px; }

.product-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.product-cta .btn-amazon { justify-content: center; border-radius: 10px; }
.btn-detail { text-align: center; font-size: .85rem; color: var(--gris-suave); padding: 8px; border-radius: 8px; border: 1px solid #e5e7eb; transition: var(--transicion); }
.btn-detail:hover { background: var(--gris-bg); color: var(--verde); }

/* ═══ PAIN POINTS / BENEFICIOS ═══ */
.pain-section {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-med) 100%);
  color: var(--blanco);
}
.pain-section .section-header h2 { color: var(--blanco); }
.pain-section .section-header p { color: rgba(255,255,255,.8); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pain-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; padding: 28px;
  backdrop-filter: blur(8px);
  transition: var(--transicion);
}
.pain-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.pain-icon { font-size: 2.4rem; margin-bottom: 14px; }
.pain-card h3 { color: var(--naranja-vivo); font-size: 1.3rem; margin-bottom: 8px; }
.pain-card p { color: rgba(255,255,255,.85); font-size: .92rem; }

/* ═══ GUÍA RÁPIDA ═══ */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.guide-item {
  text-align: center; padding: 28px 20px;
  border-radius: 14px; border: 2px solid var(--gris-bg);
  transition: var(--transicion);
}
.guide-item:hover { border-color: var(--verde-claro); background: rgba(82,183,136,.05); }
.guide-num {
  width: 48px; height: 48px;
  background: var(--verde); color: var(--blanco);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive; font-size: 1.4rem;
  margin: 0 auto 14px;
}
.guide-item h4 { font-size: 1rem; margin-bottom: 6px; }
.guide-item p { font-size: .88rem; color: var(--gris-suave); }

/* ═══ COMPARATIVA TABLA ═══ */
.table-wrap { overflow-x: auto; border-radius: 14px; box-shadow: var(--sombra); }
table.comparativa { width: 100%; border-collapse: collapse; background: var(--blanco); }
table.comparativa th {
  background: var(--verde); color: var(--blanco);
  padding: 16px 18px; text-align: left;
  font-family: 'Bebas Neue', cursive; font-size: 1.05rem; letter-spacing: .04em;
}
table.comparativa td { padding: 14px 18px; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .93rem; }
table.comparativa tr:last-child td { border-bottom: none; }
table.comparativa tr:nth-child(even) td { background: var(--gris-bg); }
table.comparativa .check { color: #16a34a; font-size: 1.1rem; }
table.comparativa .cross { color: #dc2626; }
table.comparativa .btn-amazon {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: .82rem;
  box-shadow: none;
}

/* ═══ TESTIMONIALES / REVIEWS ═══ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--blanco); border-radius: 14px; padding: 26px;
  box-shadow: var(--sombra); border-left: 4px solid var(--verde-claro);
}
.review-stars { color: var(--amazon); font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-style: italic; color: var(--gris-texto); margin-bottom: 14px; line-height: 1.7; }
.review-author { font-weight: 700; font-size: .9rem; color: var(--verde); }
.review-subtitle { font-size: .82rem; color: var(--gris-suave); }

/* ═══ FAQ / ACORDEÓN ═══ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e7eb; border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--verde); display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transicion);
}
.faq-q:hover { background: var(--gris-bg); }
.faq-icon { font-size: 1.2rem; transition: transform var(--transicion); }
.faq-a { display: none; padding: 0 22px 18px; color: var(--gris-suave); line-height: 1.7; font-size: .95rem; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ═══ BREADCRUMBS ═══ */
.breadcrumb { padding: 14px 0; font-size: .86rem; color: var(--gris-suave); }
.breadcrumb a { color: var(--verde-med); }
.breadcrumb span { margin: 0 6px; }

/* ═══ CATEGORÍA HERO (páginas internas) ═══ */
.cat-hero {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-med) 100%);
  padding: 60px 0; color: var(--blanco); text-align: center;
}
.cat-hero h1 { color: var(--blanco); font-size: clamp(2.2rem, 5vw, 4rem); }
.cat-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-top: 10px; }

/* ═══ BLOG SEO ═══ */
.blog-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--blanco);
  padding: 72px 0;
}
.blog-hero h1 {
  color: var(--blanco);
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  max-width: 860px;
  margin: 16px 0;
}
.blog-hero p {
  color: rgba(255,255,255,.9);
  max-width: 660px;
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--blanco);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  box-shadow: var(--sombra);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gris-bg);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card h2 {
  font-size: 1.7rem;
  letter-spacing: .02em;
}
.blog-card p {
  color: var(--gris-suave);
  font-size: .94rem;
  margin-bottom: 8px;
}
.buyer-box,
.checklist-box,
.conversion-box,
.sidebar-card {
  background: var(--gris-bg);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 30px;
}
.buyer-box {
  background: rgba(82,183,136,.1);
  border-color: rgba(82,183,136,.28);
}
.article-body > h2 {
  margin: 34px 0 12px;
  font-size: 2.15rem;
}
.article-body > p,
.buyer-box p {
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 14px;
}
.checklist-box ul,
.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist-box li {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  color: #374151;
  font-weight: 600;
}
.conversion-box {
  background: var(--verde);
  color: var(--blanco);
}
.conversion-box h2 { color: var(--blanco); }
.conversion-box p { color: rgba(255,255,255,.86); margin-bottom: 20px; }
.blog-sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-card {
  margin-bottom: 18px;
}
.sidebar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.sidebar-card p,
.sidebar-card li {
  color: var(--gris-suave);
  font-size: .92rem;
}

/* ═══ FOOTER ═══ */
.footer-cta {
  background: var(--naranja);
  padding: 60px 0; text-align: center;
}
.footer-cta h2 { color: var(--blanco); font-size: 2.4rem; margin-bottom: 10px; }
.footer-cta p { color: rgba(255,255,255,.9); margin-bottom: 28px; font-size: 1.05rem; }
.footer-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-cta .btn-amazon { background: var(--verde); color: var(--blanco) !important; box-shadow: none; }
.footer-cta .btn-amazon:hover { background: var(--verde-med); }
.footer-cta .btn-secondary { border-color: var(--blanco); color: var(--blanco) !important; }
.footer-cta .btn-secondary:hover { background: var(--blanco); color: var(--naranja) !important; }

  .site-footer { background: var(--verde); color: rgba(255,255,255,.8); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-col .logo-icon { font-size: 1.6rem; }
.footer-col strong { font-size: 1.05rem; color: var(--blanco); font-family: 'Bebas Neue'; letter-spacing: .06em; }
.footer-col p { font-size: .88rem; margin-top: 10px; line-height: 1.7; color: rgba(255,255,255,.7); }
.footer-col h4 { color: var(--blanco); font-family: 'Bebas Neue'; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: .05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transicion); }
.footer-col ul a:hover { color: var(--naranja-vivo); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.affiliate-disclaimer { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 12px; }
.affiliate-disclaimer strong { color: rgba(255,255,255,.75); }
.copyright { font-size: .82rem; color: rgba(255,255,255,.45); }

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--verde); color: var(--blanco);
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sombra); transition: var(--transicion);
  opacity: 0; pointer-events: none; z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--naranja); transform: translateY(-3px); }

/* ═══ UTILIDADES ═══ */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-4 { margin-bottom: 32px; }
.inline-badge { display: inline-block; background: rgba(231,111,0,.12); color: var(--naranja); border: 1px solid rgba(231,111,0,.25); padding: 2px 10px; border-radius: 50px; font-size: .8rem; font-weight: 700; }
.geo-links .card {
  display: block;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: var(--blanco);
  color: var(--verde);
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  transition: var(--transicion);
}
.geo-links .card:hover {
  border-color: var(--naranja);
  color: var(--naranja);
  transform: translateY(-2px);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }

  /* Capa flotante fija e independiente para el menú móvil */
  .mobile-nav {
    display: none;             /* Oculto por defecto */
    position: fixed;           /* Flota por encima de todo el contenido */
    top: 65px;                 /* Ajustado exactamente a la altura de tu cabecera verde */
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);/* Llena todo el alto de pantalla restante */
    background: var(--verde-med);
    flex-direction: column;
    z-index: 99999;            /* Capa superpuesta absoluta */
    overflow-y: auto;          /* Scroll interno si el menú es largo */
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }

  .mobile-nav a { 
    color: var(--blanco); 
    padding: 18px 24px; 
    border-bottom: 1px solid rgba(255,255,255,.1); 
    font-weight: 500; 
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: var(--transicion);
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--naranja-vivo);
  }

  /* Activación limpia mediante JS */
  .mobile-nav.active { 
    display: flex !important; 
  }
  /* Asegura que si hay listas (ul/li) dentro del menú móvil, se adapten */
  .mobile-nav ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .mobile-nav li {
    width: 100%;
    position: relative;
  }

  /* Estilo para los submenús en móvil: los mostramos abiertos por defecto pero sangrados */
  .mobile-nav .dropdown {
    position: relative;    /* Rompe el posicionamiento absoluto del escritorio */
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.15); /* Un fondo sutil más oscuro para diferenciarlo */
    box-shadow: none;
    border-radius: 0;
    opacity: 1;            /* Siempre visible dentro del menú móvil */
    visibility: visible;
    transform: none;
    display: block;        /* Se listan uno debajo de otro */
    padding-left: 20px;    /* El truco de la sangría para que se note que son hijos */
  }

  /* Estilos para los enlaces de los submenús en móvil */
  .mobile-nav .dropdown li a {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav .dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--naranja-vivo) !important;
  }
}

@media (max-width: 600px) {
  .offer-bar {
    padding: 8px 14px;
    font-size: .78rem;
    line-height: 1.35;
  }

  .offer-bar p {
    max-width: 34rem;
    margin: 0 auto;
  }

  .site-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-icon { font-size: 1.45rem; }
  .logo-text { font-size: 1.28rem; letter-spacing: .06em; }
  .nav-toggle { padding: 5px 10px; font-size: 1.15rem; }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 34px 0 54px;
  }

  .hero::after { height: 34px; }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    font-size: .72rem;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.15rem);
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: .98rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-cta {
    align-items: stretch;
  }

  .hero-cta a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    gap: 10px;
    margin-top: 22px;
  }

  .trust-item {
    width: 100%;
    font-size: .82rem;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  table.comparativa td, table.comparativa th { padding: 10px 12px; font-size: .83rem; }
  
  /* Ajuste de altura dinámica por si la offer-bar superior empuja la cabecera en pantallas estrechas */
  .mobile-nav {
    top: 105px;
    height: calc(100vh - 105px);
  }
}


/* ═══ RESPONSIVE HARDENING — Fix móvil global ═══ */
html, body { max-width: 100%; overflow-x: hidden; }
body { overflow-wrap: anywhere; }
.container, .site-header, .section, .cat-hero, .footer-cta, .site-footer { max-width: 100%; }

/* Layouts reutilizables */
.brand-intro-grid,
.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.article-layout { grid-template-columns: 1fr 280px; }
.article-body { max-width: 700px; }
.brand-info-card {
  background: var(--gris-bg);
  border-radius: 16px;
  padding: 28px;
  min-width: 0;
}

/* Evita que botones, cards y textos se salgan del viewport */
.btn-amazon,
a.btn-amazon,
.btn-secondary,
a.btn-secondary,
.btn-detail {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  justify-content: center;
  line-height: 1.25;
}
.product-card,
.pain-card,
.review-card,
.guide-item,
.faq-item,
.geo-links .card,
.brand-info-card,
.footer-col {
  min-width: 0;
  overflow-wrap: anywhere;
}
.product-nombre,
h1, h2, h3, h4, p, li, a, span { overflow-wrap: anywhere; }

/* Imágenes y tablas nunca deben romper el ancho */
img, iframe { max-width: 100%; }
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 900px) {
  .brand-intro-grid,
  .article-layout,
  .section .container > div[style*="grid-template-columns:2fr 1fr"],
  .section .container > div[style*="grid-template-columns:1fr 280px"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .article-body { max-width: 100%; }

  .products-grid,
  .reviews-grid,
  .pain-grid,
  .blog-grid,
  .guide-grid,
  .footer-grid,
  .geo-links,
  div[style*="grid-template-columns:repeat(auto-fit"],
  div[style*="grid-template-columns: repeat(auto-fit"],
  div[style*="grid-template-columns:repeat(auto-fill"],
  div[style*="grid-template-columns: repeat(auto-fill"] {
    grid-template-columns: 1fr !important;
  }

  aside,
  .blog-sidebar,
  [style*="width:280px"],
  [style*="width: 280px"],
  [style*="min-width"] {
    max-width: 100% !important;
    position: static;
  }
}

@media (max-width: 600px) {
  .container { padding-left: 16px; padding-right: 16px; }

  .cat-hero { padding: 34px 0 42px; }
  .cat-hero h1 { font-size: clamp(2rem, 12vw, 2.8rem); }
  .cat-hero p { font-size: .94rem; line-height: 1.55; }
  .breadcrumb { font-size: .78rem; line-height: 1.45; }

  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.75rem, 10vw, 2.45rem); }

  .brand-intro-grid { margin-bottom: 34px; }
  .brand-intro-grid h2,
  .section h2 { font-size: clamp(1.85rem, 10vw, 2.35rem) !important; }
  .brand-info-card,
  .section [style*="padding:28px"],
  .section [style*="padding: 28px"],
  .section [style*="padding:48px"],
  .section [style*="padding: 48px"],
  .section [style*="padding:60px"],
  .section [style*="padding: 60px"] {
    padding: 20px !important;
  }

  .products-grid { gap: 18px; }
  .product-body { padding: 16px; }
  .product-nombre { font-size: 1.25rem; }
  .product-rating { flex-wrap: wrap; }
  .product-tags { gap: 5px; }
  .tag { font-size: .72rem; padding: 3px 8px; }
  .precio-actual { font-size: 1.45rem; }

  .btn-amazon,
  a.btn-amazon,
  .btn-secondary,
  a.btn-secondary {
    width: 100%;
    padding: 13px 18px;
    border-radius: 14px;
    font-size: .95rem;
  }
  .btn-amazon-lg { font-size: 1rem; padding: 15px 18px; }

  .faq-q { padding: 15px 16px; font-size: .95rem; gap: 12px; }
  .faq-a { padding: 0 16px 16px; }

  .footer-cta { padding: 42px 0; }
  .footer-cta h2 { font-size: 2rem; }
  .footer-cta-buttons { flex-direction: column; }

  /* Header móvil más estable */
  .site-header .container { gap: 10px; }
  .logo { min-width: 0; }
  .logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100vw - 110px); }

  /* Cards horizontales pequeñas de guía-de-compra */
  div[style*="display:flex"][style*="align-items:center"] {
    flex-wrap: wrap !important;
  }
  div[style*="display:flex"][style*="align-items:center"] img {
    max-width: 90px !important;
  }
}

/* Responsive tables: keep columns readable and scroll horizontally on small screens */
.table-wrap {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

table.comparativa {
  min-width: 720px;
  table-layout: auto;
}

table.comparativa th,
table.comparativa td {
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  vertical-align: top;
}

table.comparativa th {
  white-space: nowrap;
}

table.comparativa td:first-child,
table.comparativa th:first-child {
  min-width: 180px;
}

table.comparativa td:last-child,
table.comparativa th:last-child {
  min-width: 130px;
  white-space: nowrap;
}

table.comparativa .btn-amazon {
  width: auto;
  white-space: nowrap;
}

/* Desktop layout repair */
.container {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.site-header .container {
  width: min(1480px, calc(100% - 40px));
  max-width: 1480px;
}

.main-nav,
.main-nav *,
.dropdown,
.dropdown * {
  overflow-wrap: normal;
  word-break: normal;
}

.main-nav > ul {
  align-items: center;
  flex-wrap: nowrap;
}

.main-nav a,
.dropdown li,
.dropdown li a {
  white-space: nowrap;
}

.main-nav .dropdown {
  display: block;
  min-width: 220px;
}

@media (max-width: 900px) {
  .container,
  .site-header .container {
    width: min(100% - 32px, 1200px);
  }
}


/* Blog visual blocks without external image dependency */
.blog-hero {
  background:
    linear-gradient(135deg, rgba(26,61,43,.94), rgba(45,106,79,.82)),
    radial-gradient(circle at 80% 20%, rgba(255,140,26,.35), transparent 34%);
}
.blog-card-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(26,61,43,.92), rgba(45,106,79,.8)),
    radial-gradient(circle at 80% 18%, rgba(255,140,26,.55), transparent 32%);
  color: #fff;
}
.blog-card-visual span {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  background: rgba(231,111,0,.9);
  padding: 6px 10px;
  border-radius: 6px;
}


/* Amazon product blocks */
.amazon-products-block {
  margin: 42px 0;
  padding: 28px;
  background: #f7faf7;
  border: 1px solid rgba(45, 106, 79, .16);
  border-radius: 8px;
}
.amazon-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.amazon-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}
.amazon-product-image {
  aspect-ratio: 16 / 10;
  background: #e8f3ec;
}
.amazon-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amazon-product-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
  flex: 1;
}
.amazon-product-asin {
  margin: 0;
  color: #6b7280;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}
.amazon-product-body h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
}
.amazon-product-body p {
  margin: 0;
  color: #4b5563;
  font-size: .94rem;
  line-height: 1.45;
}
.amazon-product-body strong {
  display: block;
  margin-top: auto;
  color: var(--verde);
  font-size: 1rem;
}
.amazon-product-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--verde);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
}
.amazon-product-button:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}
.amazon-products-legal {
  margin: 18px 0 0;
  color: #6b7280;
  font-size: .88rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .amazon-products-grid {
    grid-template-columns: 1fr;
  }
  .amazon-products-block {
    padding: 20px;
  }
}


/* Blog/table responsive override - 2026-06-04 */
.article-layout,
.article-body,
.blog-sidebar,
.buyer-box,
.checklist-box,
.conversion-box,
.sidebar-card,
.amazon-products-block,
.table-wrap {
  min-width: 0;
}

.article-layout {
  width: 100%;
}

.article-body {
  width: 100%;
  max-width: 100%;
}

.article-body .table-wrap,
.section .table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  border-radius: 8px;
}

.article-body .table-wrap::after,
.section .table-wrap::after {
  content: "Desliza la tabla para ver más";
  display: none;
  padding: 8px 12px 10px;
  color: #6b7280;
  font-size: .8rem;
  background: #fff;
}

.article-body table,
.section table {
  max-width: none;
}

table.comparativa {
  width: max-content;
  min-width: 720px;
}

table.comparativa th,
table.comparativa td {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

table.comparativa th {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px;
  }

  .blog-sidebar {
    position: static;
    top: auto;
    width: 100%;
  }
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container,
  .site-header .container {
    width: min(100% - 28px, 1200px);
  }

  .blog-hero {
    min-height: auto;
    padding: 44px 0;
  }

  .blog-hero h1 {
    font-size: clamp(2.05rem, 12vw, 3rem);
  }

  .article-body > h2 {
    font-size: 1.75rem;
  }

  .buyer-box,
  .checklist-box,
  .conversion-box,
  .sidebar-card,
  .amazon-products-block {
    padding: 18px;
    border-radius: 8px;
  }

  .article-body .table-wrap::after,
  .section .table-wrap::after {
    display: block;
  }

  table.comparativa {
    min-width: 680px;
  }

  table.comparativa th,
  table.comparativa td {
    padding: 10px 12px;
    font-size: .84rem;
  }

  .amazon-products-grid,
  .products-grid,
  .blog-grid,
  .guide-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


/* Homepage featured product sections */
.home-featured-products {
  background: #fff;
}
.home-products-grid {
  display: grid;
  gap: 22px;
}
.home-products-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-products-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-product-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .07);
}
.home-product-eyebrow {
  margin: 2px 0 10px;
  color: #12304f;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.home-product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background: #edf5ef;
}
.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  background: var(--naranja);
  color: #fff;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 900;
}
.home-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 2px 2px;
}
.home-product-body h3 {
  margin: 0;
  color: var(--verde);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}
.home-product-body p {
  margin: 0;
  color: #6b7280;
  font-size: .9rem;
  line-height: 1.4;
}
.home-product-body strong {
  color: var(--verde-med);
  font-size: 1.22rem;
  font-weight: 900;
}
.home-product-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--verde);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
}
.home-product-button:hover {
  background: var(--verde-med);
  color: #fff !important;
}
.home-products-link {
  margin-top: 26px;
  text-align: center;
}
.home-products-link a {
  color: var(--verde);
  font-weight: 900;
}
@media (max-width: 900px) {
  .home-products-grid-4,
  .home-products-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .home-products-grid-4,
  .home-products-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .home-product-card {
    padding: 8px;
  }
  .home-product-image {
    height: 145px;
  }
  .home-product-body h3 {
    font-size: .92rem;
  }
  .home-product-body p {
    font-size: .8rem;
  }
  .home-product-body strong {
    font-size: 1.05rem;
  }
  .home-product-button {
    min-height: 40px;
    font-size: .84rem;
  }
}


/* Conversion SEO system - 2026-06-04 */
.home-top-products {
  padding-top: 44px;
  background: #fff;
}
.home-strip-title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.home-product-card-large .home-product-image {
  height: 240px;
}
.intent-button-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.intent-button-grid a {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid rgba(45,106,79,.18);
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
}
.intent-button-grid span {
  color: var(--naranja);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.intent-button-grid strong {
  color: var(--verde);
  font-size: 1.05rem;
}
.quick-buy-block {
  margin: 0 0 34px;
  padding: 24px;
  border-radius: 8px;
  background: #f7faf7;
  border: 1px solid rgba(45,106,79,.16);
}
.quick-buy-block h2 {
  margin: 0 0 18px;
  font-size: 2rem;
}
.quick-buy-table {
  min-width: 760px;
}
.quick-price {
  color: var(--verde-med);
  font-size: 1rem;
}
.quick-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--verde);
  color: #fff !important;
  font-weight: 900;
  white-space: nowrap;
}
.brand-table-img {
  width: 96px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}
.brand-copy {
  max-width: 860px;
  margin: 36px auto;
}
.final-recommendation {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
  gap: 24px;
  margin: 38px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(17,24,39,.07);
}
.final-rec-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}
.final-rec-body h2 {
  margin: 4px 0 10px;
  font-size: 2.1rem;
}
.final-rec-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}
.final-rec-lists h3 {
  font-size: 1.15rem;
}
.final-rec-lists ul {
  padding-left: 18px;
  color: #4b5563;
}
.final-rec-price {
  display: block;
  color: var(--verde-med);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.product-price-note {
  display: block;
  color: #6b7280;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}
.final-rec-button {
  max-width: 360px;
}
@media (max-width: 1000px) {
  .intent-button-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .final-recommendation {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .home-top-products {
    padding-top: 28px;
  }
  .home-products-grid-3 {
    grid-template-columns: 1fr !important;
  }
  .home-product-card-large .home-product-image {
    height: 210px;
  }
  .intent-button-grid {
    grid-template-columns: 1fr;
  }
  .quick-buy-block {
    padding: 16px;
  }
  .quick-buy-table {
    min-width: 720px;
  }
  .final-rec-lists {
    grid-template-columns: 1fr;
  }
}


/* Amazon intent hub - 2026-06-04 */
.intent-hub-section {
  padding: 70px 0;
  background: #f8fbf8;
}
.section .intent-hub-section,
.article-body .intent-hub-section {
  padding: 36px 0;
}
.intent-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.intent-hub-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .1);
  box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
}
.intent-hub-badge {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--naranja);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.intent-hub-card h3 {
  margin: 2px 0 0;
  font-size: 1.45rem;
}
.intent-hub-card strong {
  color: #12304f;
  line-height: 1.3;
}
.intent-hub-card p {
  color: #6b7280;
  font-size: .9rem;
  line-height: 1.45;
}
.intent-hub-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.intent-learn,
.intent-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 900;
}
.intent-learn {
  background: #e8f3ec;
  color: var(--verde) !important;
}
.intent-amazon {
  background: var(--verde);
  color: #fff !important;
}
.intent-hub-fallback {
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: var(--verde);
  color: #fff;
  text-align: center;
}
.intent-hub-fallback p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
}
.intent-hub-fallback a {
  color: #fff !important;
  font-weight: 900;
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .intent-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .intent-hub-grid {
    grid-template-columns: 1fr;
  }
  .intent-hub-section {
    padding: 46px 0;
  }
}


/* Fix product imagery, sidebar and comparison tables - 2026-06-04 */
.blog-sidebar .final-recommendation {
  display: none !important;
}
.compact-product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17,24,39,.06);
}
.compact-product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  background: #edf5ef;
}
.compact-product-card h3 {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  line-height: 1.25;
  font-size: 1rem;
  font-weight: 900;
}
.compact-product-card p {
  margin: 0;
  color: #6b7280;
  font-size: .9rem;
  line-height: 1.4;
}
.compact-product-card strong {
  color: var(--verde-med);
  font-size: 1.18rem;
}
.final-recommendation {
  overflow: hidden;
}
.final-rec-image {
  min-width: 0;
}
.final-rec-image img {
  height: 320px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.quick-buy-table-wrap {
  box-shadow: none;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 8px;
}
.quick-buy-table {
  width: 100% !important;
  min-width: 820px;
}
.quick-buy-table th,
.quick-buy-table td {
  vertical-align: middle;
}
.quick-buy-table td:first-child {
  min-width: 240px;
}
.quick-buy-btn {
  width: 100%;
  min-width: 132px;
  text-align: center;
}
@media (max-width: 760px) {
  .quick-buy-table-wrap {
    overflow: visible;
    border: 0;
    box-shadow: none;
  }
  .quick-buy-table,
  .quick-buy-table thead,
  .quick-buy-table tbody,
  .quick-buy-table th,
  .quick-buy-table td,
  .quick-buy-table tr {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
  }
  .quick-buy-table thead {
    display: none;
  }
  .quick-buy-table tr {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid rgba(17,24,39,.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(17,24,39,.05);
  }
  .quick-buy-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border: 0;
    font-size: .92rem;
  }
  .quick-buy-table td::before {
    content: attr(data-label);
    color: #6b7280;
    font-weight: 800;
  }
  .quick-buy-table td:first-child {
    display: block;
    font-size: 1rem;
    padding-bottom: 10px;
  }
  .quick-buy-table td:first-child::before {
    display: none;
  }
  .quick-buy-table td:last-child {
    display: block;
    padding-top: 10px;
  }
  .quick-buy-table td:last-child::before {
    display: none;
  }
}
@media (max-width: 700px) {
  .final-recommendation {
    padding: 16px;
  }
  .final-rec-image img {
    height: 220px;
  }
}


/* Ecommerce category marketplace - 2026-06-04 */
.category-marketplace {
  padding: 46px 0 72px;
  background: #fff;
}
.market-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
}
.market-trust-strip span {
  padding: 12px;
  border-radius: 8px;
  background: #f4faf6;
  color: var(--verde);
  font-weight: 900;
  text-align: center;
}
.market-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -28px 0 30px;
}
.market-filter-row a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #e8f3ec;
  color: var(--verde) !important;
  font-weight: 900;
}
.market-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.market-product-card {
  min-width: 0;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17,24,39,.07);
  overflow: hidden;
}
.market-product-image {
  position: relative;
  height: 190px;
}
.market-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market-product-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--naranja);
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
}
.market-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}
.market-product-body h3 {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}
.market-product-body p {
  margin: 0;
  color: #6b7280;
  font-size: .88rem;
  line-height: 1.4;
}
.market-product-body strong {
  color: var(--verde-med);
  font-size: 1.16rem;
}
.market-amazon-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 6px;
  background: var(--verde);
  color: #fff !important;
  font-weight: 900;
}
.market-guide-link {
  text-align: center;
  color: var(--verde) !important;
  font-size: .86rem;
  font-weight: 900;
}
.market-accessories {
  margin-top: 48px;
  padding: 26px;
  border-radius: 8px;
  background: #f8fbf8;
}
.market-accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.market-accessory-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
}
.market-accessory-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}
.market-accessory-card span {
  color: var(--verde);
  font-weight: 900;
}
.market-accessory-card small {
  color: #6b7280;
  line-height: 1.35;
}
.market-accessory-card strong {
  color: var(--verde-med);
}
@media (max-width: 1000px) {
  .market-product-grid,
  .market-trust-strip,
  .market-accessory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .market-product-grid,
  .market-trust-strip,
  .market-accessory-grid {
    grid-template-columns: 1fr;
  }
  .market-product-image {
    height: 210px;
  }
}


/* Real blog images everywhere - 2026-06-04 */
.blog-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #edf5ef;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  max-width: calc(100% - 28px);
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(231,111,0,.94);
  color: #fff;
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}
.blog-featured-image {
  margin: -18px 0 28px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17,24,39,.08);
  background: #edf5ef;
}
.blog-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  height: auto;
  object-fit: cover;
}
@media (max-width: 700px) {
  .blog-featured-image {
    margin-top: -8px;
  }
  .blog-featured-image img {
    aspect-ratio: 16 / 10;
  }
}


/* Storefront homepage - 2026-06-04 */
.store-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: linear-gradient(135deg, #1a3d2b 0%, #2d6a4f 100%);
  color: #fff;
}
.store-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26,61,43,.94), rgba(45,106,79,.78));
  pointer-events: none;
}
.store-hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.store-hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-hero .container {
  position: relative;
  z-index: 2;
}
.store-hero-copy {
  max-width: 760px;
}
.store-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 12px 0;
}
.store-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
}
.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.store-buy-button,
.store-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 900;
}
.store-buy-button {
  background: var(--verde);
  color: #fff !important;
}
.store-secondary-button {
  background: #fff;
  color: var(--verde) !important;
}
.store-live-notice {
  padding: 14px 0;
  background: #12304f;
  color: #fff;
}
.store-live-notice .container {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.store-live-notice span {
  color: rgba(255,255,255,.82);
}
.store-section {
  padding: 52px 0;
  background: #fff;
}
.store-section:nth-of-type(even) {
  background: #f8fbf8;
}
.store-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.store-section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.store-section-head p {
  color: #6b7280;
  max-width: 640px;
}
.store-section-head > a {
  color: var(--verde) !important;
  font-weight: 900;
  white-space: nowrap;
}
.store-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.store-product-card {
  min-width: 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.1);
  box-shadow: 0 10px 24px rgba(17,24,39,.07);
  overflow: hidden;
}
.store-product-image {
  position: relative;
  height: 210px;
  background: #edf5ef;
}
.store-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-product-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--naranja);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}
.store-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}
.store-product-body h3 {
  margin: 0;
  color: var(--verde);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  line-height: 1.25;
  font-size: 1rem;
  font-weight: 900;
}
.store-product-body p {
  margin: 0;
  color: #6b7280;
  font-size: .9rem;
  line-height: 1.4;
}
.store-stars {
  color: #f59e0b;
  font-weight: 900;
  letter-spacing: 0;
}
.store-stars small {
  color: #6b7280;
}
.store-product-body strong {
  color: var(--verde-med);
  font-size: 1.22rem;
}
.store-product-body .store-buy-button {
  width: 100%;
}
.store-intent-strip {
  padding: 44px 0;
  background: var(--verde);
}
.store-intent-strip h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.store-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.store-intent-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--verde) !important;
  font-weight: 900;
  text-align: center;
}
.store-final-amazon {
  padding: 58px 0;
  text-align: center;
  background: #f8fbf8;
}
.store-final-amazon p {
  max-width: 680px;
  margin: 0 auto 20px;
  color: #6b7280;
}
@media (max-width: 1000px) {
  .store-product-grid,
  .store-intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .store-hero {
    padding: 42px 0;
  }
  .store-section-head {
    display: block;
  }
  .store-section-head > a {
    display: inline-flex;
    margin-top: 10px;
  }
  .store-product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .store-product-image {
    height: 142px;
  }
  .store-product-body {
    padding: 10px;
  }
  .store-product-body h3 {
    font-size: .9rem;
  }
  .store-product-body p {
    font-size: .78rem;
  }
  .store-buy-button {
    font-size: .82rem;
    min-height: 40px;
  }
  .store-intent-strip {
    padding: 24px 0;
  }
  .store-intent-strip h2 {
    margin-bottom: 12px;
    font-size: 1.45rem;
    text-align: left;
  }
  .store-intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .store-intent-grid a {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: .82rem;
    line-height: 1.15;
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .store-intent-strip {
    padding: 20px 0;
  }
  .store-intent-strip h2 {
    font-size: 1.28rem;
  }
  .store-intent-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .store-intent-grid::-webkit-scrollbar {
    display: none;
  }
  .store-intent-grid a {
    flex: 0 0 auto;
    min-width: max-content;
    scroll-snap-align: start;
  }
}


/* Product trust refinements */
.store-product-image{position:relative}
.store-image-note{position:absolute;right:10px;bottom:10px;background:rgba(17,24,39,.78);color:#fff;border-radius:999px;padding:5px 9px;font-size:.72rem;font-weight:700}
.store-meta-line{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 12px}
.store-meta-line span{background:#eef7f0;color:#17432b;border-radius:999px;padding:5px 9px;font-size:.78rem;font-weight:800}


/* Blog buying CTA */
.blog-amazon-cta{display:flex;align-items:center;justify-content:space-between;gap:22px;margin:34px 0;padding:24px;border:1px solid rgba(22,101,52,.18);background:#f3faf5;border-radius:14px}
.blog-amazon-cta h2{margin:.25rem 0 .4rem;font-size:1.45rem}
.blog-amazon-cta p{margin:0;color:#4b5563}
@media (max-width:760px){.blog-amazon-cta{align-items:stretch;flex-direction:column}.blog-amazon-cta .btn-amazon{width:100%;text-align:center}}


/* Truthful product cards: no fake product photos */
.store-product-spec{min-height:210px;background:linear-gradient(135deg,#123c2a,#1f6b46);color:#fff;border-radius:12px;padding:22px;display:flex;flex-direction:column;justify-content:center;gap:10px}
.store-product-spec .store-product-brand{text-transform:uppercase;letter-spacing:.08em;font-size:.78rem;color:#b7f7cf;font-weight:800}
.store-product-spec strong{font-size:1.45rem}
.store-product-spec small{color:#e8fff0;font-weight:700}
.store-product-spec em{font-size:.82rem;color:#d6eadc;font-style:normal}
.final-rec-spec{background:linear-gradient(135deg,#123c2a,#1f6b46);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;min-height:260px}
.final-rec-spec strong{font-size:1.8rem}
.final-rec-spec span{font-weight:800}
.final-rec-spec small{opacity:.85}

/* Coherent product placeholders until official Amazon SiteStripe images are added - 2026-06-24 */
.brand-table-spec,
.compact-product-spec,
.market-product-spec,
.market-accessory-spec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  background: linear-gradient(135deg, #123d2a 0%, #1f6f4a 100%);
  color: #fff;
  text-align: left;
}
.brand-table-spec {
  width: 96px;
  min-height: 68px;
  padding: 8px;
}
.brand-table-spec strong,
.compact-product-spec strong,
.market-product-spec strong,
.market-accessory-spec strong {
  color: #fff;
  line-height: 1.15;
}
.brand-table-spec span,
.brand-table-spec small,
.compact-product-spec span,
.compact-product-spec small,
.market-product-spec small {
  color: rgba(255,255,255,.82);
  font-size: .75rem;
}
.compact-product-spec {
  min-height: 190px;
  padding: 18px;
}
.compact-product-spec strong {
  font-size: 1.35rem;
}
.market-product-spec {
  position: absolute;
  inset: 0;
  padding: 18px;
}
.market-product-spec strong {
  max-width: 92%;
  font-size: 1.05rem;
}
.market-accessory-spec {
  min-height: 92px;
  padding: 12px;
}



/* Home product conversion refinements */
.rating {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 22px;
  font-size: .86rem;
}
.rating .stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-weight: 900;
}
.rating .num-reviews {
  color: #6b7280;
  font-weight: 700;
}
.store-price-box {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-height: 46px;
}
.store-price-box .precio-antes {
  color: #9ca3af;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: line-through;
}
.store-price-box .precio-ahora {
  color: var(--verde-med);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.2;
}
.store-price-box .product-price-note {
  margin: 2px 0 0;
  font-size: .72rem;
}
.ver-comparativa {
  display: inline-flex;
  justify-content: center;
  color: var(--verde);
  font-size: .84rem;
  font-weight: 900;
  text-align: center;
  margin-top: 2px;
}
.ver-comparativa:hover {
  color: var(--naranja);
}


/* Camping category expansion */
.camping-hero-cta {
  margin-top: 22px;
}
.camping-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 32px;
}
.camping-use-card {
  background: #f3faf5;
  border: 1px solid rgba(22,101,52,.16);
  border-radius: 8px;
  padding: 18px;
}
.camping-use-card strong {
  display: block;
  color: var(--verde);
  margin-bottom: 6px;
}
.camping-use-card p {
  margin: 0;
  color: #4b5563;
  font-size: .92rem;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .camping-use-grid {
    grid-template-columns: 1fr;
  }
}


/* Home camping equipment hub */
.camping-equipment-hub {
  padding: 52px 0;
  background: #f6f7f3;
}
.camping-equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.camping-equipment-grid a {
  display: block;
  background: #fff;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 8px;
  padding: 18px;
  min-height: 116px;
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
}
.camping-equipment-grid strong {
  display: block;
  color: var(--verde);
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.camping-equipment-grid span {
  color: #6b7280;
  font-size: .9rem;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .camping-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .camping-equipment-hub {
    padding: 32px 0;
  }
  .camping-equipment-grid {
    gap: 9px;
  }
  .camping-equipment-grid a {
    padding: 12px;
    min-height: 92px;
  }
  .camping-equipment-grid strong {
    font-size: .9rem;
    margin-bottom: 5px;
  }
  .camping-equipment-grid span {
    font-size: .76rem;
  }
}


/* Mobile menu ecommerce expansion - 2026-06-24 */
@media (max-width: 900px) {
  body.mobile-nav-open {
    overflow-y: auto;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 40px;
  }

  .mobile-nav {
    top: 58px;
    height: calc(100vh - 58px);
    background: #153f2d;
    padding: 0 0 22px;
  }

  .mobile-menu-inner {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 10px 14px 28px;
  }

  .mobile-nav a {
    min-height: 50px;
    padding: 14px 15px;
    font-size: 1.08rem;
    line-height: 1.28;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
  }

  .mobile-nav a.mobile-primary {
    margin: 6px 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    font-weight: 800;
  }

  .mobile-nav-section {
    display: block;
    margin: 16px 0 6px;
    padding: 11px 2px;
    color: #ffb35c;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(255,179,92,.28);
  }

  .mobile-nav-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-nav-group a {
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(0,0,0,.12);
    font-size: 1rem;
    font-weight: 700;
  }

  .mobile-nav-group a:hover,
  .mobile-nav a.mobile-primary:hover {
    background: rgba(255,255,255,.14);
    color: #ffb35c;
  }
}

@media (max-width: 420px) {
  .mobile-menu-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-nav-group {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}


/* Collapsed mobile menu accordions - 2026-06-24 */
@media (max-width: 900px) {
  .mobile-nav-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin: 10px 0 0;
    padding: 14px 15px;
    color: #ffb35c;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,179,92,.24);
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.24rem;
    letter-spacing: .04em;
    cursor: pointer;
  }

  .mobile-nav-section::after {
    content: "+";
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
  }

  .mobile-nav-section[aria-expanded="true"]::after {
    content: "-";
  }

  .mobile-nav-group[hidden] {
    display: none !important;
  }

  .mobile-nav-section[aria-expanded="true"] + .mobile-nav-group {
    margin-top: 8px;
  }
}


/* Robust mobile menu open state - 2026-06-24 */
@media (max-width: 900px) {
  .site-header,
  .site-header .container {
    position: relative;
    z-index: 100001;
  }

  .nav-toggle {
    position: relative;
    z-index: 100002;
    touch-action: manipulation;
  }

  .mobile-nav.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}


/* Final mobile menu click guard - 2026-06-24 */
@media (max-width: 900px) {
  .nav-toggle {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav:not(.active) {
    display: none !important;
  }

  .mobile-nav.active {
    display: flex !important;
  }
}


/* Stable inline mobile menu fallback - 2026-06-24 */
@media (max-width: 900px) {
  .mobile-nav {
    display: none !important;
  }

  .mobile-nav.active {
    display: flex !important;
  }

  .mobile-nav-group[hidden] {
    display: none !important;
  }
}


/* Mobile menu visible after stable script - 2026-06-24 */
@media (max-width: 900px) {
  .mobile-nav {
    display: none !important;
  }

  .mobile-nav.active {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999 !important;
  }
}


/* Amazon nav search - 2026-06-25 */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.9);
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: var(--transicion);
}

.search-toggle:hover,
.search-toggle:focus-visible {
  background: rgba(255,255,255,.15);
  color: var(--naranja-vivo);
  outline: none;
}

.search-box {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  z-index: 999999;
}

.search-box.active {
  width: 320px;
}

.search-inner {
  display: flex;
  padding: 8px;
  gap: 6px;
  min-width: 320px;
}

.search-inner input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  padding: 8px 10px;
  color: #333;
  min-width: 0;
}

.search-inner button {
  background: #2d6a4f;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.search-inner button:hover {
  background: #1b4332;
}

@media (max-width: 900px) {
  .site-header .container {
    gap: 8px;
  }

  .nav-search {
    margin-left: auto;
  }

  .search-box.active {
    width: min(80vw, 320px);
    right: -8px;
  }

  .search-inner {
    min-width: min(80vw, 320px);
  }
}

/* Amazon-like category hub - 2026-06-29 */
.amazon-like-cats {
  background: #f7f4ef;
}

.amazon-like-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.amazon-like-cat-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(22, 65, 43, .12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 65, 43, .06);
}

.amazon-like-cat-card > span {
  align-self: flex-start;
  padding: 5px 9px;
  background: #fff1df;
  color: #b45309;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.amazon-like-cat-card h3 {
  margin: 0;
  color: #143f2a;
  font-size: 1.08rem;
  line-height: 1.25;
}

.amazon-like-cat-card p {
  flex: 1;
  margin: 0;
  color: #5b6472;
  font-size: .94rem;
  line-height: 1.45;
}

.amazon-like-cat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.amazon-like-cat-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 7px;
  font-weight: 800;
  font-size: .88rem;
  text-align: center;
  text-decoration: none;
}

.amazon-like-cat-actions a:first-child {
  color: #16412b;
  background: #eef6f0;
}

.amazon-like-cat-actions a:last-child {
  color: #fff;
  background: #16412b;
}

@media (max-width: 1100px) {
  .amazon-like-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .amazon-like-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .amazon-like-cat-card {
    min-height: 184px;
    padding: 13px;
  }

  .amazon-like-cat-card h3 {
    font-size: .98rem;
  }

  .amazon-like-cat-card p {
    font-size: .84rem;
  }

  .amazon-like-cat-actions {
    grid-template-columns: 1fr;
  }
}

/* Search intent boost blocks - 2026-06-29 */
.query-intent-boost {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
  gap: 22px;
  margin: 0 0 34px;
  padding: 24px;
  background: #fff8ed;
  border: 1px solid rgba(180, 83, 9, .16);
  border-radius: 8px;
}

.query-intent-boost h2 {
  margin: .25rem 0 .45rem;
  color: #143f2a;
  font-size: 1.6rem;
}

.query-intent-boost p {
  margin: 0;
  color: #5b6472;
  line-height: 1.55;
}

.query-intent-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.query-intent-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #16412b;
  background: #fff;
  border: 1px solid rgba(22, 65, 43, .13);
  border-radius: 7px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.query-intent-links a:hover {
  color: #fff;
  background: #16412b;
}

@media (max-width: 760px) {
  .query-intent-boost {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .query-intent-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .query-intent-links a {
    min-height: 40px;
    font-size: .9rem;
  }
}



/* GSC priority conversion tables and festival badges - 2026-07-04 */
.tabla-comparativa {
  margin: 0 0 28px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}
.tabla-comparativa h2 {
  margin: 0;
  padding: 18px 18px 10px;
  color: var(--azul, #0f2f57);
  font-size: 1.45rem;
}
.tabla-comparativa table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.tabla-comparativa th,
.tabla-comparativa td {
  padding: 13px 16px;
  border-top: 1px solid rgba(17,24,39,.08);
  text-align: left;
}
.tabla-comparativa th {
  background: #f6f9fc;
  color: #0f2f57;
  font-weight: 800;
}
.tabla-comparativa tr:hover td {
  background: #eaf4ff;
}
.tabla-comparativa a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 8px;
  background: #1f7a4d;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.tabla-comparativa a:hover {
  background: #145c39;
}
.store-product-image span {
  max-width: calc(100% - 20px);
}
.store-product-image span.festival-badge {
  background: #16a34a;
  color: #fff;
}
.store-product-image span.offer-flash-badge {
  background: #c1121f;
  color: #fff;
}
@media (max-width: 700px) {
  .tabla-comparativa {
    border: 0;
    box-shadow: none;
  }
  .tabla-comparativa table {
    min-width: 640px;
  }
}


/* Fix para que /para-quien/festival.php no quede vacío tras el hero */
.persona-content-section {
  padding-top: 32px;
}
.persona-content-section .amazon-products-block {
  margin-top: 0;
  margin-bottom: 32px;
}
.persona-content-section .store-section-head {
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .persona-hero {
    padding: 34px 0;
  }
  .persona-hero h1 {
    font-size: clamp(2rem, 13vw, 3.1rem);
    line-height: .98;
  }
  .persona-content-section {
    padding-top: 22px;
  }
}

/* Scroll safety hardening - 2026-07-05
   La home nunca debe quedarse bloqueada aunque el menu movil falle o quede abierto. */
html,
body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto !important;
}

body.mobile-nav-open {
  overflow-y: auto !important;
  position: static !important;
}

@media (max-width: 900px) {
  .mobile-nav {
    max-height: calc(100dvh - 58px);
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .mobile-nav.active {
    pointer-events: auto;
  }
}



.home-buying-guides {
  padding: 52px 0;
  background: #fff;
}
.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-guide-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 8px;
  background: #f8fbf8;
  box-shadow: 0 14px 30px rgba(20,63,42,.08);
}
.home-guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fff4e6;
  font-size: 1.55rem;
}
.home-guide-card h3 {
  margin: 0;
  color: var(--verde);
  font-size: 1.35rem;
}
.home-guide-card p {
  margin: 0;
  color: #5b6675;
  line-height: 1.55;
}
.home-guide-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--verde);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
@media (max-width: 760px) {
  .home-guide-grid {
    grid-template-columns: 1fr;
  }
  .home-guide-card {
    min-height: auto;
  }
}

/* Desktop dropdown contrast fix - 2026-07-14 */
@media (min-width: 901px) {
  .site-header .main-nav .has-dropdown > .dropdown,
  .site-header .main-nav .has-dropdown:hover > .dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 8px;
    background: #ffffff !important;
    color: #16412b !important;
    border: 1px solid rgba(20, 63, 42, .12);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
  }

  .site-header .main-nav .dropdown li,
  .site-header .main-nav .dropdown li a {
    background: transparent !important;
    color: #16412b !important;
  }

  .site-header .main-nav .dropdown li a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
  }

  .site-header .main-nav .dropdown li a:hover,
  .site-header .main-nav .dropdown li a:focus {
    background: #f7f4ef !important;
    color: #0f3322 !important;
  }
}

/* Desktop menu final stability guard - 2026-07-24 */
@media (min-width: 1181px) {
  .site-header .main-nav li.has-dropdown {
    position: relative !important;
  }

  .site-header .main-nav ul.dropdown {
    display: block !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 5000 !important;
    min-width: 250px !important;
    max-width: 340px !important;
    padding: 8px !important;
    margin: 0 !important;
    list-style: none !important;
    background: #ffffff !important;
    color: #16412b !important;
    border: 1px solid rgba(20, 63, 42, .14) !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(4px) !important;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
  }

  .site-header .main-nav li.has-dropdown:hover > ul.dropdown,
  .site-header .main-nav li.has-dropdown:focus-within > ul.dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-header .main-nav ul.dropdown li,
  .site-header .main-nav ul.dropdown li a,
  .site-header .main-nav ul.dropdown a:link,
  .site-header .main-nav ul.dropdown a:visited {
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    color: #16412b !important;
    white-space: nowrap !important;
  }

  .site-header .main-nav ul.dropdown li a {
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
  }

  .site-header .main-nav ul.dropdown li a:hover,
  .site-header .main-nav ul.dropdown li a:focus {
    background: #f7f4ef !important;
    color: #0f3322 !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header .main-nav {
    display: none !important;
  }

  .site-header .nav-toggle {
    display: block !important;
  }

  .site-header .container {
    min-height: 62px;
    width: min(100% - 32px, 1200px);
  }
}

/* Header hardening: avoid broken vertical logo/menu text on desktop */
.site-header,
.site-header * {
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.site-header .logo,
.site-header .logo-text,
.site-header .main-nav a,
.site-header .dropdown a {
  white-space: nowrap !important;
}

.site-header .logo {
  flex: 0 0 auto !important;
  min-width: max-content !important;
  align-items: center !important;
}

.site-header .logo-text {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  line-height: 1 !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

@media (max-width: 1180px) {
  .site-header .main-nav {
    display: none !important;
  }

  .site-header .nav-toggle {
    display: block !important;
  }

  .site-header .logo {
    min-width: 0 !important;
  }

  .site-header .logo-text {
    max-width: calc(100vw - 128px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Final nav stability fix - 2026-07-24 */
@media (min-width: 1181px) {
  .site-header {
    overflow: visible !important;
  }

  .site-header .container,
  .site-header .main-nav,
  .site-header .main-nav > ul,
  .site-header .main-nav li.has-dropdown {
    overflow: visible !important;
  }

  .site-header .main-nav ul.dropdown {
    display: block !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    margin: 0 !important;
    float: none !important;
  }
}

@media (max-width: 1180px) {
  body.mobile-nav-open {
    overflow: hidden !important;
  }

  .mobile-nav {
    display: none !important;
    position: fixed !important;
    top: 62px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: auto !important;
    max-height: calc(100vh - 62px) !important;
    overflow-y: auto !important;
    z-index: 99999 !important;
    background: #153f2d !important;
    padding: 0 0 24px !important;
  }

  .mobile-nav.active {
    display: block !important;
  }
}


/* No-bounce navigation hotfix - 2026-07-24 */
.site-header .main-nav a,
.site-header .main-nav ul.dropdown,
.site-header .main-nav ul.dropdown *,
.mobile-nav,
.mobile-nav *,
.nav-toggle {
  transition: none !important;
  animation: none !important;
}

@media (min-width: 1181px) {
  .site-header .main-nav ul.dropdown {
    transform: none !important;
    top: 100% !important;
  }

  .site-header .main-nav li.has-dropdown:hover > ul.dropdown,
  .site-header .main-nav li.has-dropdown:focus-within > ul.dropdown {
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .mobile-nav,
  .mobile-nav.active {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Mobile readability and conversion lift - 2026-07-24 */
@media (max-width: 768px) {
  html {
    font-size: 17px;
  }

  body {
    font-size: 1rem;
    line-height: 1.65;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  p,
  li,
  td,
  th,
  .article-body,
  .article-body p,
  .content-section p,
  .category-intro p,
  .store-hero p,
  .hero-desc,
  .section-header p,
  .product-desc,
  .store-product-desc,
  .home-guide-card p,
  .faq-a p,
  .amazon-products-legal {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .site-header .logo-text {
    font-size: 1.35rem !important;
  }

  .nav-toggle,
  .mobile-nav a,
  .mobile-nav-section {
    font-size: 1.05rem !important;
  }

  .mobile-nav a,
  .mobile-nav-section {
    min-height: 48px;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .store-hero h1,
  .hero h1,
  .cat-hero h1 {
    line-height: 1.04 !important;
  }

  .section-header h2,
  .store-section h2,
  .article-body h2 {
    line-height: 1.12 !important;
  }

  .product-nombre,
  .store-product-title,
  .product-card h3,
  .store-product-card h3 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  .product-badge,
  .store-product-badge,
  .product-tag,
  .rating-count,
  .rating-num,
  .num-reviews {
    font-size: .92rem !important;
  }

  .stars,
  .product-rating,
  .rating {
    font-size: 1rem !important;
  }

  .precio-actual,
  .store-product-price,
  .precio-ahora,
  .product-price {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
  }

  .btn-amazon,
  .store-buy-button,
  .store-secondary-button,
  .product-cta .btn-amazon,
  .mini-buy-button,
  .btn-detail,
  .store-urgent-cta {
    min-height: 50px !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    padding: 13px 16px !important;
  }

  .tabla-comparativa,
  .comparison-table,
  .table-wrap {
    font-size: 1rem !important;
  }

  .tabla-comparativa td,
  .tabla-comparativa th,
  .comparison-table td,
  .comparison-table th {
    font-size: .98rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 17px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .product-body,
  .store-product-body {
    padding: 18px !important;
  }

  .product-nombre,
  .store-product-title,
  .product-card h3,
  .store-product-card h3 {
    font-size: 1.3rem !important;
  }
}

/* Final responsive menu legibility override - 2026-07-24 */
@media (max-width: 900px) {
  .mobile-nav a,
  .mobile-nav-group a,
  .mobile-nav a.mobile-primary {
    min-height: 52px !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
  }

  .mobile-nav-section {
    min-height: 54px !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .24) !important;
  }

  .mobile-nav-section::after {
    color: #ffffff !important;
    font-size: 22px !important;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus,
  .mobile-nav-group a:hover,
  .mobile-nav-group a:focus,
  .mobile-nav a.mobile-primary:hover,
  .mobile-nav a.mobile-primary:focus,
  .mobile-nav-section:hover,
  .mobile-nav-section:focus {
    color: #ffffff !important;
  }
}


.home-type-filter {
  background: #123f2a;
  padding: 22px 0;
}
.home-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-type-grid a {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: #17452f;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: background-color .18s ease, transform .18s ease, border-color .18s ease;
}
.home-type-grid a:hover,
.home-type-grid a:focus {
  background: #236343;
  border-color: rgba(255,255,255,.42);
  color: #fff;
  transform: translateY(-2px);
}
.home-type-grid span {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.home-type-grid strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 760px) {
  .home-type-filter { padding: 14px 0; }
  .home-type-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .home-type-grid a {
    flex: 0 0 138px;
    min-height: 88px;
    scroll-snap-align: start;
  }
  .home-type-grid strong { font-size: 12px; }
}

/* Mobile conversion first screen - 2026-08-10 */
.mobile-top-picks,
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 62px;
  }

  .store-hero {
    min-height: 0 !important;
    max-height: 200px;
    padding: 18px 0 14px !important;
    overflow: hidden;
  }

  .store-hero-copy {
    max-width: 100%;
  }

  .store-hero .hero-badge {
    margin-bottom: 6px;
    padding: 4px 10px;
    font-size: .68rem;
  }

  .store-hero h1 {
    max-width: 330px;
    margin: 4px 0 8px !important;
    color: #ffffff;
    font-size: clamp(2.05rem, 12vw, 2.75rem) !important;
    line-height: .92 !important;
    letter-spacing: .02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .store-hero p {
    display: none !important;
  }

  .store-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px !important;
  }

  .store-hero-actions .store-buy-button,
  .store-hero-actions .store-secondary-button {
    min-height: 34px !important;
    padding: 8px 6px !important;
    border-radius: 7px;
    font-size: .72rem !important;
    line-height: 1.1 !important;
    white-space: nowrap;
  }

  .home-type-filter {
    padding: 10px 0;
  }

  .filtros-categorias,
  .home-type-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filtros-categorias::-webkit-scrollbar,
  .home-type-grid::-webkit-scrollbar,
  .mobile-cards::-webkit-scrollbar {
    display: none;
  }

  .filtro-item,
  .home-type-grid a {
    min-width: 80px;
    flex: 0 0 86px !important;
    min-height: 68px !important;
    padding: 8px 6px;
    border-radius: 12px;
    background: #17452f;
    color: #ffffff !important;
  }

  .home-type-grid span {
    font-size: 24px;
  }

  .home-type-grid strong {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.1;
  }

  .mobile-top-picks {
    display: block;
    padding: 12px 0 12px 12px;
    background: #1a3a2a;
  }

  .mobile-top-picks-titulo {
    color: #ffffff;
    font-size: 14px !important;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 12px 8px 0;
  }

  .mobile-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 12px 2px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-card {
    min-width: 140px;
    max-width: 140px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.16);
  }

  .mobile-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
  }

  .mobile-card .nombre {
    min-height: 28px;
    max-height: 28px;
    overflow: hidden;
    color: #123f2a;
    font-size: 11px !important;
    font-weight: 900;
    margin: 5px 0 3px;
    line-height: 1.25 !important;
  }

  .mobile-card .precio {
    color: #e47911;
    font-size: 13px !important;
    font-weight: 900;
    line-height: 1.2 !important;
    margin: 0 0 6px;
  }

  .mobile-card .boton {
    display: block;
    background: #2d6a4f;
    color: #ffffff !important;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 11px;
    line-height: 1.15;
    text-decoration: none;
    font-weight: 900;
  }

  .store-live-notice {
    display: none;
  }

  .store-section {
    padding: 24px 0;
  }

  .store-section-head {
    margin-bottom: 12px;
  }

  .store-section-head h2 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .store-section-head p,
  .store-section-head > a {
    display: none;
  }

  .store-grid,
  .store-product-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0;
  }

  .store-card,
  .store-product-card {
    border-radius: 8px;
  }

  .store-card,
  .store-product-card,
  .store-product-body {
    padding: 0 !important;
  }

  .store-card img,
  .store-product-image {
    height: 120px !important;
  }

  .store-product-image img {
    height: 120px !important;
    object-fit: contain !important;
    padding: 8px;
    background: #f3faf5;
  }

  .store-product-image span {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 12px);
    padding: 4px 6px;
    border-radius: 6px;
    font-size: .62rem !important;
    line-height: 1.05;
  }

  .store-product-body {
    gap: 5px;
    padding: 9px !important;
  }

  .store-card .card-title,
  .store-product-body h3 {
    max-height: 2.6em;
    overflow: hidden;
    font-size: 12px !important;
    line-height: 1.3 !important;
    letter-spacing: 0;
  }

  .store-product-body p,
  .store-card .card-specs,
  .store-card .card-meta,
  .store-meta-line,
  .ver-comparativa {
    display: none !important;
  }

  .rating {
    min-height: 16px;
    font-size: .72rem !important;
    line-height: 1.1 !important;
    gap: 3px;
  }

  .rating .num-reviews {
    display: none;
  }

  .store-card .card-price,
  .precio-ahora,
  .store-product-body strong {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .precio-antes {
    font-size: 11px !important;
  }

  .store-card .card-btn,
  .store-product-body .store-buy-button {
    min-height: 34px !important;
    padding: 8px 4px !important;
    border-radius: 7px;
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .store-urgent-cta-wrap {
    margin-top: 14px;
  }

  .store-urgent-cta {
    width: 100%;
    min-height: 40px !important;
    font-size: .86rem !important;
  }

  .floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 12px 16px;
    background: #e47911;
    text-align: center;
    z-index: 999999;
    box-shadow: 0 -8px 22px rgba(0,0,0,.18);
  }

  .floating-cta a {
    color: #ffffff !important;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
  }
}


.review-highlight{display:flex;align-items:center;justify-content:space-between;gap:22px;margin:0 0 28px;padding:24px;border:1px solid rgba(255,140,26,.28);background:#fff7ed;border-radius:14px;box-shadow:0 14px 30px rgba(15,23,42,.06)}
.review-highlight h2{margin:.25rem 0 .45rem;font-size:1.55rem;color:#143f2a}
.review-highlight p{margin:0;color:#4b5563;font-size:1rem;line-height:1.5}.updated-label{display:inline-flex;margin:0 0 16px;padding:7px 12px;border-radius:999px;background:#e9f7ef;color:#143f2a;font-weight:800}
@media (max-width:760px){.review-highlight{flex-direction:column;align-items:stretch;padding:18px}.review-highlight .btn-amazon{width:100%;text-align:center}}
