/* ═══════════════════════════════════════════════════
   DMONDO — Spice Market Premium
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #FFF6ED;
  --bg-alt: #FFF0E0;
  --surface: #FFFFFF;
  --text: #1F2937;
  --muted: #475569;
  --border: #E7E5E4;
  --primary: #C85A24;
  --primaryHover: #AD4B1C;
  --accent: #D4A017;
  --ink: #0F172A;
  --success: #15803D;
  --danger: #B91C1C;

  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  /* Fondo catálogo B2B: mismo degradado que los renders / chip de formato */
  --pcard-pack-gradient: linear-gradient(180deg, #FDF4EB 0%, #FCF2E7 55%, #FAEFE4 100%);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background-color: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { color: var(--ink); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-label-light { color: var(--accent); }

.section-header-centered { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-desc { color: var(--muted); font-size: 1.1rem; }

/* ══════════════════════════
   HEADER & NAV
   ══════════════════════════ */
header {
  background-color: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 102px;
  width: auto;
}
.logo-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-group-name {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.nav-active { color: var(--primary); }

.nav-cta {
  background-color: var(--primary) !important;
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background-color: var(--primaryHover) !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.25rem;
}

/* ══════════════════════════
   BUTTONS
   ══════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

.btn-primary { background-color: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background-color: var(--primaryHover); border-color: var(--primaryHover); }

.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: white; }

.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.35); color: white; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-ink { background-color: var(--ink); color: white; }

/* ══════════════════════════
   HERO
   ══════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(40,25,10,.85) 0%,
    rgba(40,25,10,.60) 42%,
    rgba(40,25,10,.20) 72%,
    rgba(40,25,10,.04) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 7rem 0 5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(212,160,23,.4);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-body h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: #fff;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 0 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: heroFadeUp .7s ease forwards;
}
.hero-anim--1 { animation-delay: .15s; }
.hero-anim--2 { animation-delay: .35s; }
.hero-anim--3 { animation-delay: .55s; }
.hero-anim--4 { animation-delay: .75s; }

.hero-band {
  background: rgba(30,20,10,.88);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 1.25rem 0;
  position: relative;
  z-index: 2;
}

.hero-band-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
}

.hero-bullet-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

/* ══════════════════════════
   EXPLORADOR — COMMAND CENTER
   ══════════════════════════ */
/* Cocinas page hero */
.cocinas-hero {
  padding: 4rem 0 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cocinas-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: 2.4rem;
}
.cocinas-hero-desc {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-explorador--page {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
.section-explorador--page .explorador-shell {
  margin-top: 0;
}

.section-explorador {
  padding: 5rem 0 6rem;
  background-color: var(--surface);
}
.section-explorador .container { max-width: 1280px; }

/* ── Cocinas Showcase (Home) ── */
.section-cocinas-showcase {
  padding: 5rem 0 4rem;
  background: var(--surface);
}

.cocinas-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.cocina-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  min-height: 340px;
  box-shadow: 0 8px 30px rgba(15,23,42,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cocina-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15,23,42,.18);
}

.cocina-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cocina-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cocina-card:hover .cocina-card-img img {
  transform: scale(1.06);
}

.cocina-card-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(15,23,42,.82) 0%, rgba(15,23,42,.35) 50%, rgba(15,23,42,.05) 100%);
}

.cocina-card-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(194,65,12,.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.cocina-card-overlay h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.2;
}

.cocina-card-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
  margin: 0 0 14px;
  line-height: 1.4;
}

.cocina-card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
}
.cocina-card:hover .cocina-card-cta {
  color: #fff;
  letter-spacing: .02em;
}

.cocinas-showcase-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2.5rem;
}

/* INSPIRACIÓN ZIGZAG */
.section-inspo-zigzag {
  padding: 5rem 0 4rem;
  background: var(--bg);
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 3.5rem;
}
.zigzag-row + .zigzag-row {
  margin-top: 4.5rem;
}

.zigzag-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15,23,42,.10);
}
.zigzag-img a {
  display: block;
  line-height: 0;
}
.zigzag-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}
.zigzag-img:hover img {
  transform: scale(1.04);
}

.zigzag-text {
  padding: 8px 0;
}

.zigzag-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.zigzag-badge--pulses { background: rgba(34,139,34,.85); }
.zigzag-badge--grains  { background: rgba(212,160,23,.90); }
.zigzag-badge--specialty { background: rgba(139,69,19,.85); }

