/* ============================================
   caminorojoji — Play Picks
   Tema: juegos de construcción móvil
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg-1: #fef9c3;
  --c-bg-2: #fefce8;
  --c-ink: #1a1410;
  --c-body: #524740;
  --c-muted: #8a7e76;
  --c-brand: #a16207;
  --c-brand-dark: #783f04;
  --c-accent: #d97706;
  --c-line: #e7dcc7;
  --c-surface: rgba(255, 252, 245, 0.78);
  --c-surface-solid: #fffaf0;
  --shadow-sm: 0 1px 2px rgba(120, 63, 4, 0.06);
  --shadow-md: 0 8px 24px rgba(120, 63, 4, 0.08);
  --shadow-lg: 0 20px 60px rgba(120, 63, 4, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1100px 700px at 12% -10%, #fde68a 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 0%, #fed7aa 0%, transparent 55%),
    linear-gradient(180deg, var(--c-bg-1), var(--c-bg-2));
  background-attachment: fixed;
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: var(--c-body);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .site-logo {
  font-family: 'Lora', Georgia, serif;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; letter-spacing: -0.005em; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

p { margin-bottom: 14px; }
a { color: var(--c-brand); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--c-brand-dark); text-decoration: underline; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand);
  background: rgba(161, 98, 7, 0.1);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
}
.lead { font-size: 1.05rem; color: var(--c-body); max-width: 680px; }

/* ---------- Cookie modal (bottom, fixed) ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: #1a1410;
  color: #f9f3e3;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner .container {
  padding: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 14px; color: #f9f3e3; line-height: 1.5; }
.cookie-banner a { color: #fcd34d; text-decoration: underline; }
.cookie-banner button {
  background: var(--c-brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  font: 700 14px 'Lato', sans-serif;
  transition: background 0.18s;
}
.cookie-banner button:hover { background: var(--c-brand-dark); }

/* ---------- Header / Navbar ---------- */
.navbar {
  padding: 18px 0;
  background: rgba(254, 252, 232, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(231, 220, 199, 0.6);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  color: var(--c-ink);
  font-family: 'Lora', serif;
  font-weight: 700;
}
.site-logo .logo-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--c-brand), var(--c-accent));
  display: inline-grid; place-items: center;
  color: #fff;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.site-logo .logo-text { line-height: 1; }
.site-logo .logo-tag { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-muted); font-family: 'Lato', sans-serif; font-weight: 700; margin-top: 3px; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  background: var(--c-brand);
  border: 1px solid var(--c-brand-dark);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  z-index: 70;
}
.nav-toggle:hover { background: var(--c-brand-dark); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute;
  left: 11px; right: 11px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { top: -9px; }
.nav-toggle span::after { top: 9px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none;
}
.nav-links a { color: var(--c-body); font-weight: 700; font-size: 15px; }
.nav-links a:hover { color: var(--c-brand); text-decoration: none; }
.nav-links a.is-cta {
  background: var(--c-brand);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
}
.nav-links a.is-cta:hover { background: var(--c-brand-dark); color: #fff; }

/* ---------- Hero ---------- */
#hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
#hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-content p { font-size: 1.08rem; color: var(--c-body); }
.hero-cta {
  display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 34px; flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: 'Lora', serif;
  font-size: 1.8rem; color: var(--c-ink); font-weight: 700;
  display: block; line-height: 1;
}
.hero-stats .stat-label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 700;
}

/* Hero illustration: stylized construction site */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 0.95;
  background:
    radial-gradient(circle at 30% 30%, rgba(254, 249, 195, 0.9) 0%, transparent 60%),
    linear-gradient(160deg, #fff7ed 0%, #fef3c7 100%);
  border-radius: 28px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  overflow: hidden;
}
.hero-art svg { width: 100%; height: 100%; display: block; }

/* ---------- Section: Catalog ---------- */
#games { padding-top: 64px; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--c-muted); font-size: 1rem; }

.catalog-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-body);
  cursor: pointer;
  transition: all 0.18s;
}
.chip:hover { border-color: var(--c-brand); color: var(--c-brand); }
.chip.is-active { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

/* ---------- Card ---------- */
.card {
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(161, 98, 7, 0.32); }

.game-card { display: flex; flex-direction: column; }
.game-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.game-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f4ebd6;
}
.game-title-block h3 { margin-bottom: 4px; font-family: 'Lora', serif; }
.game-developer { font-size: 13px; color: var(--c-muted); }

