/* ==============================
   CHOCOLATE DE DUBÁI — Design v2
   Estética: lujo árabe oscuro + oro
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta dorada oscura */
  --bg:        #0c0806;
  --bg-2:      #130d09;
  --bg-3:      #1a1008;
  --card:      #1e1209;
  --card-2:    #261508;
  --text:      #f5ead8;
  --muted:     #a08870;
  --subtle:    #5a3e2a;
  --gold:      #c9922a;
  --gold-light:#e8c06a;
  --gold-pale: #f5dfad;
  --green:     #4a7c59;
  --green-light:#6fb88a;
  --border:    rgba(201,146,42,.18);
  --border-2:  rgba(201,146,42,.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.4);
  --shadow:    0 8px 40px rgba(0,0,0,.6);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.8);
  --radius:    20px;
  --radius-sm: 12px;
  --max:       1200px;

  /* Tipografía */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--gold); color: #000;
  padding: 10px 14px; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 8, 6, .88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 72px; gap: 24px;
}

/* Logo */
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.brand-emblem {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #7a4f15 100%);
  display: grid; place-items: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(201,146,42,.4);
}
.brand strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-pale); letter-spacing: .01em; }
.brand small   { display: block; font-size: .72rem; color: var(--muted); margin-top: -2px; }

/* Nav */
.main-nav { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  padding: 7px 14px; border-radius: 999px;
  font-size: .88rem; font-weight: 500; color: var(--muted);
  transition: .2s;
}
.main-nav a:hover { color: var(--gold-light); background: rgba(201,146,42,.1); }

.menu-toggle {
  display: none; border: 1px solid var(--border);
  background: var(--card); border-radius: 999px;
  padding: 9px 14px; font-weight: 600; color: var(--gold);
  cursor: pointer;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 26px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent; cursor: pointer;
  transition: .25s ease; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a0700f 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,146,42,.4);
}
.btn.primary:hover { box-shadow: 0 8px 30px rgba(201,146,42,.55); }

.btn.secondary {
  background: transparent; color: var(--gold-light);
  border-color: rgba(201,146,42,.45);
}
.btn.secondary:hover { background: rgba(201,146,42,.1); border-color: var(--gold); }

.btn.product {
  background: var(--green);
  color: #fff; width: 100%; margin-top: auto;
  box-shadow: 0 4px 16px rgba(74,124,89,.35);
}
.btn.product:hover { background: var(--green-light); box-shadow: 0 6px 24px rgba(74,124,89,.5); }

.btn.small { padding: 9px 16px; font-size: .85rem; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201,146,42,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(74,124,89,.08) 0%, transparent 50%),
    var(--bg);
}

/* Decoración de fondo */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9922a' fill-opacity='0.04'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; height: 1px; width: 28px;
  background: var(--gold); opacity: .5;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05; letter-spacing: -.03em;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; color: var(--gold-light);
}

.lead {
  font-size: 1.08rem; color: var(--muted);
  max-width: 560px; line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.affiliate-note { font-size: .8rem; color: var(--subtle); }

.subnav-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px;
}
.subnav-pills a {
  background: rgba(201,146,42,.1); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
  font-weight: 600; font-size: .82rem; color: var(--gold-light);
  transition: .2s;
}
.subnav-pills a:hover { background: rgba(201,146,42,.2); }

/* Hero imagen */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,146,42,.15);
}
.hero-img-wrap img {
  width: 100%; height: auto;
  aspect-ratio: 4/3; object-fit: cover;
  display: block;
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,8,6,.5) 0%, transparent 40%);
  pointer-events: none;
}

/* Floating badge en hero */
.hero-badge {
  position: absolute; bottom: -18px; left: 28px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-badge-icon { font-size: 28px; }
.hero-badge strong { display: block; font-size: .95rem; color: var(--gold-light); }
.hero-badge span { font-size: .78rem; color: var(--muted); }

/* ===========================
   TRUST STRIP
   =========================== */
.trust-strip {
  padding: 48px 0; margin-top: 32px;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,146,42,.1);
  border: 1px solid var(--border);
  border-radius: 12px; font-size: 20px;
  display: grid; place-items: center;
}
.trust-item strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 3px; }
.trust-item span { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ===========================
   SECCIONES GENERALES
   =========================== */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-2); }