.zigzag-text h3 {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 14px;
}

.zigzag-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 18px;
}

.zigzag-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zigzag-highlights li {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}
.zigzag-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.zigzag-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4rem;
}

/* INSPIRACIÓN PAGE */
.inspo-hero {
  background: var(--bg);
  padding: 4rem 0 3rem;
  text-align: center;
}
.inspo-hero-inner { max-width: 640px; margin: 0 auto; }
.inspo-hero h1 { margin: 0 0 1rem; font-size: 2.4rem; }
.inspo-hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-recetas { padding: 3rem 0 5rem; background: var(--surface); }

.recetas-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.recetas-chips {
  display: flex;
  gap: 8px;
}
/* Filtro móvil: custom select (evita el desplegable nativo azul del SO) */
.recetas-select-wrap {
  display: none;
}
.recetas-select { display: none; }

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

.receta-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(15,23,42,.08);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease;
}
.receta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,23,42,.14);
}

.receta-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.receta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.receta-card:hover .receta-card-img img {
  transform: scale(1.05);
}

.receta-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.receta-card-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.receta-card-badge--pulses { background: rgba(34,139,34,.9); }
.receta-card-badge--grains { background: var(--accent); }
.receta-card-badge--specialty { background: rgba(139,69,19,.9); }

.receta-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.receta-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}

.receta-card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.receta-card:hover .receta-card-cta {
  text-decoration: underline;
}

/* RECIPE DETAIL */
.rd-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.rd-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.rd-breadcrumb a:hover { color: var(--primary); }

.rd-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.rd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,12,5,.88) 0%, rgba(20,12,5,.45) 55%, rgba(20,12,5,.2) 100%);
}
.rd-hero-body {
  position: relative;
  z-index: 1;
  padding: 3rem 0 3.5rem;
  max-width: 680px;
}

.rd-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.rd-badge--pulses { background: rgba(34,139,34,.9); }
.rd-badge--grains { background: var(--accent); }
.rd-badge--specialty { background: rgba(139,69,19,.9); }

.rd-hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin: 0 0 12px;
  line-height: 1.15;
}
.rd-hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.rd-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rd-meta-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  padding: 6px 12px;
}

.rd-content { padding: 4rem 0 2rem; }

/* Detalle de receta: más ancho editorial (ingredientes + pasos) */
.rd-content .container {
  max-width: 1280px;
}

.rd-ficha {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rd-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.rd-block:first-child { padding-top: 0; }

.rd-block-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.rd-block-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
  margin-top: 2px;
}

.rd-block-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.rd-block-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 2px 0 0;
}

.rd-block-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  padding-left: 56px;
}

.rd-ingredients {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 56px;
}
.rd-ingredients li {
  display: grid;
  grid-template-columns: minmax(7.5rem, 8.5rem) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 10px 16px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.rd-ing-qty {
  min-width: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  white-space: normal;
}
.rd-ing-name {
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 600;
  line-height: 1.45;
  white-space: normal;
}
.rd-dmondo-tag {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(200, 90, 36, 0.12);
  border: 1px solid rgba(200, 90, 36, 0.25);
  border-radius: 999px;
  padding: 3px 8px;
}
.rd-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.rd-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding-left: 56px;
}
.rd-link:hover { text-decoration: underline; }

.rd-block-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.rd-block-row .rd-block--half {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  min-width: 0;
}
.rd-block-row .rd-block--half:first-child {
  padding-right: 2rem;
}
.rd-block-row .rd-block--half:last-child {
  padding-left: 2rem;
}
.rd-block-row .rd-block-header {
  margin-bottom: 16px;
}
.rd-block-row .rd-ingredients,
.rd-block-row .rd-steps,
.rd-block-row .rd-link {
  padding-left: 0;
}
.rd-block-row .rd-link {
  margin-top: 2px;
}

/* Tarjeta para "Consejos finales" */
.rd-ficha > .rd-block[data-testid="rd-consejos"] {
  margin-top: 2.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.rd-ficha > .rd-block[data-testid="rd-consejos"] .rd-block-header {
  margin-bottom: 14px;
}
.rd-ficha > .rd-block[data-testid="rd-consejos"] .rd-advantages {
  padding-left: 0;
}

.rd-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 56px;
}
.rd-channels li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rd-channels li strong {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 700;
}
.rd-channels li span {
  font-size: 0.82rem;
  color: var(--muted);
}

