/* =========================================================
   Pingüinitos — Landing
   ========================================================= */

/* -------- Tokens -------- */
:root {
  /* Paleta principal */
  --c-navy-900: #142a5e;        /* azul marino fondo hero */
  --c-navy-800: #1a346e;
  --c-navy-700: #243f80;        /* botón principal */
  --c-navy-600: #2d4f9a;
  --c-cream:    #fbf7ec;        /* fondo: blanco con un toquesito crema */
  --c-cream-soft: #faf3e2;
  --c-gold:     #c8a25a;        /* acento dorado del script */
  --c-gold-soft:#d8b876;
  --c-white:    #ffffff;
  --c-text:     #1d2a4a;
  --c-text-soft:#5a6580;

  /* Tipografía */
  --ff-script:  "Allura", cursive;
  --ff-display: "Archivo Black", "Impact", "Arial Black", sans-serif;
  --ff-sans:    "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Espaciado / radios */
  --radius-pill: 999px;
  --shadow-btn:  0 8px 22px rgba(8, 18, 50, 0.35);
  --shadow-img:  0 30px 60px rgba(0, 0, 0, 0.35);

  /* Contenedor */
  --container-max: 1280px;
  --container-pad: 24px;
}

/* -------- Reset suave -------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: relative;
  z-index: 5;
  background: var(--c-navy-900);
  color: var(--c-white);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  position: relative;
  display: block;
  width: 220px;
  height: 84px;
}
.brand-logo {
  position: absolute;
  top: -14px;
  left: 0;
  height: 168px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(20, 42, 94, 0.18));
  pointer-events: none;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 42px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--c-white);
  padding: 8px 4px;
  position: relative;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--c-gold-soft); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-white);
}
.header-actions .divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.12); }
.icon-btn svg { width: 24px; height: 24px; }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--c-cream);
  color: var(--c-navy-900);
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 40px;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 720px;
}

/* --- Copy --- */
.hero-eyebrow {
  font-family: var(--ff-script);
  color: var(--c-gold);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  margin: 0 0 6px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 400; /* Archivo Black ya es un peso black; el font-weight se ignora */
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.3px;
  margin: 0 0 22px;
  color: var(--c-navy-900);
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text);
  margin: 0 0 30px;
  max-width: 420px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--c-navy-700);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 16px 28px 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: var(--c-navy-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 18, 50, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.btn-arrow svg { width: 16px; height: 16px; }

/* --- Features --- */
.hero-features {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 110px;
}
.feat-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy-900);
}
.feat-icon svg { width: 28px; height: 28px; }
.feat-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-navy-900);
}

/* --- Imagen --- */
.hero-image-wrap {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.45));
  transform-origin: center bottom;
  transform: translateY(30px) scale(1.5);
  z-index: 3;
}

/* --- Banda azul curva al fondo del hero --- */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 420px;
  display: block;
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   Productos (sección con slider)
   ========================================================= */
.products {
  background: var(--c-cream);
  padding: 80px 0 90px;
  color: var(--c-navy-900);
}

.products-header {
  text-align: center;
  margin-bottom: 44px;
}

.products-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: 0.3px;
  margin: 0 0 6px;
  color: var(--c-navy-900);
}
.title-spark {
  display: inline-flex;
  width: 38px;
  height: 28px;
  color: var(--c-gold);
}
.title-spark svg { width: 100%; height: 100%; }

.products-subtitle {
  font-family: "Dancing Script", var(--ff-script);
  font-weight: 700;
  color: var(--c-navy-900);
  font-size: clamp(22px, 2vw, 30px);
  margin: 0;
  position: relative;
  display: inline-block;
}
.products-subtitle .heart {
  color: var(--c-gold);
  margin-left: 6px;
}
.products-subtitle::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  margin: 4px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--c-gold) 30%, var(--c-gold) 70%, transparent 100%);
  opacity: 0.5;
}

/* --- Slider --- */
.products-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 12px 4px 24px;
  margin: 0;
  scroll-behavior: smooth;
  transition: transform 0.45s cubic-bezier(.22, .8, .3, 1);
  will-change: transform;
}

/* --- Card --- */
.product-card {
  position: relative;
  flex: 0 0 calc((100% - 18px * 4) / 5); /* 5 visibles */
  background: var(--c-white);
  border-radius: 22px;
  padding: 18px 18px 24px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(20, 42, 94, 0.08), 0 2px 6px rgba(20, 42, 94, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(20, 42, 94, 0.12), 0 4px 10px rgba(20, 42, 94, 0.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #2e8b57;
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 5px 10px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(46, 139, 87, 0.35);
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.18));
}

.product-name {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: var(--c-navy-900);
  margin: 0 0 10px;
}

.product-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin: 0 0 18px;
  flex-grow: 1;
  min-height: 60px;
}

