@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* ============================================
   VARIABLES DE DISEÑO
   ============================================ */
:root {
  --rojo: #e63946;
  --rojo-hover: #c1121f;
  --negro: #0a0a0a;
  --negro-suave: #111;
  --blanco: #ffffff;
  --crema: #fdf8f0;
  --gris-claro: #f5f5f5;
  --gris-medio: #f9f9f9;
  --gris-texto: #444;
  --gris-sutil: #888;
  --dorado: #c9a84c;
  --verde-wsp: #25D366;
  --sombra-suave: 0 4px 20px rgba(0, 0, 0, 0.08);
  --sombra-media: 0 8px 30px rgba(0, 0, 0, 0.13);
  --sombra-fuerte: 0 16px 48px rgba(0, 0, 0, 0.18);
  --radio: 14px;
  --radio-sm: 8px;
  --transicion: 0.3s ease;
  --max-ancho: 1200px;
}

/* ============================================
   RESET GENERAL
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--blanco);
  color: var(--negro-suave);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ============================================
   HEADER STICKY
   ============================================ */
.header {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75em 2em;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transicion);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.contenedor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  max-width: var(--max-ancho);
  margin: 0 auto;
  position: relative;
}

.logo img {
  max-width: 110px;
  height: auto;
  animation: aparecer 0.8s ease-out;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  gap: 1.8em;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95em;
  position: relative;
  padding: 0.4em 0;
  transition: color var(--transicion);
  letter-spacing: 0.02em;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--rojo);
  transition: width var(--transicion);
  border-radius: 2px;
}

.nav a:hover {
  color: var(--blanco);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: var(--blanco);
}

/* ---- CARRITO ICONO ---- */
.carrito {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transicion), transform var(--transicion);
  margin: 0 6px;
}

.carrito:hover {
  color: var(--blanco);
  transform: scale(1.1);
}

.carrito .contador {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--rojo);
  color: var(--blanco);
  font-size: 0.65em;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}

/* ---- HAMBURGUESA ---- */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  color: var(--blanco);
  cursor: pointer;
  padding: 0.2em;
  transition: color var(--transicion);
}

.menu-toggle:hover {
  color: var(--rojo);
}

/* ============================================
   HERO - FULL VIEWPORT
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4em 1.5em;
  background: url('../img/ChatGPT Image 13 jul 2025, 07_46_41 a.m..png') center / cover no-repeat;
  background-color: var(--negro);
  color: var(--blanco);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.70) 100%
  );
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid rgba(230, 57, 70, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  margin-bottom: 1.2em;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out both;
}

.slogan {
  font-size: clamp(2em, 5vw, 3.8em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6em;
  letter-spacing: -0.02em;
  animation: fadeInDown 0.9s ease-out 0.1s both;
}

.slogan span {
  color: var(--rojo);
}

.subtitulo {
  font-size: clamp(1em, 2vw, 1.2em);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2em;
  max-width: 550px;
  animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInDown 1.1s ease-out 0.3s both;
}

/* ============================================
   BOTONES
   ============================================ */
.btn-wsp {
  display: inline-block;
  background: var(--rojo);
  color: var(--blanco);
  padding: 0.85em 2em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95em;
  transition: background var(--transicion), transform var(--transicion), box-shadow var(--transicion);
  border: 2px solid var(--rojo);
}

.btn-wsp:hover {
  background: var(--rojo-hover);
  border-color: var(--rojo-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.btn-secundario {
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secundario:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-wsp-ayuda {
  display: inline-block;
  background: var(--verde-wsp);
  color: var(--blanco);
  padding: 0.8em 1.8em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  transition: background var(--transicion), transform var(--transicion);
}

.btn-wsp-ayuda:hover {
  background: #1ebc5a;
  transform: translateY(-2px);
}

/* ============================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================ */
.btn-flotante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--verde-wsp);
  color: var(--blanco);
  padding: 0.85em 1.4em;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.95em;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: background var(--transicion), transform var(--transicion), box-shadow var(--transicion);
}

.btn-flotante i {
  font-size: 1.4em;
}

.btn-flotante:hover {
  background: #1ebc5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.texto-wsp {
  white-space: nowrap;
  font-weight: 500;
}

/* ============================================
   PRODUCTOS FIJOS (INDEX)
   ============================================ */
.productos-fijos {
  padding: 5em 1.5em;
  background: var(--blanco);
  text-align: center;
}

.productos-fijos h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  margin-bottom: 0.3em;
  color: var(--negro-suave);
}

.productos-fijos .seccion-subtitulo {
  color: var(--gris-sutil);
  margin-bottom: 2.5em;
  font-size: 1em;
}

.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8em;
  max-width: var(--max-ancho);
  margin: 0 auto;
}

.producto {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion), box-shadow var(--transicion);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.producto:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
}

.producto .img-container,
.producto > img:first-child {
  overflow: hidden;
  border-radius: var(--radio) var(--radio) 0 0;
  background-color: #111;
}

.producto .img-container img,
.producto > img:first-child {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
  display: block;
}

.producto:hover .img-container img,
.producto:hover > img:first-child {
  transform: scale(1.06);
}

.producto h3 {
  padding: 0.8em 1em 0.2em;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--negro-suave);
}