.rd-steps {
  list-style: none;
  margin: 0;
  padding: 0 0 0 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rd-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  padding: 12px;
}
.rd-step-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.rd-steps p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.65;
}

.rd-advantages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 56px;
}
.rd-advantages li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink);
}
.rd-advantages li svg { flex-shrink: 0; }

.rd-block-cta {
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
}
.rd-block-cta p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.rd-related {
  padding: 4rem 0 5rem;
  background: var(--surface);
}
.rd-related h2 {
  font-size: 1.5rem;
  margin: 0 0 2rem;
  text-align: center;
}

/* PRODUCT CARDS — enhanced (foto de envase: encajar sin recorte agresivo) */
.card-img.pcard-img {
  padding: 14px 16px;
  box-sizing: border-box;
  background: var(--pcard-pack-gradient);
  height: 236px;
  min-height: 236px;
}
.card-img.pcard-img .pcard-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}
.pcard:hover .pcard-img .pcard-product-img {
  transform: scale(1.03);
}

.pcard-formato {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  background: var(--pcard-pack-gradient);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.pcard-formato-wrap {
  display: inline-block;
  margin-bottom: 8px;
}
.pcard-formato-wrap .pcard-formato {
  margin-bottom: 0;
}
.card-img.pcard-img .pcard-eco-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.22));
  z-index: 2;
}

.pcard-name {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.pcard-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pcard-tag {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: normal;
}
.pcard-tag--pulses { background: rgba(34,139,34,.1); color: #228b22; }
.pcard-tag--grains { background: rgba(212,160,23,.12); color: #b8900a; }
.pcard-tag--specialty { background: rgba(139,69,19,.1); color: #8b4513; }

.pcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: auto;
  transition: background .2s;
}
.pcard-cta:hover { background: var(--primaryHover); }
.pcard-cta svg { flex-shrink: 0; }

.cc-prods-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* TRUST BAR */
.catalog-coming-soon {
  max-width: 860px;
  margin: 0 auto 2rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200, 90, 36, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(200, 90, 36, 0.09) 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.catalog-coming-soon svg {
  color: var(--primary);
  margin-bottom: 0.65rem;
}
.catalog-coming-soon h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
}
.catalog-coming-soon p {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--text);
}
.catalog-coming-soon__actions {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-bar {
  padding: 3.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* FAQ ACCORDION */
.faq-list { margin-top: 2rem; }
.faq-accordion {
  border-bottom: 1px solid var(--border);
}
.faq-accordion:last-child { border-bottom: none; }
.faq-accordion summary {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .2s;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-accordion[open] summary::after {
  content: '−';
  color: var(--primary);
}
.faq-accordion summary:hover { color: var(--primary); }
.faq-accordion p {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.explorador-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15,23,42,.07);
  overflow: hidden;
}

/* ── Topbar ── */
.cc-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.cc-search-wrap {
  position: relative;
  flex: 1 1 220px;
  min-width: 180px;
}
.cc-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.cc-search-input {
  width: 100%;
  padding: 9px 12px 9px 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}
.cc-search-input::placeholder { color: var(--muted); }
.cc-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194,65,12,.1);
}
.cc-topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cc-topbar-actions .btn { padding: 9px 18px; font-size: 0.88rem; white-space: nowrap; }
.cc-link-catalog {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: var(--transition);
}
.cc-link-catalog:hover { text-decoration: underline; }
.cc-micro {
  width: 100%;
  text-align: right;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: -4px;
}

/* ── Sidebar + Main layout ── */
.cc-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 420px;
}

/* Sidebar accordion */
.cc-sidebar {
  border-right: 1px solid var(--border);
  background: var(--bg);
  padding: 0;
  overflow-y: auto;
}

.cc-nav-group {
  border-bottom: 1px solid var(--border);
}
.cc-nav-group:last-child { border-bottom: none; }

.cc-nav-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 16px;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  letter-spacing: 0.01em;
}
.cc-nav-header:hover {
  background: rgba(194,65,12,.04);
  color: var(--primary);
}
.cc-nav-header:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.cc-nav-header svg:first-child { flex-shrink: 0; }
.cc-nav-header .cc-nav-label { flex: 1; }
.cc-nav-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--muted);
}
.cc-nav-group.is-open .cc-nav-header {
  background: var(--surface);
  border-left-color: var(--primary);
  color: var(--primary);
}
.cc-nav-group.is-open .cc-nav-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.cc-nav-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .25s ease;
  opacity: 0;
  background: var(--surface);
}
.cc-nav-group.is-open .cc-nav-items {
  max-height: 300px;
  opacity: 1;
}