.product-cta {
  background: var(--c-navy-700);
  color: var(--c-white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.1px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 6px 14px rgba(20, 42, 94, 0.22);
}
.product-cta:hover {
  background: var(--c-navy-600);
  transform: translateY(-1px);
}

/* --- Flechas de navegación --- */
.slider-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-navy-900);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  box-shadow: 0 8px 18px rgba(20, 42, 94, 0.25);
}
.slider-arrow:hover { background: var(--c-navy-700); transform: scale(1.06); }
.slider-arrow:active { transform: scale(0.98); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- CTA inferior --- */
.products-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.btn-products {
  padding: 18px 42px;
  font-size: 13px;
}

/* =========================================================
   Productos — Responsive
   ========================================================= */
@media (max-width: 1280px) {
  .product-card { flex-basis: calc((100% - 18px * 3) / 4); }  /* 4 visibles */
}
@media (max-width: 980px) {
  .product-card { flex-basis: calc((100% - 18px * 2) / 3); }  /* 3 visibles */
}
@media (max-width: 720px) {
  .product-card { flex-basis: calc((100% - 18px) / 2); }      /* 2 visibles */
  .products { padding: 64px 0 70px; }
}
@media (max-width: 520px) {
  .product-card { flex-basis: 78%; }                           /* 1.2 visibles */
  .slider-arrow { width: 38px; height: 38px; }
  .products-slider { gap: 8px; }
}

/* =========================================================
   Contacto
   ========================================================= */
.contact {
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.4fr auto;
  gap: 40px;
  align-items: start;
}

/* --- Intro --- */
.contact-intro {
  position: relative;
  padding-left: 16px;
}
.contact-intro .title-spark {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 36px;
  height: 28px;
  color: var(--c-gold);
}

.contact .contact-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: 0.5px;
  margin: 0 0 14px;
  color: var(--c-white);
}
.contact .contact-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}
.contact .contact-script {
  font-family: "Dancing Script", var(--ff-script);
  font-weight: 700;
  color: var(--c-gold);
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-script .heart svg {
  width: 22px;
  height: 22px;
  color: var(--c-gold);
}

/* --- Lista de contacto --- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.contact-list a { transition: color .2s ease; }
.contact-list a:hover { color: var(--c-gold-soft); }
.ci-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--c-white);
}
.ci-icon svg { width: 18px; height: 18px; }

/* --- Formulario --- */
.contact-form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--c-white);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.55); }
.form-input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(200, 162, 90, 0.18);
}
.form-input:invalid:not(:placeholder-shown) {
  border-color: #d96b6b;
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.5;
}

.form-submit {
  margin-top: 6px;
  background: var(--c-gold);
  color: var(--c-navy-900);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.form-submit:hover {
  background: var(--c-gold-soft);
  transform: translateY(-1px);
}
.form-submit:active { transform: translateY(0); }
.btn-plane svg { width: 18px; height: 18px; }

.form-status {
  margin: 4px 0 0;
  font-size: 13px;
  min-height: 18px;
  color: var(--c-gold-soft);
}
.form-status.error { color: #ffb4b4; }
.form-status.success { color: #a8e6a3; }

/* --- Mascota (esquina inferior derecha, anclada al bottom para que las patas
       queden a la altura del botón ENVIAR MENSAJE) --- */
.contact-mascot {
  position: relative;
  align-self: end;        /* anclada al fondo del row */
  justify-self: end;      /* pegada al borde derecho */
  width: 320px;
  margin-right: -10px;    /* un toque más a la esquina */
  height: 100%;           /* ocupa toda la altura del row */
  display: flex;
  align-items: flex-end;  /* la imagen pega al bottom */
  justify-content: flex-end;
}
.contact-mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}
.mascot-heart {
  position: absolute;
  top: -10px;
  right: -10px;
  color: var(--c-gold);
}
.mascot-heart svg { width: 32px; height: 32px; }

/* --- Contacto responsive --- */
@media (max-width: 1180px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "intro list"
      "form  form"
      "mascot mascot";
    align-items: start;
  }
  .contact-intro { grid-area: intro; }
  .contact-list  { grid-area: list; }
  .contact-form  { grid-area: form; }
  .contact-mascot {
    grid-area: mascot;
    justify-self: end;
    margin-top: -40px;
  }
}
@media (max-width: 760px) {
  .contact-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "list"
      "form"
      "mascot";
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-mascot { justify-self: center; margin-top: 0; }
}

/* =========================================================
   Responsive (resto del sitio)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    padding-top: 40px;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-features { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-width: 460px; }
}

@media (max-width: 768px) {
  .brand { width: 150px; height: 60px; }
  .brand-logo { top: -10px; height: 120px; }
  .hero { padding-bottom: 80px; }
  .hero-wave { height: 70px; }
  .hero-features { gap: 28px; margin-top: 32px; }
  .hero-features li { max-width: 96px; }
  .hero-eyebrow { font-size: 36px; }
}

@media (max-width: 480px) {
  :root { --container-pad: 18px; }
  .btn-primary { font-size: 12px; padding: 14px 22px 14px 24px; letter-spacing: 1px; }
  .hero-image { max-width: 100%; }
  .feat-label { font-size: 12px; }
}

/* =========================================================
   PÁGINA PRODUCTOS
   ========================================================= */

/* Paleta extra para esta página */
:root {
  --c-green-700: #2f8a4f;
  --c-green-600: #3aa15d;
  --c-green-500: #4cb46f;
  --c-green-100: #e7f3eb;
  --c-green-pale: #eaf4e1;
  --c-cream-2:  #faf3e2;
}

.page-productos { background: var(--c-cream); }

/* --- Hero Productos --- */
.prod-hero {
  background: var(--c-cream);
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
}
.prod-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 30px;
  align-items: center;
  min-height: 360px;
}
.prod-eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--c-gold);
  margin: 0 0 14px;
}
.prod-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--c-navy-900);
  margin: 0 0 14px;
  display: block;
}
.prod-title-line2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.prod-title-script {
  font-family: "Allura", cursive;
  font-weight: 400;
  color: var(--c-gold);
  font-size: 1.4em;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1;
}
.prod-title-mini {
  height: 70px;
  width: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}
.prod-subtitle {
  font-size: 16px;
  color: var(--c-text-soft);
  margin: 0 0 26px;
}

.prod-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.prod-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  color: var(--c-navy-900);
  border: 1px solid rgba(20, 42, 94, 0.12);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 10px rgba(20, 42, 94, 0.06);
}
.prod-tab svg { width: 18px; height: 18px; }
.prod-tab:hover { background: var(--c-cream-2); }
.prod-tab.active {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
  box-shadow: 0 8px 18px rgba(20, 42, 94, 0.25);
}