.producto p {
  padding: 0 1em;
  color: var(--gris-texto);
  font-size: 0.9em;
  flex: 1;
}

.producto strong {
  display: block;
  padding: 0.4em 1em;
  color: var(--rojo);
  font-size: 1.1em;
  font-weight: 700;
}

.producto .btn-wsp,
.producto .btn-carrito {
  margin: 0.8em 1em 1.2em;
  width: calc(100% - 2em);
  text-align: center;
}

.btn-carrito {
  background: var(--rojo);
  color: var(--blanco);
  border: none;
  padding: 0.7em 1.2em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
  transition: background var(--transicion), transform var(--transicion), box-shadow var(--transicion);
  font-family: 'Poppins', sans-serif;
}

.btn-carrito:hover {
  background: var(--rojo-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
}

/* ============================================
   SECCIÓN: SEPARADORES VISUALES
   ============================================ */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--rojo);
  margin: 0.5em auto 2em;
  border-radius: 4px;
}

.seccion-titulo {
  text-align: center;
  font-size: clamp(1.6em, 3vw, 2.2em);
  font-weight: 700;
  margin-bottom: 0.3em;
  color: var(--negro-suave);
}

.seccion-titulo.rojo {
  color: var(--rojo);
}

/* ============================================
   SECCIÓN: PREPARACIÓN
   ============================================ */
.preparacion {
  padding: 5em 1.5em;
  text-align: center;
  background: var(--crema);
}

.preparacion h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 0.3em;
}

.pasos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5em;
  max-width: var(--max-ancho);
  margin: 2.5em auto 0;
}

.paso {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.paso:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-media);
}

.paso img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.paso:hover img {
  transform: scale(1.06);
}

.paso p {
  font-weight: 500;
  color: var(--gris-texto);
  padding: 1em;
}

/* ============================================
   SECCIÓN: BENEFICIOS
   ============================================ */
.beneficios {
  padding: 5em 1.5em;
  background: var(--blanco);
  text-align: center;
}

.beneficios h2,
.por {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 0.3em;
  text-align: center;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 2.5em auto 0;
}

.grid-beneficios .item {
  background: var(--crema);
  border-radius: var(--radio);
  padding: 2em 1.5em;
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.grid-beneficios .item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
}

.grid-beneficios i {
  font-size: 2.2em;
  color: var(--rojo);
  margin-bottom: 0.6em;
}

.grid-beneficios h3 {
  margin: 0.4em 0;
  font-size: 1.1em;
  color: var(--negro-suave);
}

.grid-beneficios p {
  font-size: 0.92em;
  color: var(--gris-texto);
}

/* ============================================
   SECCIÓN: TESTIMONIOS
   ============================================ */
.testimonios {
  background: var(--crema);
  padding: 5em 1.5em;
  text-align: center;
}

.testimonios h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 0.3em;
}

.grid-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8em;
  max-width: 1000px;
  margin: 2.5em auto 0;
}

.testimonio {
  background: var(--blanco);
  border-left: 4px solid var(--rojo);
  padding: 1.8em;
  border-radius: 0 var(--radio) var(--radio) 0;
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion), box-shadow var(--transicion);
  text-align: left;
}

.testimonio:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-media);
}

.testimonio p {
  font-style: italic;
  color: var(--gris-texto);
  margin-bottom: 0.8em;
}

.testimonio h4 {
  font-size: 0.9em;
  color: var(--rojo);
  font-weight: 600;
}

/* ---- Formulario de opinión ---- */
.deja-opinion {
  margin-top: 3em;
  padding: 2.5em;
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.deja-opinion h3 {
  font-size: 1.4em;
  color: var(--negro-suave);
  margin-bottom: 0.3em;
}

.deja-opinion input,
.deja-opinion textarea {
  width: 100%;
  padding: 0.8em 1em;
  margin: 0.5em 0;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radio-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  resize: vertical;
  transition: border-color var(--transicion);
  background: var(--gris-claro);
}

.deja-opinion input:focus,
.deja-opinion textarea:focus {
  border-color: var(--rojo);
  outline: none;
  background: var(--blanco);
}

.deja-opinion button {
  background: var(--rojo);
  color: var(--blanco);
  padding: 0.85em 2em;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transicion), transform var(--transicion);
  margin-top: 0.5em;
}

.deja-opinion button:hover {
  background: var(--rojo-hover);
  transform: translateY(-2px);
}

.estrellas {
  margin: 0.8em 0;
  text-align: left;
}

.estrellas label {
  display: block;
  margin-bottom: 0.4em;
  font-weight: 500;
  font-size: 0.95em;
}

.estrellas-opciones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
}

.estrellas-opciones input[type="radio"] {
  width: auto;
  margin: 0;
}

/* ============================================
   SECCIÓN: ZONA DE ENTREGA
   ============================================ */
.zona-entrega {
  padding: 5em 1.5em;
  background: var(--blanco);
  text-align: center;
}

.zona-entrega h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 0.3em;
}

.zona-entrega > p {
  color: var(--gris-texto);
  margin-bottom: 1.5em;
}

.lista-zonas {
  list-style: none;
  padding: 0;
  margin: 1.5em auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8em;
  max-width: 600px;
}