.cc-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px 10px 28px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  position: relative;
}
.cc-nav-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: var(--transition);
}
.cc-nav-item:hover {
  background: rgba(194,65,12,.04);
  color: var(--primary);
}
.cc-nav-item:hover::before {
  background: var(--primary);
}
.cc-nav-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.cc-nav-item.is-active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(194,65,12,.06);
}
.cc-nav-item.is-active::before {
  background: var(--primary);
  box-shadow: 0 0 0 2px rgba(194,65,12,.2);
}
.cc-nav-item .cc-nav-micro {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: auto;
  flex-shrink: 0;
}
.cc-nav-item.is-active .cc-nav-micro { color: var(--primary); opacity: .7; }

.cc-nav-item.cc-hidden { display: none; }

/* Main content area */
.cc-main {
  padding: 20px 24px;
}

.cc-col-title {
  margin: 0 0 14px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* Products grid — 3 columns now! */
.cc-main .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(194,65,12,.2) transparent;
}
.cc-main .products-grid::-webkit-scrollbar { width: 5px; }
.cc-main .products-grid::-webkit-scrollbar-track { background: transparent; }
.cc-main .products-grid::-webkit-scrollbar-thumb { background: rgba(194,65,12,.2); border-radius: 4px; }
.cc-main .products-grid::-webkit-scrollbar-thumb:hover { background: rgba(194,65,12,.35); }
.products-grid .card {
  border-radius: 12px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.products-grid .card:hover,
.products-grid .card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,.08);
  border-color: rgba(194,65,12,.25);
}
.products-grid .cc-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Products header with clear filter */
.panel-prods-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.panel-prods-header .cc-col-title { margin-bottom: 0; flex: 1; }

.btn-clear-filter {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(194,65,12,.08);
  border: 1px solid rgba(194,65,12,.2);
  border-radius: 999px;
  padding: 3px 10px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-clear-filter:hover { background: rgba(194,65,12,.14); }

/* Applications row */
.cc-apps {
  padding: 18px 0 0;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.apps-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.app-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: .86rem;
  color: var(--text);
  line-height: 1.4;
  padding: 10px 12px;
  background: rgba(194,65,12,.04);
  border: 1px solid rgba(194,65,12,.1);
  border-radius: 10px;
  transition: var(--transition);
}
.app-bullet:hover {
  border-color: rgba(194,65,12,.25);
  box-shadow: var(--shadow-sm);
}
.app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
  margin-top: 0.4rem;
}

@keyframes ccFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.cc-main .products-grid { animation: ccFadeIn .3s ease; }

/* ══════════════════════════
   CARDS (shared)
   ══════════════════════════ */
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(194, 65, 12, 0.07);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: fit-content;
}

/* ══════════════════════════
   B2B CAPABILITIES
   ══════════════════════════ */
.section-b2b { padding: 6rem 0; background: var(--bg); }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ══════════════════════════
   CONTACTO — Canales directos
   ══════════════════════════ */