.prod-hero-image {
  display: flex;
  justify-content: flex-end;
}
.prod-hero-image img {
  width: 100%;
  height: auto;
  max-width: 720px;
  display: block;
  /* Funde los bordes oscuros del vignette con el fondo crema, dejando
     centro (productos + splash de leche) totalmente visible */
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 55%, #000 55%, transparent 95%);
          mask-image: radial-gradient(ellipse 75% 80% at 50% 55%, #000 55%, transparent 95%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* =========================================================
   Section header común
   ========================================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-icon svg { width: 22px; height: 22px; }
.section-icon.fire {
  background: rgba(200, 162, 90, 0.18);
  color: var(--c-gold);
}
.section-icon.cream {
  background: rgba(200, 162, 90, 0.18);
  color: var(--c-gold);
}
.section-icon.green {
  background: var(--c-green-100);
  color: var(--c-green-600);
}
.section-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 1px;
  color: var(--c-navy-900);
  margin: 0;
}
.section-sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--c-text-soft);
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-white);
  border: 1px solid rgba(20, 42, 94, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-navy-900);
  box-shadow: 0 4px 10px rgba(20, 42, 94, 0.05);
}
.time-badge svg { width: 16px; height: 16px; color: var(--c-gold); }

/* =========================================================
   Promociones (3 combos)
   ========================================================= */
.promos { background: var(--c-cream); padding: 30px 0 60px; }

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

.combo-card {
  position: relative;
  border-radius: 20px;
  padding: 30px 28px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 12px 30px rgba(20, 42, 94, 0.10);
  display: flex;
  flex-direction: column;
}
.combo-card .combo-image {
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 70%;
  pointer-events: none;
}
.combo-card .combo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
  transform: scale(1.35);
  transform-origin: right center;
  /* Funde los bordes vignette con el fondo del cuadro */
  -webkit-mask-image: radial-gradient(ellipse 65% 75% at 60% 50%, #000 50%, transparent 92%);
          mask-image: radial-gradient(ellipse 65% 75% at 60% 50%, #000 50%, transparent 92%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.combo-navy {
  background: linear-gradient(135deg, #16306a 0%, #0e2148 100%);
  color: var(--c-white);
}
.combo-cream {
  background: linear-gradient(135deg, #fbf2dd 0%, #f0e1bc 100%);
  color: var(--c-navy-900);
}
.combo-green {
  background: linear-gradient(135deg, #e5f1d6 0%, #c5e1a5 100%);
  color: var(--c-navy-900);
}

.combo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-gold);
  color: var(--c-navy-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 2;
}
.combo-badge.green-light {
  background: var(--c-white);
  color: var(--c-green-700);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
}
.combo-badge.green-light svg { width: 12px; height: 12px; }

.combo-name {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: 0.3px;
}
.combo-sub {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
}
.combo-price {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 36px;
  margin: 4px 0 8px;
  color: var(--c-gold);
}
.combo-price.green { color: var(--c-green-700); }
.combo-cream .combo-price { color: var(--c-navy-900); }
.combo-saving {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-gold-soft);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.combo-desc {
  font-size: 13px;
  margin: 0 0 18px;
  opacity: 0.85;
  line-height: 1.4;
}

.combo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
  position: relative;
  z-index: 2;
  margin-top: auto;     /* empuja el botón al fondo de la card */
  align-self: flex-start;
}
.combo-cta svg { width: 16px; height: 16px; }
.combo-cta:hover { transform: translateY(-1px); }
.combo-cta.light { background: var(--c-white); color: var(--c-navy-900); }
.combo-cta.gold { background: var(--c-gold); color: var(--c-navy-900); }
.combo-cta.green { background: var(--c-green-700); color: var(--c-white); }

/* =========================================================
   Línea Gourmet + Saludable (compartidas)
   ========================================================= */
.line-section { padding: 50px 0; background: var(--c-cream); }
.line-saludable { background: var(--c-cream); }

.line-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  transition: transform .2s ease, opacity .2s ease;
}
.line-cta.navy { background: var(--c-navy-900); color: var(--c-white); }
.line-cta.green { background: var(--c-green-700); color: var(--c-white); }
.line-cta:hover { transform: translateY(-1px); opacity: 0.95; }

/* Grid estático (sin slider) para mostrar todos los productos en una fila */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Card de producto (más compacta que la home) --- */
.prod-card {
  position: relative;
  flex: 0 0 calc((100% - 18px * 4) / 5);  /* 5 visibles desktop */
  background: linear-gradient(160deg, #ffffff 0%, #fbf5e6 65%, #f5ebd1 100%);
  border-radius: 18px;
  padding: 16px 14px 18px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(20, 42, 94, 0.07),
    0 2px 4px rgba(20, 42, 94, 0.04);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.prod-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.6) 0%, transparent 80%);
  pointer-events: none;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 32px rgba(20, 42, 94, 0.14),
    0 4px 8px rgba(20, 42, 94, 0.06);
}

/* Variante verde sutil para la línea saludable */
.line-saludable .prod-card {
  background: linear-gradient(160deg, #ffffff 0%, #f1f9eb 60%, #e0efcf 100%);
}

/* Las imágenes de saludable son envases verticales muy altos:
   reducimos el contenedor a altura fija para que la card no se estire */
.line-saludable .prod-card-img {
  aspect-ratio: auto;
  height: 180px;
  width: 100%;
  margin-bottom: 6px;
}
.line-saludable .prod-card-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.prod-card-img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.prod-card-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18));
}

