/* =============================================
   DESIGN TOKENS — Chombas.com
============================================= */
:root {
  --navy:       #0F1E35;    /* Azul Marino Profundo */
  --navy-mid:   #1A3052;    /* Azul Marino intermedio */
  --navy-soft:  #243F65;    /* Azul Marino claro */
  --cream:      #F5EFE4;    /* Crema/Beige base */
  --cream-dark: #E8DDD0;    /* Crema oscuro */
  --charcoal:   #2E2E2E;    /* Gris Carbón */
  --charcoal-50:#6B6B6B;    /* Gris medio */
  --white:      #FAFAF8;    /* Blanco cálido */
  --gold:       #B9A07A;    /* Oro envejecido — acento */
  --gold-light: #D4BFA0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-soft: 0 4px 40px rgba(15,30,53,0.08);
  --shadow-card: 0 8px 60px rgba(15,30,53,0.12);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =============================================
   UTILITY
============================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* =============================================
   TOPBAR — announcement
============================================= */
.topbar {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}

.topbar span { color: var(--gold-light); }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.logo-text .tagline {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-links > li > a:hover {
  background: var(--cream-dark);
  color: var(--navy);
}

.nav-pill {
  background: var(--navy) !important;
  color: var(--cream) !important;
  border-radius: 20px !important;
  padding: 8px 20px !important;
}

.nav-pill:hover {
  background: var(--navy-mid) !important;
}

.nav-flag {
  display: inline-block;
  margin-right: 4px;
  font-size: 0.9em;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO — SPLIT SCREEN
============================================= */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  position: relative;
}

/* Central divider with logo watermark */
.hero-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-divider-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(185,160,122,0.25);
}

/* ---- CL side ---- */
.hero-cl {
  background: var(--navy);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 72px 80px 60px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: filter 0.4s;
}

.hero-cl::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(185,160,122,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,48,82,0.6) 0%, transparent 70%);
  pointer-events: none;
}

/* Wool texture pattern */
.hero-cl::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,0.015) 4px,
    rgba(255,255,255,0.015) 5px
  );
  pointer-events: none;
}

.hero-cl:hover { filter: brightness(1.06); }

/* ---- AR side ---- */
.hero-ar {
  background: var(--cream);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 80px 60px 80px 72px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: filter 0.4s;
  text-align: right;
}

.hero-ar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 80%, rgba(185,160,122,0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* Piqué texture (grid de puntos) */
.hero-ar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,30,53,0.04) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.hero-ar:hover { filter: brightness(0.97); }

/* Hero content common */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero-cl .hero-eyebrow { color: var(--gold-light); }
.hero-ar .hero-eyebrow { color: var(--navy-soft); }

.hero-ar .hero-eyebrow::before { order: 2; }
.hero-ar .hero-eyebrow::after {
  content: attr(data-text);
  order: 1;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-cl .hero-h1 { color: var(--white); }
.hero-ar .hero-h1 { color: var(--navy); }

.hero-h1 em {
  font-style: italic;
  display: block;
}

.hero-cl .hero-h1 em { color: var(--gold-light); }
.hero-ar .hero-h1 em { color: var(--gold); }

.hero-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
  opacity: 0.85;
  max-width: 360px;
}

.hero-cl .hero-lead { color: var(--cream); }
.hero-ar .hero-lead { color: var(--charcoal); }

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary-light {
  background: var(--cream);
  color: var(--navy);
}
.btn-primary-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,239,228,0.3);
}

.btn-primary-dark {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,30,53,0.25);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,239,228,0.15);
}

.hero-ar .hero-stats {
  border-top-color: rgba(15,30,53,0.12);
  justify-content: flex-end;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.hero-cl .stat-num { color: var(--gold-light); }
.hero-ar .stat-num { color: var(--navy); }

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}

/* =============================================
   SECTION — INTRO BRIDGE
============================================= */
.bridge {
  background: var(--white);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.bridge-inner { max-width: 680px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.bridge h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 20px;
}

.bridge p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--charcoal-50);
  font-weight: 300;
}