.game-meta {
  display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.genre-badge, .meta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 11px;
  border-radius: 999px;
  text-transform: uppercase;
}
.genre-badge { background: rgba(161, 98, 7, 0.12); color: var(--c-brand); }
.meta-badge { background: rgba(120, 63, 4, 0.07); color: var(--c-brand-dark); }

.game-description { font-size: 14.5px; color: var(--c-body); margin-bottom: 14px; line-height: 1.6; }

.game-pros {
  list-style: none;
  margin-bottom: 14px;
}
.game-pros li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--c-body);
  margin-bottom: 4px;
}
.game-pros li::before {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--c-brand);
  border-bottom: 2px solid var(--c-brand);
  transform: rotate(45deg);
  border-radius: 1px;
}

.game-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.game-screenshots img {
  width: 100%; height: auto;
  border-radius: 8px;
  display: block;
  border: 1px solid var(--c-line);
}

.rating {
  display: inline-flex; gap: 4px; align-items: center;
  font-size: 13px; color: var(--c-muted); margin-bottom: 10px;
}
.rating .stars { color: var(--c-accent); letter-spacing: 1px; }

.btn {
  display: inline-block;
  background: var(--c-brand);
  color: #fff;
  border-radius: 999px;
  padding: 11px 26px;
  border: none;
  cursor: pointer;
  font: 700 15px 'Lato', sans-serif;
  transition: background 0.18s, transform 0.18s;
  text-align: center;
  text-decoration: none;
}
.btn:hover { background: var(--c-brand-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--c-brand); border: 1px solid var(--c-brand); }
.btn--ghost:hover { background: var(--c-brand); color: #fff; }
.btn--block { width: 100%; padding: 13px; }
.game-card .btn { margin-top: auto; }

/* ---------- Construction-spotlight strip ---------- */
.spotlight {
  background:
    linear-gradient(135deg, rgba(161, 98, 7, 0.95), rgba(120, 63, 4, 0.95)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.04) 14px 28px);
  color: #fef3c7;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.spotlight h2 { color: #fff; }
.spotlight p { color: #fef3c7; opacity: 0.92; }
.spotlight .eyebrow { background: rgba(255,255,255,0.15); color: #fde68a; }
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.blueprint-list { list-style: none; margin-top: 18px; }
.blueprint-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-top: 1px dashed rgba(254, 243, 199, 0.25);
}
.blueprint-list li:first-child { border-top: 0; }
.blueprint-list .step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(254, 243, 199, 0.3);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: 'Lora', serif; font-weight: 700; color: #fde68a;
}
.blueprint-list strong { display: block; color: #fff; margin-bottom: 2px; font-family: 'Lora', serif; }
.blueprint-list span { font-size: 14px; color: #fef3c7; opacity: 0.88; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color 0.2s;
}
.feature:hover { border-color: rgba(161, 98, 7, 0.4); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  color: var(--c-brand-dark);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: 'Lora', serif; }
.feature p { font-size: 14.5px; color: var(--c-body); margin: 0; }

/* ---------- Process timeline ---------- */
.timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 28px;
  border-left: 2px solid var(--c-line);
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 14px; height: 14px;
  background: var(--c-brand);
  border: 3px solid var(--c-bg-2);
  border-radius: 50%;
}
.timeline-item .step-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 700; margin-bottom: 4px;
}
.timeline-item h4 { font-family: 'Lora', serif; margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 24px auto 0; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font: 700 1rem 'Lora', serif;
  color: var(--c-ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  color: var(--c-brand);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--c-body);
  font-size: 15px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 6px; left: 18px;
  font-family: 'Lora', serif;
  font-size: 60px;
  color: rgba(161, 98, 7, 0.18);
  line-height: 1;
}
.testimonial p { font-style: italic; color: var(--c-body); margin-bottom: 16px; position: relative; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--c-line); padding-top: 14px;
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-brand), var(--c-accent));
  color: #fff;
  display: grid; place-items: center;
  font: 700 14px 'Lora', serif;
}
.testimonial-author strong { display: block; color: var(--c-ink); font-size: 14px; font-family: 'Lora', serif; }
.testimonial-author span { font-size: 12px; color: var(--c-muted); }