.prod-card-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-navy-900);
  margin: 0 0 4px;
  line-height: 1.15;
  min-height: 30px;
}
.prod-card-desc {
  font-size: 12px;
  color: var(--c-text-soft);
  margin: 0 0 6px;
  line-height: 1.35;
  min-height: 34px;
}
.prod-card-rate {
  font-size: 12px;
  margin: 0 0 4px;
  color: var(--c-navy-900);
  font-weight: 600;
}
.star { color: #e8b65a; margin-right: 2px; }

.prod-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin: 4px 0 6px;
  min-height: 38px;
  align-items: flex-start;
}
.prod-tag {
  background: var(--c-green-100);
  color: var(--c-green-700);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.prod-card-price {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 18px;
  margin: 4px 0 10px;
  margin-top: auto;     /* empuja precio + botón al fondo de la card */
  color: var(--c-navy-900);
}
.prod-card-price.green { color: var(--c-green-700); }

.prod-card-add {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.prod-card-add svg { width: 14px; height: 14px; }
.prod-card-add.navy { background: var(--c-navy-900); color: var(--c-white); }
.prod-card-add.navy:hover { background: var(--c-navy-700); }
.prod-card-add.green { background: var(--c-green-700); color: var(--c-white); }
.prod-card-add.green:hover { background: var(--c-green-600); }

/* =========================================================
   Features inferiores (banda navy)
   ========================================================= */
.features-band {
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 32px 0;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}
.feature-ic svg { width: 26px; height: 26px; }
.feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 2px 0 4px;
  color: var(--c-white);
}
.feature-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   Productos page — Responsive
   ========================================================= */
@media (max-width: 1280px) {
  .prod-card { flex-basis: calc((100% - 18px * 3) / 4); }  /* 4 visibles */
}
@media (max-width: 1100px) {
  .prod-card { flex-basis: calc((100% - 18px * 2) / 3); }  /* 3 visibles */
  .combo-grid { grid-template-columns: 1fr 1fr; }
  .combo-card:last-child { grid-column: 1 / -1; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 900px) {
  .prod-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .prod-tabs { justify-content: center; }
  .prod-hero-image img { margin: 0 auto; max-width: 460px; }
  .prod-card { flex-basis: calc((100% - 18px) / 2); }      /* 2 visibles */
  .features-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .prod-card { flex-basis: 78%; }                            /* ~1.2 visibles */
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card:last-child { grid-column: auto; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  /* En tablet/mobile el header de cada línea se apila para que ambos
     (Gourmet y Saludable) se comporten igual independiente de la
     longitud del subtítulo */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  .prod-card { flex-basis: 70%; }                            /* 1.4 visibles */
  .features-inner { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
}

/* En tablet/mobile fijamos la misma altura para gourmet y saludable
   para que la card completa entre en pantalla con info visible */
@media (max-width: 768px) {
  .prod-card-img {
    aspect-ratio: auto;
    height: 252px;
  }
  .prod-card-img img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
  }
  .line-saludable .prod-card-img {
    height: 210px;
  }
  .line-saludable .prod-card-img img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
@media (max-width: 520px) {
  .prod-card-img {
    height: 228px;
  }
  .line-saludable .prod-card-img {
    height: 190px;
  }
}

/* =========================================================
   PÁGINA SOBRE NOSOTROS
   ========================================================= */
.page-nosotros { background: var(--c-cream); }

/* --- Hero ¿Quiénes somos? --- */
.about-hero {
  background: var(--c-cream);
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 140px;
}

.about-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  /* La imagen tiene vignette oscuro; el mask funde los bordes con el crema */
  -webkit-mask-image: radial-gradient(ellipse 68% 78% at 50% 50%, #000 55%, transparent 95%);
          mask-image: radial-gradient(ellipse 68% 78% at 50% 50%, #000 55%, transparent 95%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.about-eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--c-text-soft);
  margin: 0 0 12px;
}
.about-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--c-navy-900);
  margin: 0 0 14px;
}
.about-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--c-gold);
  border-radius: 2px;
  margin-bottom: 28px;
}
.about-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
  margin: 0 0 16px;
  max-width: 540px;
}
.about-text strong {
  color: var(--c-navy-900);
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
  max-width: 540px;
}
.about-values li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.value-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy-900);
}
.value-icon svg { width: 30px; height: 30px; }
.about-values strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy-900);
}
.about-values span {
  font-size: 12px;
  color: var(--c-text-soft);
  line-height: 1.4;
}

.about-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 140px;
  display: block;
}

/* =========================================================
   Sección Equipo (banda navy)
   ========================================================= */
.team {
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 30px 0 80px;
  position: relative;
}

.team-header {
  text-align: center;
  margin-bottom: 50px;
}
.team-eyebrow {
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 0 12px;
}
.team-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.3px;
  color: var(--c-white);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.title-dash {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  position: relative;
  background: linear-gradient(180deg, #1a3470 0%, #0f1f4c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 20px 30px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-name {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-white);
  margin: 0 0 4px;
}
.team-role {
  font-size: 13px;
  color: var(--c-gold-soft);
  margin: 0 0 12px;
  font-weight: 600;
}
.team-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 18px;
  min-height: 38px;
}

.team-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
}
.team-icon svg { width: 20px; height: 20px; }

/* =========================================================
   Features inferiores (versión de nosotros)
   ========================================================= */