.lista-zonas li {
  background: var(--rojo);
  color: var(--blanco);
  padding: 0.55em 1.4em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
  transition: transform var(--transicion);
}

.lista-zonas li:hover {
  transform: translateY(-2px);
}

.consulta-zona {
  margin-top: 1.5em;
  font-size: 1em;
  color: var(--gris-texto);
}

.consulta-zona a {
  color: var(--rojo);
  font-weight: 600;
}

.consulta-zona a:hover {
  text-decoration: underline;
}

.zona-entrega iframe {
  width: 100%;
  max-width: 800px;
  height: 380px;
  border: none;
  border-radius: var(--radio);
  box-shadow: var(--sombra-media);
  margin-top: 2em;
}

.mapa-oscuro {
  background: #1a1a1a;
  border-radius: var(--radio);
  padding: 1.5em;
  margin: 2em auto 0;
  max-width: 850px;
  box-shadow: var(--sombra-media);
}

.mapa-oscuro iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 10px;
  display: block;
}

/* ============================================
   SECCIÓN: FAQ
   ============================================ */
.faq {
  padding: 5em 1.5em;
  background: var(--crema);
  text-align: center;
}

.faq h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 0.3em;
}

.faq-item {
  max-width: 780px;
  margin: 1em auto;
  text-align: left;
  border-radius: var(--radio);
  overflow: hidden;
  background: var(--blanco);
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: var(--negro);
  color: var(--blanco);
  padding: 1.1em 1.4em;
  font-size: 0.98em;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transicion);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #1a1a1a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1em;
  background: var(--blanco);
  font-size: 0.95em;
  color: var(--gris-texto);
}

.faq-question::after {
  content: '+';
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

/* ============================================
   SECCIÓN: CONTADOR DE APERTURA
   ============================================ */
.contador-apertura {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--rojo);
  text-align: center;
  padding: 1em;
  animation: fadeIn 1s ease-out;
}

/* ============================================
   SECCIÓN: HORARIO BANNER
   ============================================ */
.horario-banner {
  background: url('../img/ChatGPT\ Image\ 14\ jul\ 2025\,\ 06_22_23\ p.m..png') center center / cover no-repeat;
  background-attachment: fixed;
  color: var(--blanco);
  text-align: center;
  padding: 5em 1.5em;
  position: relative;
}

.horario-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
.horario-atencion{
color: white!important;
}
.horario-contenido {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  color: white;
}

.reloj-icono {
  font-size: 2.8em;
  margin-bottom: 0.5em;
  color: var(--rojo);
}

.horario-contenido h3 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  margin-bottom: 0.5em;
  color: var(--blanco);
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.horario-contenido p {
  font-size: 1.15em;
  margin: 0.5em 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.horario-extra {
  font-style: italic;
  font-size: 0.95em;
  color: rgba(255,255,255,0.75);
  margin-top: 0.8em;
}

/* ============================================
   FOOTER MULTI-COLUMNA
   ============================================ */
.footer {
  background: var(--negro);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92em;
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 3em;
  max-width: var(--max-ancho);
  margin: 0 auto;
  padding: 4em 2em 3em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.footer-logo {
  max-width: 90px;
  margin-bottom: 0.8em;
  border-radius: var(--radio-sm);
}

.footer-brand p {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--blanco);
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--rojo);
  width: fit-content;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
  transition: color var(--transicion), padding-left var(--transicion);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.footer-col a:hover {
  color: var(--blanco);
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-cerrado {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.85em !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1.2em 2em;
}

.footer-bottom p {
  margin: 0.2em 0;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom strong {
  color: var(--blanco);
}

.footer-bottom a,
.marca-agua a {
  color: var(--rojo);
  transition: color var(--transicion);
}

.footer-bottom a:hover,
.marca-agua a:hover {
  color: #ff6b75;
  text-decoration: underline;
}

.marca-agua {
  margin-top: 0.3em;
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.35);
}

/* Compat: footer viejo sin grid */
.footer-contenido {
  padding: 1.5em;
  text-align: center;
}

/* ============================================
   SECCIONES: NOSOTROS
   ============================================ */
.nosotros {
  padding: 4em 1.5em;
  max-width: 1000px;
  margin: auto;
}

.quienes-somos,
.mision-vision,
.galeria-nosotros {
  margin-bottom: 3.5em;
}

.quienes-somos h1,
.mision-vision h2,
.galeria-nosotros h2 {
  text-align: center;
  margin-bottom: 0.5em;
  color: var(--negro-suave);
}

.mision-vision {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

@media (min-width: 768px) {
  .mision-vision {
    flex-direction: row;
  }
  .mision, .vision {
    flex: 1;
  }
}

.mision, .vision {
  background: var(--crema);
  padding: 1.8em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
}

.galeria-nosotros {
  padding: 2em 0;
  text-align: center;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
  margin-top: 1.5em;
}

.grid-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  transition: transform 0.4s ease;
}

.grid-galeria img:hover {
  transform: scale(1.04);
}

/* Galería Swiper */
.grid-galeria img,
.swiper-slide img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.valores {
  padding: 4em 1.5em;
  text-align: center;
  background: var(--crema);
}

.valores h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 0.3em;
}

.grid-valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  max-width: 900px;
  margin: 2.5em auto 0;
}