/* =============================================
   SECTION — FEATURED CATEGORIES (DUAL)
============================================= */
.categories-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cat-block { padding: 72px 64px; }

.cat-block-cl {
  background: var(--navy);
  color: var(--cream);
}

.cat-block-ar {
  background: var(--cream-dark);
  color: var(--navy);
}

.cat-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cat-block-cl h3 { color: var(--white); }

.cat-flag-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-block-cl .cat-flag-label { color: var(--gold-light); opacity: 0.9; }
.cat-block-ar .cat-flag-label { color: var(--navy-soft); }

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.cat-card {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.cat-card:hover { transform: translateY(-4px); }

.cat-block-cl .cat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,239,228,0.1);
}
.cat-block-cl .cat-card:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cat-block-ar .cat-card {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(15,30,53,0.08);
}
.cat-block-ar .cat-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.cat-card-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
}

.cat-card-name {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
}

.cat-block-cl .cat-card-name { color: var(--white); }
.cat-block-ar .cat-card-name { color: var(--navy); }

.cat-card-desc {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0.65;
}

.cat-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 32px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.25s, opacity 0.25s;
}

.cat-block-cl .cat-cta-link { color: var(--gold-light); }
.cat-block-ar .cat-cta-link { color: var(--navy); }
.cat-cta-link:hover { gap: 14px; opacity: 0.8; }

/* =============================================
   PRODUCT REVIEW BOX (Affiliate Box)
============================================= */
.affiliate-section {
  background: var(--cream);
  padding: 80px 24px;
}

.affiliate-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-header-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.2;
}

.see-all {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-50);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.see-all:hover { color: var(--navy); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-box:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-img-cl {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.product-img-ar {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #D6C9B9 100%);
}

.product-img-neutral {
  background: linear-gradient(135deg, #E8E0D5 0%, #D0C4B4 100%);
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.product-country {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
}

.product-img-ar .product-country {
  background: rgba(15,30,53,0.08);
  color: var(--navy);
  border-color: rgba(15,30,53,0.12);
}

.product-info {
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--charcoal-50);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.score-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--gold);
  font-size: 0.85rem;
}

.score-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
}

.score-count {
  font-size: 0.72rem;
  color: var(--charcoal-50);
}

.price-area {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
}

.price-old {
  font-size: 0.82rem;
  color: var(--charcoal-50);
  text-decoration: line-through;
}

.price-discount {
  background: #E8F0E0;
  color: #3B6B2A;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.06em;
}

/* Affiliate CTA buttons */
.affiliate-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.aff-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.aff-btn-primary { background: var(--navy); color: var(--cream); }
.aff-btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(15,30,53,0.2);
}

.aff-btn-ml { background: #FFE600; color: #333; }
.aff-btn-ml:hover { background: #FFD700; }

.aff-btn-amz { background: #FF9900; color: #fff; }
.aff-btn-amz:hover { background: #E88900; }

.aff-btn-outline {
  background: transparent;
  border: 1px solid var(--cream-dark);
  color: var(--charcoal-50);
}
.aff-btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.aff-disclaimer {
  text-align: center;
  font-size: 0.65rem;
  color: var(--charcoal-50);
  margin-top: 32px;
  font-weight: 300;
}

/* =============================================
   COMPARISON TABLE
============================================= */
.comparison-section {
  background: var(--navy);
  padding: 80px 24px;
  color: var(--cream);
}

.comparison-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-section .section-label { color: var(--gold-light); }
.comparison-section .section-label::before,
.comparison-section .section-label::after { background: var(--gold-light); }

.comparison-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 40px;
}

.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,239,228,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

thead tr { background: rgba(245,239,228,0.06); }

th {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

td {
  padding: 15px 18px;
  border-top: 1px solid rgba(245,239,228,0.06);
  font-weight: 300;
  color: var(--cream);
  vertical-align: middle;
}

tr:hover td { background: rgba(245,239,228,0.04); }

.td-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white) !important;
}

.td-score {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light) !important;
}

.tag-cl {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(15,30,53,0.6);
  border: 1px solid rgba(245,239,228,0.2);
  border-radius: 20px;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.tag-ar {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(185,160,122,0.2);
  border: 1px solid rgba(185,160,122,0.3);
  border-radius: 20px;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.td-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: gap 0.2s;
}
.td-link a:hover { gap: 10px; }

/* =============================================
   EDITORIAL / HOW WE REVIEW
============================================= */
.editorial-section {
  background: var(--cream);
  padding: 80px 24px;
}

.editorial-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.editorial-visual {
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.editorial-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.02) 6px,
    rgba(255,255,255,0.02) 7px
  );
}