.about-features {
  background: var(--c-cream);
  padding: 20px 0 40px;
}
.about-features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--c-navy-900);
  border-radius: 20px;
  padding: 26px 30px;
  color: var(--c-white);
  box-shadow: 0 18px 40px rgba(20, 42, 94, 0.18);
}
.ab-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ab-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
}
.ab-icon svg { width: 22px; height: 22px; }
.ab-feature h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}
.ab-feature p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   Nosotros — Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 100px;
  }
  .about-text { margin-left: auto; margin-right: auto; }
  .about-values { margin-left: auto; margin-right: auto; }
  .about-underline { margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-features-inner { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================
   PÁGINA CONTACTO
   ========================================================= */
.page-contacto { background: var(--c-cream); }

/* --- Hero Contacto --- */
.contact-hero {
  position: relative;
  background: var(--c-cream);
  padding: 60px 0 80px;
  overflow: hidden;
}

.contact-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Imagen del trío al lado derecho (sin fondo navy, el caption tiene su propio panel) */
.contact-hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 20px;
}
/* Caption con forma de corazón */
.heart-caption {
  position: relative;
  width: 100%;
  max-width: 432px;
  aspect-ratio: 200 / 180;
  margin-bottom: 8px;
}
.heart-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 14px 30px rgba(20, 42, 94, 0.28));
}
.heart-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Dancing Script", var(--ff-script);
  font-weight: 700;
  font-size: clamp(21px, 2.1vw, 32px);
  line-height: 1.15;
  color: var(--c-white);
  text-align: center;
  margin: 0;
  padding: 26% 16% 14%;
}
.heart-accent {
  display: inline-block;
  position: relative;
  color: var(--c-white);
}
.heart-accent::after {
  content: "";
  display: block;
  width: 80%;
  height: 2.5px;
  margin: 3px auto 0;
  background: var(--c-gold);
  border-radius: 2px;
}
.contact-hero-image img {
  width: 100%;
  max-width: 930px;
  height: auto;
  display: block;
  /* Funde los bordes del vignette con el fondo crema de la página */
  -webkit-mask-image: radial-gradient(ellipse 70% 78% at 50% 52%, #000 55%, transparent 95%);
          mask-image: radial-gradient(ellipse 70% 78% at 50% 52%, #000 55%, transparent 95%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* --- Copy izquierda --- */
.contact-hero-copy {
  padding-top: 30px;
}
.contact-eyebrow {
  color: var(--c-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 0 18px;
}
.contact-hero .contact-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: var(--c-navy-900);
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
}
.title-sparks {
  position: absolute;
  top: -4px;
  right: -50px;
  color: var(--c-gold);
}
.title-sparks svg { width: 40px; height: 40px; }
.contact-lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-soft);
  margin: 0 0 36px;
}

/* --- Items de contacto --- */
.contact-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-items li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 42, 94, 0.10);
}
.contact-items li:last-of-type { border-bottom: none; }

.ci-bubble {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navy-900);
  border-radius: 50%;
  color: var(--c-white);
}
.ci-bubble svg { width: 20px; height: 20px; }

.contact-items strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy-900);
  margin-bottom: 2px;
}
.contact-items a,
.contact-items span {
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.4;
}
.contact-items a:hover { color: var(--c-navy-700); }

/* --- Redes sociales --- */
.social-row {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.social-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}
.social:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}
.social svg { width: 22px; height: 22px; }
.social.facebook  { background: #1877f2; }
.social.tiktok    { background: #000000; }
.social.instagram { background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888); }
.social.whatsapp  { background: #25d366; }
.social-row li > span {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-navy-900);
}

/* --- Banner ¡Conversemos! --- */
.chat-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 16px 24px 16px 16px;
  border-radius: 18px;
  text-decoration: none;
  max-width: 520px;
  box-shadow: 0 14px 28px rgba(20, 42, 94, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.chat-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(20, 42, 94, 0.28);
}
.chat-banner-mascot {
  width: 70px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.35));
}
.chat-banner-text {
  flex: 1;
}
.chat-banner-text strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 4px;
}
.chat-banner-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}
.chat-banner-arrow {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chat-banner-arrow svg { width: 18px; height: 18px; }


/* =========================================================
   Nuestras tiendas
   ========================================================= */
.stores {
  background: var(--c-cream);
  padding: 30px 0 80px;
}
.stores-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}
.stores-header .dash {
  width: 60px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}
.stores-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 4px;
  color: var(--c-navy-900);
  margin: 0;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-card {
  background: var(--c-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(20, 42, 94, 0.08);
  display: flex;
  flex-direction: column;
}
.store-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.store-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-navy-900);
  color: var(--c-white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.store-body {
  display: flex;
  gap: 12px;
  padding: 18px 20px 22px;
  align-items: flex-start;
}
.store-pin {
  flex: 0 0 auto;
  color: var(--c-navy-900);
  margin-top: 2px;
}
.store-pin svg { width: 22px; height: 22px; }
.store-address {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy-900);
  line-height: 1.4;
  margin: 0 0 4px;
}
.store-note {
  font-size: 12px;
  color: var(--c-gold);
  font-weight: 600;
  margin: 0;
}

/* =========================================================
   Footer de contacto
   ========================================================= */
.contact-footer {
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 16px 0;
}
.contact-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cf-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.cf-tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cf-heart {
  color: var(--c-gold);
  display: inline-flex;
}
.cf-heart svg { width: 18px; height: 18px; }

/* --- Contacto responsive --- */
@media (max-width: 1100px) {
  .contact-hero-inner { grid-template-columns: 1fr; }
  .contact-hero-image { padding-top: 60px; max-width: 480px; margin: 0 auto; }
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .contact-hero { padding-top: 36px; }
  .social-row { flex-wrap: wrap; gap: 16px; }
  .stores-grid { grid-template-columns: 1fr; }
  .contact-footer-inner { flex-direction: column; text-align: center; }
}

/* =========================================================
   Modal de producto
   ========================================================= */
.product-modal[hidden] { display: none; }
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 50, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
  animation: fade-in .2s ease;
}
.modal-card {
  position: relative;
  background: var(--c-white);
  border-radius: 24px;
  max-width: 980px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(10, 20, 50, 0.35);
  animation: pop-in .25s cubic-bezier(.22, .9, .3, 1.1);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 42, 94, 0.08);
  color: var(--c-navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(20, 42, 94, 0.16); }
.modal-close svg { width: 18px; height: 18px; }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 36px 36px 16px;
}

/* --- Galería --- */
.modal-gallery { display: flex; flex-direction: column; gap: 14px; }
.modal-main-image {
  background: linear-gradient(160deg, #ffffff 0%, #fbf5e6 80%, #f5ebd1 100%);
  border-radius: 18px;
  aspect-ratio: 1 / 1.05;
  min-height: 440px;        /* evita que el contenedor se colapse al cambiar imagen */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;
}
.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* la imagen completa se ve, sin recortes */
  object-position: center;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.20));
}