.valor {
  background: var(--blanco);
  padding: 1.8em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion);
}

.valor:hover {
  transform: translateY(-5px);
}

.valor i {
  font-size: 2em;
  color: var(--rojo);
  margin-bottom: 0.5em;
}

.frase-marca {
  background: var(--negro-suave);
  color: var(--blanco);
  padding: 4em 1.5em;
  text-align: center;
  font-style: italic;
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.7;
}

.historia-marca {
  background: var(--blanco);
  padding: 4em 1.5em;
  text-align: center;
}

.historia-marca h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 2em;
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 1.5em;
  border-left: 3px solid var(--rojo);
}

.timeline-item {
  position: relative;
  margin-bottom: 2em;
  padding-left: 1.5em;
}

.timeline-dot {
  position: absolute;
  left: -11px;
  top: 0.3em;
  width: 18px;
  height: 18px;
  background: var(--rojo);
  border-radius: 50%;
  border: 3px solid var(--blanco);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.3);
}

.timeline-content {
  background: var(--crema);
  padding: 1.2em 1.4em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  text-align: left;
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--rojo);
  font-size: 1.1em;
}

.timeline-content p {
  font-size: 0.95em;
  color: var(--gris-texto);
}

.testimonios-equipo {
  padding: 4em 1.5em;
  background: var(--crema);
  text-align: center;
}

.testimonios-equipo h2 {
  font-size: clamp(1.6em, 3vw, 2.2em);
  color: var(--negro-suave);
  margin-bottom: 2em;
}

.grid-testimonios-internos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5em;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio-interno {
  background: var(--blanco);
  border-left: 4px solid var(--rojo);
  padding: 1.5em;
  border-radius: 0 var(--radio) var(--radio) 0;
  box-shadow: var(--sombra-suave);
  text-align: left;
}

.testimonio-interno p {
  font-style: italic;
  font-size: 1em;
  margin-bottom: 0.8em;
  color: var(--gris-texto);
}

.testimonio-interno h4 {
  font-weight: 600;
  color: var(--rojo);
  font-size: 0.9em;
}

/* Nuestro chef */
.nuestro-chef {
  padding: 4em 1.5em;
  background: var(--blanco);
  text-align: center;
}

.chef-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  max-width: 800px;
  margin: auto;
}

@media (min-width: 768px) {
  .chef-contenido {
    flex-direction: row;
    text-align: left;
  }
}

.chef-contenido img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--sombra-media);
  flex-shrink: 0;
}

.chef-texto h3 {
  font-size: 1.3em;
  color: var(--rojo);
  margin-bottom: 0.5em;
}

/* ============================================
   SECCIONES: MÉTODOS DE PAGO
   ============================================ */
.metodos {
  padding: 4em 1.5em;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.intro-metodos h1 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--negro-suave);
  margin-bottom: 0.4em;
}

.intro-metodos p {
  font-size: 1.05em;
  color: var(--gris-texto);
  margin-bottom: 2.5em;
}

.lista-metodos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
}

.metodo {
  background: var(--crema);
  padding: 2.2em 1.5em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.metodo:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
}

.metodo i {
  font-size: 2.5em;
  color: var(--rojo);
  margin-bottom: 0.6em;
}

.metodo h3 {
  color: var(--negro-suave);
  font-size: 1.2em;
  margin-bottom: 0.4em;
}

.metodo p {
  font-size: 0.9em;
  color: var(--gris-texto);
}

.faq-pagos {
  margin-top: 2.5em;
  background: var(--crema);
  padding: 2em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  text-align: left;
}

.faq-pagos h4 {
  color: var(--rojo);
  margin-bottom: 1em;
  font-size: 1.1em;
}

.faq-pagos p {
  font-size: 0.95em;
  margin-bottom: 0.8em;
  color: var(--gris-texto);
}

.grid-pasos-pago {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  margin-top: 2.5em;
}

.paso-pago {
  background: var(--blanco);
  padding: 1.8em 1.5em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  text-align: center;
  transition: transform var(--transicion);
}

.paso-pago:hover {
  transform: translateY(-4px);
}

.paso-pago i {
  font-size: 2.2em;
  color: var(--rojo);
  margin-bottom: 0.6em;
}

.ayuda-pago {
  background: #fff5f5;
  border-left: 4px solid var(--rojo);
  padding: 2.5em 2em;
  text-align: center;
  margin-top: 3em;
  border-radius: 0 var(--radio) var(--radio) 0;
  box-shadow: var(--sombra-suave);
}

.ayuda-pago h3 {
  color: var(--rojo);
  margin-bottom: 0.5em;
  font-size: 1.5em;
}

.ayuda-pago p {
  font-size: 1em;
  margin-bottom: 1.2em;
  color: var(--gris-texto);
}

/* ============================================
   SECCIONES: CONTACTO
   ============================================ */
.contacto-info {
  padding: 4em 1.5em;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.seccion-contacto-iconos h1 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--negro-suave);
  margin-bottom: 0.4em;
}

.subtitulo-contacto {
  font-size: 1.05em;
  color: var(--gris-texto);
  margin-bottom: 2.5em;
}

.grid-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5em;
}