.section.dark { background: var(--bg-3); }

.section-header {
  text-align: center;
  max-width: 700px; margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--gold-light); }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* Subtítulo de sección */
.section-heading { max-width: 820px; margin-bottom: 40px; }
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.1; margin-bottom: 12px;
}
.section-heading p { color: var(--muted); }

/* ===========================
   PRODUCT CARDS — TIENDA
   =========================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-grid-shop { grid-template-columns: repeat(3, 1fr); }

.product-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: .3s ease;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  border-color: rgba(201,146,42,.35);
  box-shadow: 0 16px 50px rgba(0,0,0,.7), 0 0 30px rgba(201,146,42,.12);
  transform: translateY(-4px);
}

.card-figure {
  position: relative; margin: 0; overflow: hidden;
}
.card-figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.product-card:hover .card-figure img { transform: scale(1.04); }

/* Overlay en imagen */
.card-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(12,8,6,.8) 100%);
}

.card-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; flex: 1; gap: 12px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem; line-height: 1.3;
  color: var(--text); font-weight: 700;
}
.product-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.product-card ul {
  padding-left: 18px; margin: 0; color: var(--muted); font-size: .82rem;
}
.product-card ul li { margin-bottom: 4px; }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: #0c0806;
  border-radius: 999px; padding: 4px 12px;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.badge.new { background: var(--green-light); color: #0c0806; }

/* Rating stars */
.card-stars { display: flex; gap: 3px; align-items: center; }
.card-stars .stars { color: var(--gold); font-size: .9rem; letter-spacing: -1px; }
.card-stars span { font-size: .78rem; color: var(--muted); margin-left: 4px; }

/* ===========================
   GALERÍA
   =========================== */
.photo-grid { display: grid; gap: 20px; }
.photo-grid-3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid-2 { grid-template-columns: repeat(2, 1fr); }

.photo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); margin: 0;
  box-shadow: var(--shadow);
  background: var(--card);
  border: 1px solid var(--border-2);
  transition: .3s;
}
.photo-card:hover { border-color: rgba(201,146,42,.3); transform: scale(1.01); }
.photo-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo-card:hover img { transform: scale(1.06); }
.photo-card figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(12,8,6,.85));
  color: var(--gold-pale); font-size: .85rem; font-weight: 500;
}

/* ===========================
   COMPARATIVA TABLE
   =========================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; min-width: 700px; }
th, td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--border-2); vertical-align: top; font-size: .92rem; }
th { background: rgba(201,146,42,.08); color: var(--gold-light); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
tr:last-child td { border-bottom: 0; }
td { color: var(--text); }
td:first-child { color: var(--gold-pale); font-weight: 600; }
tr:hover td { background: rgba(201,146,42,.04); }

/* ===========================
   GUÍA DE COMPRA
   =========================== */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }

.content-card {
  background: var(--card); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.content-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -.04em; margin-bottom: 24px;
}
.content-card.warning {
  background: linear-gradient(135deg, rgba(201,146,42,.1) 0%, rgba(201,146,42,.05) 100%);
  border-color: rgba(201,146,42,.3);
}
.content-card.warning h3 { color: var(--gold-light); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 12px; }
.content-card.warning p { color: var(--muted); line-height: 1.7; }

.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-list div {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; background: rgba(255,255,255,.03);
  display: flex; flex-direction: column; gap: 5px;
}
.check-list strong { color: var(--gold-pale); font-size: .92rem; }
.check-list span { color: var(--muted); font-size: .85rem; }

.mini-cta {
  margin-top: 24px; padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(201,146,42,.07);
  border: 1px solid var(--border);
}

/* ===========================
   INFO GRID (Historia, Cacao…)
   =========================== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.info-card {
  background: var(--card); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: .25s;
}
.info-card:hover { border-color: rgba(201,146,42,.3); }
.info-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light); font-size: 1.18rem;
  margin-bottom: 12px;
}
.info-card p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ===========================
   RECETAS GRID
   =========================== */