.contact-page-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contact-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-side__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.contact-side__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin-bottom: 2.25rem;
  max-width: 56ch;
}
.contact-channels-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}
.contact-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-channel__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 90, 36, 0.12);
  border: 1px solid rgba(200, 90, 36, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.contact-channel__icon svg {
  display: block;
}
.contact-channel__body {
  min-width: 0;
  padding-top: 0.1rem;
}
.contact-channel__label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.contact-channel__value {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.contact-channel__link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.contact-channel__link:hover {
  color: var(--primaryHover);
}
.contact-channel__tel {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-channel__tel:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.contact-channel__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
  line-height: 1.5;
}
.contact-channel__legal {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.contact-form-panel {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-panel__title {
  margin-bottom: 1.5rem;
}
.contact-form-error {
  background: #FEE2E2;
  color: var(--danger);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-form-submit {
  width: 100%;
}
.contact-form-privacy {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}
.contact-form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}
.contact-form-success {
  text-align: center;
  padding: 2rem 0;
  outline: none;
}
.contact-form-success__icon {
  margin: 0 auto 1rem;
}
.contact-form-success__title {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Honeypot anti-spam (formulario contacto) */
.contact-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.split-text h2 { margin-top: 0.25rem; }
.split-text > p { margin-bottom: 2rem; }

.b2b-list { display: flex; flex-direction: column; gap: 1.25rem; }
.b2b-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.b2b-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(194, 65, 12, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b2b-list li div { display: flex; flex-direction: column; gap: 0.15rem; }
.b2b-list li strong { font-size: 0.95rem; }
.b2b-list li .text-muted { font-size: 0.88rem; }

.split-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.capability-card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.capability-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.capability-icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.capability-card h4 { margin-bottom: 0.35rem; }
.capability-card .text-muted { font-size: 0.9rem; }

/* ══════════════════════════
   QUALITY (INK BLOCK)
   ══════════════════════════ */
.section-quality {
  padding: 6rem 0;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}
.section-quality::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-quality h2 { color: white; }
.section-quality p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.quality-inner { text-align: center; }
.quality-text { max-width: 640px; margin: 0 auto 3rem; }

.cert-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cert-card {
  width: 140px;
  padding: 1.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.cert-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}
.cert-card strong {
  display: block;
  margin-top: 0.2rem;
  color: white;
  font-size: 0.95rem;
  line-height: 1.2;
}
.cert-card span {
  display: block;
  min-height: 1.1rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: rgba(255,255,255,0.72);
}

/* ══════════════════════════
   INSPIRATION / CAROUSEL
   ══════════════════════════ */
.section-inspiration { padding: 6rem 0; background: var(--surface); }

.inspiration-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.inspiration-header h2 { margin-bottom: 0.25rem; }

.carousel-container { position: relative; }

.carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-track { background: transparent; }
.carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.carousel::-webkit-scrollbar-thumb:hover { background: var(--muted); }

.carousel .card { min-width: 280px; max-width: 320px; scroll-snap-align: start; flex-shrink: 0; }

/* ══════════════════════════
   CTA FINAL
   ══════════════════════════ */
/* Filter chips */
.filter-chips {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.chip {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.chip.active { background: var(--primary); color: white; border-color: var(--primary); }

/* CTA */
.section-cta { padding: 5rem 0 6rem; background: var(--bg); }

.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box > p { margin-bottom: 2rem; }

.cta-quick-form {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: left;
}

.cta-alt-link {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.cta-alt-link a { color: var(--primary); font-weight: 600; }
.cta-alt-link a:hover { text-decoration: underline; }

.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
footer {
  background-color: var(--ink);
  color: rgba(255,255,255,0.65);
  position: relative;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 0.8fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
  align-items: start;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
}

.footer-logo { margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 60px; width: auto; filter: brightness(1.15); }
.footer-logo-group {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  line-height: 1;
}
.footer-desc { font-size: 0.88rem; max-width: 280px; line-height: 1.55; color: rgba(255,255,255,0.5); }

.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
}
.footer-badge svg { opacity: 0.7; }

.footer-col h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
  font-size: 0.88rem;
}
.footer-col ul li a:hover { color: white; padding-left: 3px; }

.footer-col--contact { }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item svg { flex-shrink: 0; opacity: 0.5; }
.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}
.footer-contact-item a:hover { color: white; }

.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  background: var(--primary);
  border-radius: 8px;
  transition: var(--transition);
}
.footer-cta:hover { background: var(--primaryHover); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-brand { font-weight: 600; letter-spacing: 0.02em; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-bottom a:hover { color: white; }

/* ══════════════════════════
   FORMS
   ══════════════════════════ */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--surface);
  transition: var(--transition);
  color: var(--ink);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

select.form-control,
.recetas-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  position: relative;
  user-select: none;
}
.custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .2s ease;
}
.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select-trigger:hover {
  border-color: rgba(194,65,12,.35);
}
.custom-select.is-open .custom-select-trigger {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}
.custom-select-trigger.is-placeholder {
  color: var(--muted);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15,23,42,.12);
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.custom-select.is-open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 10px 16px;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s, color .12s;
}
.custom-select-option:hover {
  background: var(--bg);
  color: var(--primary);
}
.custom-select-option.is-selected {
  background: rgba(200,90,36,.08);
  color: var(--primary);
  font-weight: 600;
}
.custom-select-option:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.custom-select-option:last-child { border-radius: 0 0 var(--radius) var(--radius); }

/* ══════════════════════════
   LEGAL PAGES
   ══════════════════════════ */
.legal-hero {
  background: var(--ink);
  color: var(--surface);
  padding: 5rem 0 3rem;
  text-align: center;
}
.legal-hero h1 {
  color: var(--surface);
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.legal-hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
}
.legal-content {
  padding: 3rem 0 5rem;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text);
}
.legal-container h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--ink);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}
.legal-container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}
.legal-container p {
  margin-bottom: 1rem;
}
.legal-container ul {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}
.legal-container ul li {
  margin-bottom: 0.4rem;
}
.legal-container a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  text-align: left;
}
.legal-table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--ink);
}
.legal-updated {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ══════════════════════════
   APPLICATIONS SECTION
   ══════════════════════════ */
.section-applications {
  padding: 5rem 0;
  background: var(--surface);
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  border-color: var(--primary);
}
.app-card-icon {
  margin-bottom: 1rem;
}
.app-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.app-card .text-muted {
  font-size: 0.85rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .apps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════
   CATALOG PAGE SPECIFIC
   ══════════════════════════ */
.filters-sidebar {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* ══════════════════════════
   MODAL
   ══════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-content {
  background: var(--surface);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

/* ══════════════════════════
   INNER PAGES — section defaults
   ══════════════════════════ */
section {
  padding: 5rem 0;
}


.capabilities-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 1rem; }
.capabilities-cards { display: flex; flex-direction: column; gap: 1rem; }
.icon-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bg-ink { background-color: var(--ink); color: var(--surface); }
.bg-ink h2, .bg-ink h3 { color: var(--surface); }

/* Hero calidad: NO usar .hero (evita min-height 92vh/75vh en móvil y solapes con el header) */
.quality-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
  min-height: 320px;
  color: var(--surface);
}
.quality-page-hero h1 {
  color: var(--surface);
}
.quality-page-hero-inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.quality-page-lead {
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 1rem auto 0;
}
.quality-content-section {
  position: relative;
  z-index: 0;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.quality-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  overflow: visible;
}
.quality-col {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  overflow: visible;
}
.quality-col--standards {
  padding-bottom: 3rem;
}
.quality-col--docs {
  background: #fff;
}
/* Cabecera de tarjeta: sticky dentro de .quality-col para que no “se deslice” al hacer scroll */
.quality-card-head-sticky {
  display: block;
  position: relative;
  top: auto;
  z-index: 1;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.quality-card-head-sticky .section-label {
  margin-bottom: 0.45rem;
}
.quality-card-head-sticky h2,
.quality-card-head-sticky h3 {
  margin-bottom: 0;
}
.quality-intro {
  margin-bottom: 1.5rem;
}
.quality-capability-note {
  font-size: 0.9rem;
}
.quality-cert-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.9rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.quality-cert-card {
  width: 96px;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.quality-cert-card img {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.quality-cert-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
}
.quality-subtitle {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.quality-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.quality-point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.quality-point-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(200, 90, 36, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.quality-point strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.quality-doc-title {
  margin-bottom: 0.6rem;
}
.quality-doc-intro {
  margin-bottom: 0;
}
.quality-doc-list {
  list-style: disc;
  margin-left: 1.5rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 2;
}
.quality-doc-cta {
  width: 100%;
}

@media (max-width: 1100px) {
  .quality-main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/*
  Calidad (móvil): los h1/h2 globales usan clamp con vw; al ocultarse la barra del navegador
  el viewport cambia y el texto puede “saltar”. Aquí fijamos tamaños en rem solo en esta página.
*/
@media (max-width: 768px) {
  .quality-page-hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .quality-page-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 100%;
  }
  .quality-card-head-sticky h2 {
    font-size: 1.45rem;
    line-height: 1.25;
  }
  .quality-doc-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .quality-subtitle {
    font-size: 0.95rem;
  }
  .quality-intro {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.cert-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ══════════════════════════
   UTILITIES & ANIMATIONS
   ══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1024px) {
  .split-layout { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-col--contact { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .cocinas-showcase { grid-template-columns: 1fr; gap: 16px; }
  .cocina-card { min-height: 240px; }
  .zigzag-row { grid-template-columns: 1fr; gap: 24px; margin-top: 2.5rem; }
  .zigzag-row + .zigzag-row { margin-top: 3rem; }
  .zigzag-row--img-right .zigzag-img { order: -1; }
  .zigzag-text h3 { font-size: 1.3rem; }
  .zigzag-footer { flex-direction: column; align-items: center; }
  .cc-body { grid-template-columns: 1fr; }
  .cc-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    overflow-x: auto;
  }
  .cc-nav-group { border-bottom: none; flex: 1; min-width: 140px; position: relative; }
  .cc-nav-header { padding: 12px; font-size: 0.85rem; border-left: none; border-bottom: 3px solid transparent; }
  .cc-nav-group.is-open .cc-nav-header { border-left-color: transparent; border-bottom-color: var(--primary); }
  .cc-nav-items { position: absolute; z-index: 10; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-lg); width: 200px; }
  .cc-nav-group.is-open .cc-nav-items { max-height: 300px; opacity: 1; }
  .cc-main .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apps-bullets { grid-template-columns: 1fr; }
  .recetas-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-hero h1 { font-size: 2rem; }
  .rd-block-row { grid-template-columns: 1fr; }
  .rd-block-row .rd-block--half:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); }
  .rd-block-row .rd-block--half:last-child { padding-left: 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 0.75rem 0; }
  .nav-cta {
    text-align: center;
    margin-top: 0.75rem;
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    box-sizing: border-box;
  }
  .mobile-menu-btn { display: block; }

  .hero { min-height: 75vh; }
  .quality-page-hero {
    min-height: 260px;
    padding: 3rem 0;
  }
  .hero-body { padding: 4rem 0 3rem; }
  .hero-body h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  .hero-band-inner { gap: 1.25rem; }
  .hero-bullet-sep { display: none; }

  .cc-topbar { flex-direction: column; align-items: stretch; padding: 1rem; gap: 1rem; }
  .cc-search-wrap { flex: 0 0 auto; width: 100%; min-width: 0; }
  .cc-topbar-actions { justify-content: center; flex-wrap: wrap; }
  .cc-micro { text-align: center; margin-top: 0; }
  .section-explorador--page .explorador-shell { max-width: 100%; min-width: 0; overflow-x: hidden; }
  .section-explorador--page .explorador-shell .cc-topbar { min-width: 0; box-sizing: border-box; }
  .section-explorador--page .explorador-shell .cc-search-wrap { min-width: 0; max-width: 100%; }
  .section-explorador--page .explorador-shell .cc-search-input { max-width: 100%; box-sizing: border-box; }
  .section-explorador--page .explorador-shell .cc-topbar-actions .btn { width: 100%; max-width: 100%; box-sizing: border-box; }
  .cc-sidebar { flex-direction: column; }
  .cc-nav-group { min-width: unset; }
  .cc-nav-items { position: static; width: auto; border: none; border-radius: 0; box-shadow: none; }
  .cc-main .products-grid { grid-template-columns: 1fr; }

  .split-layout, .catalog-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .inspiration-header { flex-direction: column; align-items: flex-start; }

  .inspo-hero h1 { font-size: 1.8rem; }
  .recetas-chips { display: none; }
  .recetas-select-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .recetas-select-wrap .custom-select-trigger {
    transition: var(--transition);
  }
  .recetas-grid { grid-template-columns: 1fr; }

  .trust-items { flex-wrap: wrap; gap: 1.5rem; }
  .trust-sep { display: none; }
  .trust-item { flex: 1 1 40%; }

  .rd-hero { min-height: 280px; }
  .rd-hero h1 { font-size: 1.7rem; }
  .rd-hero-body { padding: 2rem 0 2.5rem; }
  .rd-block-text, .rd-ingredients, .rd-channels, .rd-advantages, .rd-link { padding-left: 0; }
  .rd-steps { padding-left: 0; }
  .rd-ingredients li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .rd-ing-qty {
    white-space: normal;
  }
  .rd-ing-name {
    white-space: normal;
  }
  .rd-block-cta { flex-direction: column; text-align: center; }
  .rd-related .recetas-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  .cert-cards { gap: 0.75rem; }
  .cert-card { width: 110px; padding: 1.25rem 0.75rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}