.item-contacto {
  display: flex;
  align-items: center;
  gap: 1em;
  background: var(--crema);
  padding: 1.5em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  transition: transform var(--transicion), box-shadow var(--transicion);
  overflow-wrap: break-word;
  text-align: left;
}

.item-contacto:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-media);
}

.item-contacto i {
  font-size: 2em;
  color: var(--rojo);
  min-width: 40px;
  text-align: center;
}

.info-contacto h3 {
  font-size: 1rem;
  margin: 0 0 0.2em;
  color: var(--negro-suave);
}

.info-contacto a {
  color: var(--rojo);
  font-size: 0.9em;
  font-weight: 500;
  word-break: break-word;
}

.info-contacto a:hover {
  text-decoration: underline;
}

.texto-mapa {
  color: var(--gris-texto);
  font-size: 0.9em;
  margin-top: 0.3em;
}

.horarios-contacto {
  margin-top: 3em;
  background: var(--crema);
  padding: 2em 2.5em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-suave);
  text-align: left;
}

.horarios-contacto h3 {
  color: var(--negro-suave);
  margin-bottom: 0.8em;
  text-align: center;
}

.lista-horarios {
  list-style: none;
  padding: 0;
  font-size: 1em;
  color: var(--gris-texto);
}

.lista-horarios li {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lista-horarios li:last-child {
  border-bottom: none;
}

.frase-contacto {
  background: var(--crema);
  padding: 2.5em 1.5em;
  margin-top: 3em;
  text-align: center;
  border-top: 3px solid var(--rojo);
  border-bottom: 3px solid var(--rojo);
  border-radius: var(--radio);
}

.contenedor-frase {
  max-width: 700px;
  margin: auto;
  font-size: 1.15em;
  font-style: italic;
  color: var(--gris-texto);
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.contenedor-frase i {
  color: var(--rojo);
  font-size: 1.8em;
  flex-shrink: 0;
}

.testimonio-contacto {
  font-style: italic;
  text-align: center;
  margin: 2em auto;
  max-width: 600px;
  color: var(--gris-texto);
}

.testimonio-contacto cite {
  display: block;
  margin-top: 0.5em;
  font-size: 0.9em;
  color: var(--rojo);
}

/* ============================================
   TIENDA PAGE
   ============================================ */
.titulo-seccion {
  text-align: center;
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin: 2rem 0 1rem;
  color: var(--negro-suave);
  font-weight: 700;
  position: relative;
}

.titulo-seccion::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--rojo);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.tienda-contenedor {
  display: flex;
  gap: 2em;
  padding: 2em 1.5em 4em;
  max-width: var(--max-ancho);
  margin: 0 auto;
  flex-wrap: wrap;
}

.tienda-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  margin: 1.5em 1.5em 0;
  padding-top: 0.5em;
}

.tienda-categorias button {
  background: transparent;
  color: var(--rojo);
  border: 2px solid var(--rojo);
  padding: 0.5em 1.2em;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transicion);
}

.tienda-categorias button:hover,
.tienda-categorias button.activo {
  background: var(--rojo);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.tienda-productos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5em;
  width: 100%;
}

/* ============================================
   CARRITO PREVIEW (DROPDOWN)
   ============================================ */
.carrito-preview {
  position: fixed;
  top: 72px;
  right: 20px;
  width: 300px;
  background: var(--blanco);
  border: 2px solid var(--rojo);
  border-radius: var(--radio);
  box-shadow: var(--sombra-fuerte);
  padding: 1.2em;
  z-index: 9999;
  display: none;
}

.carrito-preview h3 {
  margin-top: 0;
  font-size: 1.1em;
  color: var(--rojo);
  font-weight: 700;
}

.carrito-preview ul {
  list-style: none;
  padding: 0;
  margin: 0.8em 0;
  max-height: 200px;
  overflow-y: auto;
}

.carrito-preview li {
  display: flex;
  gap: 0.8em;
  margin-bottom: 0.8em;
  align-items: center;
}

.carrito-preview img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.btn-ver-carrito {
  background: var(--rojo);
  color: var(--blanco);
  padding: 0.6em 1em;
  text-align: center;
  display: block;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  transition: background var(--transicion);
}

.btn-ver-carrito:hover {
  background: var(--rojo-hover);
}

.oculto {
  display: none;
}

.cerrar-preview {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--gris-texto);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transicion);
}

.cerrar-preview:hover {
  color: var(--rojo);
}

/* ============================================
   FORMULARIOS (CARRITO / CONTACTO)
   ============================================ */
.formulario label {
  display: block;
  margin-bottom: 0.8em;
  font-weight: 500;
}

.formulario input[type="text"],
.formulario input[type="number"],
.formulario textarea {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radio-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  transition: border-color var(--transicion);
  background: var(--gris-claro);
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: var(--rojo);
  outline: none;
  background: var(--blanco);
}

.filtro-categorias {
  margin: 1em 0;
  padding: 1em;
  background: #fff8f0;
  border: 1px solid var(--rojo);
  border-radius: var(--radio-sm);
  max-width: 400px;
  box-shadow: var(--sombra-suave);
}

.filtro-categorias label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5em;
  color: var(--negro-suave);
}