.modal-thumbs {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 260px;
}
.modal-thumbs li {
  background: var(--c-cream);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease;
}
.modal-thumbs li.is-active { border-color: var(--c-gold); }
.modal-thumbs li:hover { border-color: var(--c-gold-soft); }
.modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* --- Info derecha --- */
.modal-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-badge {
  display: inline-block;
  align-self: flex-start;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
}
.modal-name {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--c-navy-900);
  margin: 0;
}
.modal-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 42, 94, 0.10);
}
.modal-rating .stars {
  color: #e8b65a;
  font-size: 18px;
  letter-spacing: 2px;
}
.modal-rating .rating-value {
  color: var(--c-text-soft);
  font-size: 14px;
  font-weight: 600;
}
.modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-soft);
  margin: 0;
}

.modal-keep {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-keep-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(36, 63, 128, 0.08);
  color: var(--c-navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-keep-icon svg { width: 22px; height: 22px; }
.modal-keep strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy-900);
}
.modal-keep span {
  font-size: 12px;
  color: var(--c-text-soft);
}

.modal-price-block {
  padding-top: 8px;
  border-top: 1px solid rgba(20, 42, 94, 0.10);
}
.modal-price {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 34px;
  color: var(--c-gold);
  margin: 8px 0 0;
}
.modal-price-label {
  margin: 0;
  font-size: 12px;
  color: var(--c-text-soft);
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(20, 42, 94, 0.18);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 42px;
  background: transparent;
  color: var(--c-navy-900);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}
.qty-btn:hover { background: rgba(20, 42, 94, 0.06); }
.qty-input {
  width: 44px;
  height: 42px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-navy-900);
  background: transparent;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input { -moz-appearance: textfield; }

.modal-add {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-navy-900);
  color: var(--c-white);
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.modal-add:hover { background: var(--c-navy-700); transform: translateY(-1px); }
.modal-add svg { width: 18px; height: 18px; }

/* --- Features inferiores --- */
.modal-features {
  list-style: none;
  margin: 0;
  padding: 20px 36px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(20, 42, 94, 0.08);
}
.modal-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-navy-900);
  text-align: left;
}
.mf-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 42, 94, 0.20);
  color: var(--c-navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.mf-icon svg { width: 22px; height: 22px; }

.prod-card { cursor: pointer; }

/* --- Modal responsive --- */
@media (max-width: 820px) {
  .modal-body { grid-template-columns: 1fr; padding: 28px 24px 12px; gap: 22px; }
  .modal-features { grid-template-columns: 1fr; padding: 18px 24px 24px; }
}

/* =========================================================
   RESPONSIVE GLOBAL — Menú hamburguesa + ajustes mobile
   ========================================================= */

/* Botón hamburguesa (oculto en desktop, dentro de .header-actions a la derecha) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 12px 9px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 60;
  color: var(--c-white);
  order: 99;          /* fuerza al final del header-actions */
  margin-left: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  /* En mobile cambiamos el header a flex para que header-actions
     quede pegado a la esquina derecha (al lado opuesto del logo) */
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    background: var(--c-navy-900);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, .9, .3, 1);
    z-index: 55;
    padding: 90px 28px 28px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    margin: 0;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a {
    font-size: 18px;
    padding: 6px 0;
    color: var(--c-white);
  }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    animation: fade-in .25s ease;
    pointer-events: none;     /* el overlay no debe interceptar clicks */
  }
  /* Asegura que los links del menú móvil sean siempre interactivos */
  .main-nav.is-open,
  .main-nav.is-open ul,
  .main-nav.is-open a {
    pointer-events: auto;
  }
}

/* =========================================================
   Mobile (≤640px) — Ajustes globales
   ========================================================= */