/* ---------- About / Contact strip ---------- */
.about-content { max-width: 820px; }
.about-content p { font-size: 1.02rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.facts-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.facts-card h3 { font-family: 'Lora', serif; margin-bottom: 16px; }
.facts-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; }
.facts-card dt { font-weight: 700; color: var(--c-ink); font-size: 13.5px; }
.facts-card dd { color: var(--c-body); font-size: 14px; }

/* ---------- Subscribe form ---------- */
#subscribe { background: linear-gradient(180deg, transparent, rgba(254, 243, 199, 0.4)); }
.subscribe-card { max-width: 580px; margin: 0 auto; padding: 36px; box-shadow: var(--shadow-md); }
.subscribe-card h2 { text-align: center; }
.form-subtitle { text-align: center; color: var(--c-muted); margin-bottom: 24px; font-size: 14.5px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5d9b9;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  background: #fffdf7;
  color: var(--c-ink);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.16);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--c-body);
  margin-bottom: 18px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--c-brand);
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent label { cursor: pointer; line-height: 1.5; }
.form-consent a { color: var(--c-brand); text-decoration: underline; }
.form-error {
  display: none;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}
.form-error.is-visible { display: block; }
.form-success {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(161, 98, 7, 0.1);
  color: var(--c-brand-dark);
  border: 1px solid rgba(161, 98, 7, 0.2);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  display: none;
}
.form-success.is-visible { display: block; }

/* ---------- Page hero (about/contact) ---------- */
.page-hero {
  padding: 70px 0 30px;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { font-size: 1.1rem; color: var(--c-body); }
.breadcrumbs {
  font-size: 13px; color: var(--c-muted); margin-bottom: 18px;
}
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-brand); }

/* ---------- Legal page ---------- */
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 32px; font-family: 'Lora', serif; }
.legal-content h3 { margin-top: 24px; font-family: 'Lora', serif; }
.legal-content ul { margin: 12px 0 16px 24px; }
.legal-content li { margin-bottom: 6px; }
.legal-meta {
  display: inline-block;
  background: rgba(161, 98, 7, 0.1);
  color: var(--c-brand-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */
footer {
  background: #1a1410;
  color: #c8b89c;
  padding: 56px 0 28px;
  margin-top: 64px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
footer .footer-brand .site-logo { color: #fef3c7; }
footer .footer-brand p { font-size: 14px; color: #c8b89c; margin-top: 14px; max-width: 280px; }
footer h4 { color: #fef3c7; font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Lato', sans-serif; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a { color: #c8b89c; font-size: 14px; }
footer a:hover { color: #fcd34d; text-decoration: none; }
footer .footer-bottom {
  border-top: 1px solid #3a2f24;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a7e76;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  #hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .spotlight { padding: 36px 28px; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  #hero { padding: 60px 0 40px; }
  .hero-stats { gap: 22px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 320px);
    height: 100vh;
    background: #fffaf0;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    padding: 84px 24px 32px;
    box-shadow: -16px 0 40px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    z-index: 60;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--c-line); display: block; font-size: 1rem; }
  .nav-links a.is-cta { border-bottom: 0; margin-top: 14px; text-align: center; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: ''; position: fixed; inset: 0;
    background: rgba(26, 20, 16, 0.5);
    z-index: 55;
  }

  .subscribe-card { padding: 26px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
  .cookie-banner .container { gap: 12px; }
  .catalog-grid { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr; }
  footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}