.filtro-categorias select {
  width: 100%;
  padding: 0.5em;
  border-radius: var(--radio-sm);
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  background: var(--blanco);
  color: var(--negro-suave);
  transition: border-color var(--transicion);
}

.filtro-categorias select:focus {
  outline: none;
  border-color: var(--rojo);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: #2a9d3f;
  color: var(--blanco);
  padding: 0.9em 1.4em;
  border-radius: var(--radio-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  box-shadow: var(--sombra-media);
  z-index: 9999;
  width: max-content !important;
  height: auto !important;
  max-height: 60px !important;
  max-width: 260px;
  line-height: 1.3;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden;
  animation: fadeInOut 3s ease forwards;
}

@media (max-width: 500px) {
  .toast { top: 76px; right: 12px; }
}

@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(-10px); }
  10%  { opacity: 1; transform: translateY(0); }
  85%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* ============================================
   ADMIN PANEL
   ============================================ */
body.login-body {
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  background: var(--blanco);
  padding: 2.5em;
  border-radius: var(--radio);
  box-shadow: var(--sombra-media);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.login-container h1 {
  margin-bottom: 1.2em;
  font-size: 1.8em;
  color: var(--negro-suave);
}

.login-container input {
  width: 100%;
  padding: 0.85em 1em;
  margin-bottom: 1em;
  border: 1.5px solid #ddd;
  border-radius: var(--radio-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  transition: border-color var(--transicion);
}

.login-container input:focus {
  border-color: var(--rojo);
  outline: none;
}

.login-container button {
  width: 100%;
  padding: 0.9em;
  background: var(--rojo);
  color: var(--blanco);
  border: none;
  border-radius: var(--radio-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background var(--transicion);
}

.login-container button:hover {
  background: var(--rojo-hover);
}

body.admin-panel {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: var(--negro-suave);
  margin: 0;
  padding: 1em;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
  background: var(--blanco);
  z-index: 10;
  box-shadow: var(--sombra-suave);
  padding: 1em 1.5em;
  border-radius: var(--radio);
}

.admin-titulo {
  font-size: 1.8em;
  color: var(--rojo);
  font-weight: 700;
}

.btn-logout {
  background: var(--rojo);
  color: var(--blanco);
  border: none;
  padding: 0.6em 1.2em;
  cursor: pointer;
  border-radius: var(--radio-sm);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background var(--transicion);
}

.btn-logout:hover {
  background: var(--rojo-hover);
}

.admin-grid {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

section {
  padding: 1.2em;
  border: 1px solid #e0e0e0;
  border-radius: var(--radio);
  background: var(--blanco);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-bottom: 1em;
  background: var(--blanco);
  padding: 1em;
  border-radius: var(--radio-sm);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.nombree,
.admin-form textarea,
.admin-form select {
  padding: 0.75em 1em;
  border: 1.5px solid #ddd;
  border-radius: var(--radio-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  transition: border var(--transicion), box-shadow var(--transicion);
  background: var(--blanco);
  width: 100%;
}

.nombree:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: var(--rojo);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
  outline: none;
}

.form-btns {
  display: flex;
  gap: 0.8em;
  flex-wrap: wrap;
}

.btn-principal,
.btn-cancelar {
  padding: 0.7em 1.3em;
  font-weight: 700;
  border-radius: var(--radio-sm);
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  transition: background var(--transicion), transform var(--transicion);
}

.btn-principal {
  background: var(--rojo);
  color: var(--blanco);
  text-decoration: none;
  display: inline-block;
}

.btn-principal:hover {
  background: var(--rojo-hover);
  transform: translateY(-1px);
}

.btn-cancelar {
  background: #adb5bd;
  color: var(--blanco);
}

.btn-cancelar:hover {
  background: #868e96;
}

.admin-lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1em;
  list-style: none;
  padding: 0;
}

.admin-lista li {
  background: var(--blanco);
  border: 1px solid #e8e8e8;
  padding: 1em;
  border-radius: var(--radio-sm);
  box-shadow: var(--sombra-suave);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  transition: transform var(--transicion);
  font-family: 'Poppins', sans-serif;
}

.admin-lista li:hover {
  transform: scale(1.01);
}

.admin-lista img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radio-sm);
}

.admin-lista button {
  background: var(--rojo);
  color: var(--blanco);
  border: none;
  padding: 0.45em 0.9em;
  font-weight: 600;
  border-radius: var(--radio-sm);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9em;
  transition: background var(--transicion);
}

.admin-lista button:hover {
  background: var(--rojo-hover);
}

button i {
  margin-right: 5px;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes aparecer {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes flotar {
  0%   { transform: translateY(100vh) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* Sushi flotante */
.sushi-floating {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.sushi-floating span {
  position: absolute;
  font-size: 32px;
  animation: flotar 3s linear infinite;
  opacity: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
}

@media (max-width: 768px) {
  /* Header */
  .contenedor-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .logo img {
    max-width: 90px;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .carrito {
    order: 1;
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    position: absolute;
    top: 100%;
    left: -2em;
    right: -2em;
    z-index: 1000;
    padding: 1em 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.show,
  .nav.activo {
    display: flex;
  }

  .nav a {
    padding: 0.9em 1.5em;
    text-align: center;
    font-size: 1.1em;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  /* Horario banner */
  .horario-banner {
    background-attachment: scroll;
    padding: 3.5em 1.5em;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 3em 1.5em 2em;
  }

  /* Tienda */
  .tienda-contenedor {
    flex-direction: column;
  }

  .tienda-productos {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 500px) {
  .btn-flotante .texto-wsp {
    display: none;
  }

  .btn-flotante {
    padding: 0.9em;
    border-radius: 50%;
  }

  .btn-flotante i {
    font-size: 1.6em;
  }

  .footer-grid {
    padding: 2.5em 1em 1.5em;
  }
}

/* ============================================
   SECCIONES: OFERTAS / CATEGORÍAS
   ============================================ */
.ofertas, .categorias {
  padding: 3em 1.5em;
  background: var(--gris-medio);
  text-align: center;
}

.ofertas h2, .categorias h2 {
  color: var(--rojo);
  margin-bottom: 1em;
}

/* ============================================
   RESPONSIVE ADMIN
   ============================================ */
@media (min-width: 768px) {
  .admin-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2em;
  }

  section {
    height: fit-content;
  }
}

/* ============================================
   6. TIPOGRAFÍA DISPLAY (Playfair Display)
   ============================================ */
.slogan {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.2em, 6vw, 4.2em);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================
   FIXES GENERALES (hardcode donde dark mode no debe tocar)
   ============================================ */

/* Nav links SIEMPRE blancos en el header negro */
.header .nav a {
  color: rgba(255, 255, 255, 0.85) !important;
}
.header .nav a:hover,
.header .nav a.active {
  color: #ffffff !important;
}

/* Hero: textos hardcode white */
.hero,
.hero .subtitulo,
.hero .hero-badge {
  color: #ffffff;
}
.hero .subtitulo {
  color: rgba(255, 255, 255, 0.85);
}

/* Btn secundario: texto siempre blanco (sobre fondo oscuro del hero) */
.btn-secundario {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-secundario:hover {
  color: #ffffff !important;
  border-color: #ffffff;
}

/* Footer: hardcode dark para que dark mode no lo pise */
.footer {
  background: #0a0a0a !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.footer-col h4 {
  color: #ffffff !important;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer-col a:hover {
  color: #ffffff !important;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer-cerrado {
  color: rgba(255, 255, 255, 0.35) !important;
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4) !important;
}
.footer-bottom strong {
  color: #ffffff !important;
}
.footer-bottom a,
.marca-agua a {
  color: #e63946 !important;
}

/* FAQ: botones hardcode dark */
.faq-question {
  background: #1a1a1a !important;
  color: #ffffff !important;
}
.faq-question:hover {
  background: #2a2a2a !important;
}

/* Frase marca: siempre blanca */
.frase-marca {
  background: #111111 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Horario banner: hardcode parallax — NUNCA debe tener transform */
.horario-banner {
  background-attachment: fixed !important;
  /* Sin transform para preservar el parallax */
}
@media (max-width: 768px) {
  .horario-banner {
    background-attachment: scroll !important;
  }
}
/* .horario-banner NO usa fade-in (el transform rompe background-attachment:fixed) */
.horario-banner.fade-in,
.horario-banner.fade-in.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stats strip: hardcode dark */
.stats-strip {
  background: #111111 !important;
}
.stat-label {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* WhatsApp flotante: nunca se mueve */
.btn-flotante {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  transform: none !important;
}
.btn-flotante:hover {
  transform: translateY(-3px) !important;
}

/* Header carrito icon */
.header .carrito {
  color: rgba(255, 255, 255, 0.85) !important;
}
.header .carrito:hover {
  color: #ffffff !important;
}

/* Contacto cards: layout correcto con icon + info en fila */
.item-contacto {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 1em !important;
  padding: 1.5em !important;
}
.item-contacto i {
  font-size: 1.8em !important;
  color: var(--rojo) !important;
  min-width: 36px;
  text-align: center;
  margin-top: 0.1em;
  flex-shrink: 0;
}
.info-contacto {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  min-width: 0;
}
.info-contacto h3 {
  font-size: 0.95em !important;
  color: var(--negro-suave) !important;
  word-break: break-word;
  margin: 0;
  font-weight: 600;
}
.info-contacto a {
  color: var(--rojo) !important;
  font-weight: 500;
  font-size: 0.88em;
  word-break: break-word;
}
.info-contacto a:hover {
  text-decoration: underline;
}

/* ============================================
   7. MODO OSCURO
   ============================================ */
[data-theme="dark"] {
  --blanco: #1c1c1e;
  --negro: #f5f5f7;
  --negro-suave: #f0f0f0;
  --crema: #2c2c2e;
  --gris-claro: #3a3a3c;
  --gris-medio: #242426;
  --gris-texto: #a1a1a6;
  --gris-sutil: #636366;
  --sombra-suave: 0 4px 20px rgba(0, 0, 0, 0.4);
  --sombra-media: 0 8px 30px rgba(0, 0, 0, 0.55);
  --sombra-fuerte: 0 16px 48px rgba(0, 0, 0, 0.65);
}

/* Forzar color de texto en dark mode para elementos específicos */
[data-theme="dark"] .frase-marca {
  background: #111;
}

[data-theme="dark"] .ayuda-pago {
  background: #1e1e1e;
}

[data-theme="dark"] .ayuda-pago h3 {
  color: #fff;
}

[data-theme="dark"] .ayuda-pago p {
  color: #cccccc;
}

[data-theme="dark"] .horario-banner::before {
  background: rgba(0, 0, 0, 0.75);
}

[data-theme="dark"] .hero::before {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(0, 0, 0, 0.60) 50%,
    rgba(0, 0, 0, 0.80) 100%
  );
}

[data-theme="dark"] .stats-strip {
  background: #111;
}

[data-theme="dark"] .faq-question {
  background: #2a2a2c;
}

[data-theme="dark"] .faq-question:hover {
  background: #333;
}

[data-theme="dark"] .testimonio,
[data-theme="dark"] .testimonio-interno {
  background: #2c2c2e;
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #2a2a2c;
  color: #f0f0f0;
  border-color: #444;
}

/* Botón dark mode */
.btn-dark-mode {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transicion), color var(--transicion), background var(--transicion);
  flex-shrink: 0;
}

.btn-dark-mode:hover {
  border-color: var(--rojo);
  color: var(--rojo);
  background: rgba(230, 57, 70, 0.1);
}

/* ============================================
   1. ANIMACIONES DE SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays para stagger de grids */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }
.stagger-6 { transition-delay: 0.55s; }

/* ============================================
   5. STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--negro-suave);
  color: var(--blanco);
  padding: 3.5em 1.5em;
  text-align: center;
}

[data-theme="dark"] .stats-strip {
  background: #111;
}

/* cuando el body es claro, el strip usa negro-suave = #111 */
body:not([data-theme="dark"]) .stats-strip {
  background: #111;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2em;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
}

.stat-numero-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.2em, 5vw, 3.2em);
  color: var(--rojo);
  line-height: 1;
}

.stat-suffix {
  font-size: 0.55em;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--rojo);
  align-self: flex-end;
  padding-bottom: 0.2em;
}

.stat-label {
  font-size: 0.88em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ============================================
   8. SKELETON LOADING
   ============================================ */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-card {
  background: var(--gris-claro);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
}

.skeleton-img {
  width: 100%;
  height: 210px;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

[data-theme="dark"] .skeleton-img {
  background: linear-gradient(90deg, #2a2a2c 25%, #3a3a3c 50%, #2a2a2c 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  margin: 0.8em 1em 0;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

[data-theme="dark"] .skeleton-line {
  background: linear-gradient(90deg, #2a2a2c 25%, #3a3a3c 50%, #2a2a2c 75%);
  background-size: 200% 100%;
}

.skeleton-line.short  { width: 55%; margin: 0.6em auto 0; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.long   { width: 90%; }

.skeleton-btn {
  height: 38px;
  border-radius: 50px;
  width: calc(100% - 2em);
  margin: 1em auto;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

[data-theme="dark"] .skeleton-btn {
  background: linear-gradient(90deg, #2a2a2c 25%, #3a3a3c 50%, #2a2a2c 75%);
  background-size: 200% 100%;
}

/* ============================================
   9. MICROINTERACCIÓN BOTÓN CARRITO
   ============================================ */
@keyframes btn-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.92); }
  70%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.btn-carrito.agregado {
  background: #2a9d3f;
  pointer-events: none;
  animation: btn-pop 0.35s ease;
}

.btn-carrito.agregado::before {
  content: '✓ ';
}

/* ============================================
   2. CONTADORES ANIMADOS — estilos ya en stats-strip
   ============================================ */

/* ============================================
   SCROLL PROGRESS BAR (bonus)
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--rojo);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================
   ADDITIONS FOR LARAVEL VERSION
   ============================================ */

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Category filter buttons */
.tienda-categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8em;
    padding: 1em 2em;
    margin-bottom: 1em;
}

.cat-btn {
    background: var(--gris-claro, #f5f5f5);
    border: 2px solid transparent;
    padding: 0.5em 1.5em;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gris-texto, #444);
}
.cat-btn:hover {
    border-color: var(--rojo, #e63946);
    color: var(--rojo, #e63946);
}
.cat-btn.active {
    background: var(--rojo, #e63946);
    color: #fff;
    border-color: var(--rojo, #e63946);
}

[data-theme="dark"] .cat-btn {
    background: #2c2c2e;
    color: #ccc;
}
[data-theme="dark"] .cat-btn.active {
    background: var(--rojo);
    color: #fff;
}

/* FAQ answer animation — handled by first .faq-answer rule above */

/* Carrito btn styles */
.btn-carrito {
    background: var(--rojo, #e63946);
    color: #fff;
    border: none;
    padding: 0.5em 1.2em;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: 0.5em;
}
.btn-carrito:hover {
    background: var(--rojo-hover, #c1121f);
}

.btn-principal {
    background: var(--rojo, #e63946);
    color: white;
    border: none;
    padding: 0.6em 1.2em;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}
.btn-principal:hover {
    background: var(--rojo-hover, #c1121f);
}

/* Tienda productos grid */
.tienda-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2em;
    padding: 0 2em 3em;
    max-width: var(--max-ancho, 1200px);
    margin: 0 auto;
}