.editorial-visual-text {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.editorial-visual-text p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
}

.editorial-visual-text cite {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
  display: block;
  font-style: normal;
}

.editorial-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.editorial-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--charcoal-50);
  font-weight: 300;
  margin-bottom: 16px;
}

.criteria-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.criteria-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.criteria-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.criteria-text span {
  font-size: 0.8rem;
  color: var(--charcoal-50);
  font-weight: 300;
}

/* =============================================
   NEWSLETTER
============================================= */
.newsletter-section {
  background: var(--white);
  padding: 72px 24px;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 10px;
}

.newsletter-inner p {
  font-size: 0.9rem;
  color: var(--charcoal-50);
  font-weight: 300;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  background: var(--white);
  border: none;
  outline: none;
  color: var(--charcoal);
}

.newsletter-input::placeholder { color: var(--charcoal-50); opacity: 0.7; }

.newsletter-btn {
  padding: 14px 24px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}

.newsletter-btn:hover { background: var(--navy-mid); }

.newsletter-legal {
  font-size: 0.68rem;
  color: var(--charcoal-50);
  margin-top: 14px;
  font-weight: 300;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 24px 32px;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,239,228,0.1);
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 500;
}

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

.footer-col ul li a {
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 300;
  opacity: 0.5;
}

.footer-affiliate-note {
  max-width: 1280px;
  margin: 16px auto 0;
  font-size: 0.68rem;
  font-weight: 300;
  opacity: 0.45;
  line-height: 1.7;
  border-top: 1px solid rgba(245,239,228,0.06);
  padding-top: 20px;
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.7s ease both; }

.hero-cl .hero-eyebrow { animation-delay: 0.1s; }
.hero-cl .hero-h1      { animation-delay: 0.2s; }
.hero-cl .hero-lead    { animation-delay: 0.3s; }
.hero-cl .btn-primary  { animation-delay: 0.4s; }
.hero-cl .hero-stats   { animation-delay: 0.5s; }

.hero-ar .hero-eyebrow { animation-delay: 0.2s; }
.hero-ar .hero-h1      { animation-delay: 0.3s; }
.hero-ar .hero-lead    { animation-delay: 0.4s; }
.hero-ar .btn-primary  { animation-delay: 0.5s; }
.hero-ar .hero-stats   { animation-delay: 0.6s; }

/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0; bottom: 0;
    background: var(--cream);
    padding: 32px 24px;
    gap: 4px;
    z-index: 99;
    align-items: flex-start;
    border-top: 1px solid var(--cream-dark);
  }
  .nav-links.open > li > a {
    font-size: 1.1rem;
    padding: 12px 8px;
  }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-divider { display: none; }
  .hero-cl, .hero-ar { padding: 64px 32px; align-items: flex-start; text-align: left; }
  .hero-ar { text-align: left; }
  .hero-ar .hero-stats { justify-content: flex-start; }
  .categories-dual { grid-template-columns: 1fr; }
  .cat-block { padding: 48px 32px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
  .editorial-visual { aspect-ratio: 3/2; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 0.7rem; padding: 8px 16px; }
  .hero-cl, .hero-ar { padding: 48px 24px; }
}