@media (max-width: 640px) {
  :root { --container-pad: 16px; }

  /* Header */
  .brand-logo { height: 90px; }
  .brand { width: 130px; height: 60px; }
  .brand-logo { top: -8px; }
  .header-actions { gap: 6px; }
  .header-actions .divider { display: none; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn svg { width: 20px; height: 20px; }

  /* Hero index */
  .hero-inner { padding-top: 24px; padding-bottom: 0; min-height: auto; }
  .hero-title { font-size: 38px; line-height: 1.05; }
  .hero-subtitle { font-size: 15px; }
  .hero-image { transform: translateY(20px) scale(1.1); }

  /* Productos */
  .products { padding: 50px 0 60px; }
  .products-title { font-size: 24px; }
  .products-subtitle { font-size: 22px; }
  .product-card { padding: 14px 14px 18px; }
  .slider-arrow { width: 36px; height: 36px; }
  .slider-arrow svg { width: 18px; height: 18px; }
  .products-slider { gap: 8px; }

  /* Productos page hero */
  .prod-hero { padding: 30px 0 0; }
  .prod-title { font-size: 38px; }
  .prod-title-mini { height: 50px; }
  .prod-tabs { gap: 8px; }
  .prod-tab { font-size: 12px; padding: 10px 14px; gap: 6px; }
  .prod-tab svg { width: 14px; height: 14px; }

  /* Combos */
  .combo-card { min-height: 280px; padding: 24px 22px; }
  .combo-card .combo-image { width: 65%; right: -10px; }
  .combo-name { font-size: 22px; }
  .combo-price { font-size: 28px; }

  /* Contact section */
  .contact { padding: 50px 0 40px; }
  .contact-mascot { width: 220px; }

  /* About */
  .about-hero { padding: 30px 0 0; }
  .about-title { font-size: 36px; }
  .about-text { font-size: 14px; }

  /* Team */
  .team { padding: 20px 0 50px; }
  .team-title { font-size: 22px; gap: 10px; }
  .title-dash { width: 24px; }

  /* Contacto page */
  .contact-hero { padding: 30px 0 50px; }
  .contact-title { font-size: 40px !important; line-height: 1.05; }
  .contact-eyebrow { letter-spacing: 3px; }
  .contact-items li { gap: 12px; }
  .ci-bubble { width: 38px; height: 38px; }
  .ci-bubble svg { width: 16px; height: 16px; }
  .social-row { gap: 12px; }
  .social { width: 42px; height: 42px; }
  .social svg { width: 18px; height: 18px; }
  .chat-banner { padding: 14px 18px 14px 14px; gap: 12px; }
  .chat-banner-mascot { width: 60px; }
  .chat-banner-text strong { font-size: 18px; }
  .heart-caption { max-width: 320px; }
  .heart-text { font-size: 20px; padding: 26% 14% 14%; }

  /* Stores */
  .stores { padding: 30px 0 50px; }
  .store-photo { aspect-ratio: 16 / 10; }

  /* Modal — versión compacta para mobile (todo entra en pantalla) */
  .product-modal { padding: 0; align-items: stretch; }
  .modal-card {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }
  .modal-close {
    top: 10px; right: 10px;
    width: 32px; height: 32px;
  }
  .modal-close svg { width: 14px; height: 14px; }
  .modal-body {
    padding: 44px 14px 8px;
    gap: 14px;
    flex: 1;
  }
  .modal-gallery { gap: 8px; }
  .modal-main-image {
    min-height: 0;
    aspect-ratio: auto;
    height: 220px;
    padding: 10px;
    border-radius: 14px;
  }
  .modal-thumbs {
    max-width: 180px;
    gap: 8px;
  }
  .modal-thumbs li { aspect-ratio: 1 / 1; padding: 4px; border-radius: 8px; }
  .modal-info { gap: 8px; }
  .modal-badge { font-size: 10px; padding: 4px 10px; letter-spacing: 1.5px; }
  .modal-name { font-size: 20px; line-height: 1.1; }
  .modal-rating { padding-bottom: 8px; }
  .modal-rating .stars { font-size: 15px; }
  .modal-rating .rating-value { font-size: 13px; }
  .modal-desc { font-size: 13px; line-height: 1.45; }
  .modal-keep { gap: 10px; }
  .modal-keep-icon { width: 34px; height: 34px; }
  .modal-keep-icon svg { width: 18px; height: 18px; }
  .modal-keep strong { font-size: 13px; }
  .modal-keep span { font-size: 11px; }
  .modal-price-block { padding-top: 4px; }
  .modal-price { font-size: 24px; margin: 4px 0 0; }
  .modal-price-label { font-size: 11px; }
  .modal-actions { flex-wrap: wrap; margin-top: 0; gap: 8px; }
  .modal-add {
    width: 100%;
    flex: 1 0 100%;
    order: 2;
    padding: 11px 18px;
    font-size: 13px;
  }
  .qty { order: 1; }
  .qty-btn { width: 32px; height: 38px; font-size: 16px; }
  .qty-input { width: 36px; height: 38px; font-size: 14px; }
  /* Features en una sola fila compacta */
  .modal-features {
    padding: 10px 14px 14px;
    gap: 6px;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .modal-features li {
    font-size: 10px;
    gap: 6px;
    flex-direction: column;
    text-align: center;
    line-height: 1.2;
  }
  .modal-features li br { display: none; }
  .mf-icon { width: 32px; height: 32px; }
  .mf-icon svg { width: 16px; height: 16px; }

  /* Features banda navy productos */
  .features-band { padding: 22px 0; }
  .features-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .feature-item { gap: 10px; }
  .feature-item h4 { font-size: 13px; }
  .feature-item p { font-size: 11px; }
}

/* =========================================================
   Mobile pequeño (≤420px)
   ========================================================= */
@media (max-width: 420px) {
  .hero-title { font-size: 32px; }
  .prod-title { font-size: 32px; }
  .about-title { font-size: 30px; }
  .contact-title { font-size: 34px !important; }
  .features-inner { grid-template-columns: 1fr; }
  .prod-card-name { font-size: 14px; min-height: 0; }
  .product-card { padding: 12px 10px 16px; }
  .brand-logo { height: 80px; }
  .brand { width: 110px; }
}

/* =========================================================
   PÁGINA CATÁLOGO (Gourmet / Saludable)
   ========================================================= */
.page-catalogo { background: var(--c-cream); }

.catalog-hero {
  background: var(--c-cream);
  padding: 30px 0 24px;
}
.catalog-hero.green {
  background: linear-gradient(180deg, var(--c-green-100) 0%, var(--c-cream) 100%);
}
.catalog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-navy-900);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: opacity .2s ease;
}
.catalog-back:hover { opacity: 0.7; }
.catalog-back svg { width: 16px; height: 16px; }
.catalog-eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--c-gold);
  margin: 0 0 10px;
}
.catalog-hero.green .catalog-eyebrow { color: var(--c-green-700); }
.catalog-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  color: var(--c-navy-900);
  margin: 0 0 10px;
}
.catalog-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text-soft);
  margin: 0;
  max-width: 640px;
}

.catalog-grid-section {
  background: var(--c-cream);
  padding: 18px 0 70px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-grid .prod-card {
  flex: initial;
  width: 100%;
}

/* Catálogo responsive */
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 420px) {
  .catalog-grid { gap: 12px; }
}

/* =========================================================
   CARRITO — Drawer lateral
   ========================================================= */
.cart-badge {
  transition: transform 0.25s ease;
}
.cart-badge.is-empty {
  background: var(--c-text-soft);
}
.cart-badge.pulse {
  animation: cartPulse 0.5s ease;
}
@keyframes cartPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); background: var(--c-gold); }
  100% { transform: scale(1); }
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 50, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cart-drawer.is-open .cart-drawer-backdrop { opacity: 1; }

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
}
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(20, 42, 94, 0.1);
  background: var(--c-navy-900);
  color: var(--c-white);
}
.cart-drawer-header h2 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-drawer-close:hover { background: rgba(255, 255, 255, 0.3); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.cart-empty {
  text-align: center;
  color: var(--c-text-soft);
  margin: 40px 0;
  font-size: 1rem;
}
.cart-empty span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 42, 94, 0.08);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.cart-item-info h4 {
  margin: 0 0 4px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--c-navy-900);
}
.cart-item-price {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: var(--c-text-soft);
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-white);
  border-radius: var(--radius-pill);
  padding: 2px 6px;
  border: 1px solid rgba(20, 42, 94, 0.12);
}
.cart-item-qty .qty-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--c-navy-900);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}
.cart-item-qty .qty-btn:hover { background: rgba(20, 42, 94, 0.08); }
.cart-item-qty span {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.cart-item-side strong {
  font-size: 0.95rem;
  color: var(--c-navy-900);
}
.cart-item-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--c-text-soft);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-item-remove:hover {
  background: #fde8e8;
  color: #c93b3b;
}