.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.recipe-card {
  background: var(--card); border: 1px solid var(--border-2);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: .25s;
}
.recipe-card:hover { border-color: rgba(201,146,42,.3); transform: translateY(-3px); }
.recipe-card h3 { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.3; color: var(--text); }
.recipe-card p { color: var(--muted); font-size: .85rem; }
.recipe-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.recipe-meta span {
  background: rgba(201,146,42,.12); color: var(--gold-light);
  border-radius: 999px; padding: 4px 10px;
  font-size: .72rem; font-weight: 700;
}
.recipe-card ul, .recipe-card ol { padding-left: 20px; color: var(--muted); margin: 0; }
.recipe-card li { margin-bottom: 4px; font-size: .85rem; }

/* ===========================
   TIMELINE (Historia)
   =========================== */
.timeline { display: grid; gap: 16px; }
.timeline-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 20px;
  background: var(--card); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); padding: 20px;
}
.timeline-item strong { color: var(--gold); }
.timeline-item p { margin: 0; color: var(--muted); font-size: .9rem; }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar { padding: 64px 0; background: var(--bg-3); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid var(--border-2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; color: var(--gold-light);
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #080504; color: var(--text);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border-2);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-pale); }
.footer-brand p { color: var(--muted); margin-top: 12px; font-size: .88rem; line-height: 1.7; max-width: 340px; }
.footer-col h4 { color: var(--gold-pale); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-col nav { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .88rem; transition: .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border-2);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--subtle); font-size: .78rem;
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; max-width: 900px; margin: auto;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .88rem; }
.cookie-banner div { display: flex; gap: 10px; flex-shrink: 0; }

/* ===========================
   MISC: Toc, note-box, pills
   =========================== */
.toc-box {
  background: rgba(201,146,42,.06); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px; margin: 24px 0;
}
.toc-box strong { display: block; margin-bottom: 10px; color: var(--gold-pale); }
.toc-box a { display: inline-flex; margin: 4px 8px 4px 0; color: var(--gold-light); font-weight: 600; font-size: .88rem; }

.note-box {
  background: rgba(201,146,42,.07); border: 1px solid rgba(201,146,42,.25);
  border-radius: var(--radius-sm); padding: 20px; color: var(--muted); font-size: .9rem;
}

.source-list { font-size: .88rem; color: var(--muted); }
.article-links { padding-left: 20px; margin: 0; }
.article-links li { margin-bottom: 10px; }
.article-links a { font-weight: 700; color: var(--gold-light); }

.steps { margin: 0 0 24px; padding-left: 22px; color: var(--muted); }
.steps li { margin-bottom: 8px; }

.pill-cloud { display: flex; gap: 10px; flex-wrap: wrap; }
.pill-link {
  display: inline-flex; text-decoration: none;
  background: rgba(201,146,42,.1); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 16px;
  font-weight: 600; color: var(--gold-light); font-size: .88rem;
}

.ingredient-list, .recipe-steps { padding-left: 22px; color: var(--muted); margin: 0; }
.ingredient-list li, .recipe-steps li { margin-bottom: 8px; }

.recipe-photo-wrap { margin: 0; }
.recipe-photo { width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; display: block; }

.recipe-meta.big { margin: 18px 0 24px; }

.legal-page { padding: 64px 0 88px; max-width: 860px; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 36px; }
.legal-page h2 { margin-top: 36px; color: var(--gold-light); font-family: var(--font-display); }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.75; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .product-grid-shop { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-grid, .product-grid, .content-grid, .info-grid, .recipe-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-badge { left: 16px; bottom: -22px; }
  .check-list { grid-template-columns: 1fr; }
  .photo-grid-3, .photo-grid-2 { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none; position: absolute;
    left: 16px; right: 16px; top: 72px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px;
    box-shadow: var(--shadow); flex-direction: column; align-items: flex-start;
  }
  .main-nav.open, .main-nav.visible { display: flex; }
  .menu-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner div { width: 100%; }
  .cookie-banner .btn { flex: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 1fr; }
  .pill-link { width: 100%; justify-content: center; text-align: center; }
  .subnav-pills a { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 640px) {
  .product-grid-shop { grid-template-columns: 1fr; }
  .photo-grid-3, .photo-grid-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-2); }
  .stat-item:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
  .product-card:hover { transform: none; }
}