.cart-drawer-footer {
  padding: 18px 22px 24px;
  border-top: 1px solid rgba(20, 42, 94, 0.1);
  background: var(--c-white);
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--c-navy-900);
  letter-spacing: 0.03em;
}
.cart-drawer-total-amount { font-size: 1.15rem; }
.cart-drawer-checkout {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--c-navy-700);
  color: var(--c-white);
  text-align: center;
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.1s;
}
.cart-drawer-checkout:hover {
  background: var(--c-navy-900);
  transform: translateY(-1px);
}
.cart-drawer-checkout.disabled {
  background: var(--c-text-soft);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/* Feedback al agregar */
.prod-card-add.is-added,
.combo-cta.is-added,
.modal-add.is-added {
  background: #2f8a4f !important;
  color: var(--c-white) !important;
}
.prod-card-add.is-added .check,
.modal-add.is-added .check { margin-right: 4px; }

@media (max-width: 520px) {
  .cart-drawer-panel { width: 100%; max-width: 100%; }
  .cart-item { grid-template-columns: 60px 1fr auto; gap: 10px; }
  .cart-item-img { width: 60px; height: 60px; }
}

/* =========================================================
   PÁGINA CHECKOUT
   ========================================================= */
.page-checkout { background: var(--c-cream); min-height: 100vh; }

.checkout-section { padding: 50px 0 80px; }
.checkout-header {
  text-align: center;
  margin-bottom: 36px;
}
.checkout-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--c-navy-900);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.checkout-header p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 0.95rem;
}
.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-navy-700);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.checkout-back:hover { color: var(--c-navy-900); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.checkout-form {
  background: var(--c-white);
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20, 42, 94, 0.08);
}
.checkout-form h2 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--c-navy-900);
  margin: 0 0 18px;
  letter-spacing: 0.03em;
}
.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.checkout-form .field.full { grid-column: 1 / -1; }
.checkout-form label {
  font-size: 0.78rem;
  color: var(--c-text-soft);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(20, 42, 94, 0.14);
  border-radius: 10px;
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--c-text);
  background: var(--c-cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--c-navy-700);
  box-shadow: 0 0 0 3px rgba(45, 79, 154, 0.15);
}
.checkout-form textarea {
  resize: vertical;
  min-height: 80px;
}
.checkout-form .pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.pay-opt {
  position: relative;
  cursor: pointer;
}
.pay-opt input { position: absolute; opacity: 0; }
.pay-opt span {
  display: block;
  text-align: center;
  padding: 10px 6px;
  border: 1px solid rgba(20, 42, 94, 0.14);
  border-radius: 10px;
  background: var(--c-cream);
  font-size: 0.85rem;
  color: var(--c-text);
  transition: all 0.2s;
}
.pay-opt input:checked + span {
  background: var(--c-navy-900);
  color: var(--c-white);
  border-color: var(--c-navy-900);
  font-weight: 600;
}
.checkout-submit {
  width: 100%;
  margin-top: 18px;
  padding: 15px;
  background: var(--c-navy-700);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.checkout-submit:hover {
  background: var(--c-navy-900);
  transform: translateY(-1px);
}

.checkout-summary {
  background: var(--c-white);
  padding: 24px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20, 42, 94, 0.08);
  position: sticky;
  top: 100px;
}
.checkout-summary h2 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--c-navy-900);
  margin: 0 0 16px;
  letter-spacing: 0.03em;
}
.checkout-items {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  max-height: 320px;
  overflow-y: auto;
}
.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 42, 94, 0.08);
  align-items: center;
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.checkout-item-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.checkout-item-info h4 {
  margin: 0 0 2px;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  color: var(--c-navy-900);
  letter-spacing: 0.03em;
}
.checkout-item-info p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--c-text-soft);
}
.checkout-item-total {
  font-size: 0.9rem;
  color: var(--c-navy-900);
}
.checkout-totals {
  border-top: 1px solid rgba(20, 42, 94, 0.1);
  padding-top: 14px;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--c-text);
}
.checkout-line.total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 42, 94, 0.1);
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--c-navy-900);
  letter-spacing: 0.03em;
}
.checkout-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--c-white);
  border-radius: 18px;
  color: var(--c-text-soft);
}
.checkout-empty h2 {
  font-family: var(--ff-display);
  color: var(--c-navy-900);
  margin: 0 0 10px;
}
.checkout-empty a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: var(--c-navy-700);
  color: var(--c-white);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.checkout-success {
  max-width: 560px;
  margin: 40px auto;
  background: var(--c-white);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(20, 42, 94, 0.1);
}
.checkout-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e7f5ec;
  color: #2f8a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.checkout-success h2 {
  font-family: var(--ff-display);
  color: var(--c-navy-900);
  font-size: 1.5rem;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}
.checkout-success p {
  color: var(--c-text-soft);
  margin: 0 0 8px;
}
.checkout-success .order-id {
  display: inline-block;
  margin: 14px 0;
  padding: 8px 18px;
  background: var(--c-cream);
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  color: var(--c-navy-900);
  letter-spacing: 0.05em;
}
.checkout-success a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: var(--c-navy-700);
  color: var(--c-white);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary {
    position: static;
    order: -1;
  }
}
@media (max-width: 560px) {
  .checkout-form .form-row { grid-template-columns: 1fr; }
  .checkout-form { padding: 22px 18px; }
  .checkout-section { padding: 30px 0 60px; }
}
