/* ============================================================
   SUSHI YOKAI – ESTILOS
   Ref imagen 1: portada blanca/marfil con olas grises y dorado fino
   Ref imagen 2: fondo negro profundo, olas crema/foil dorado, marco ornamental
============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  /* ── Negros / fondos oscuros ── */
  --ink:        #0b0b0b;    /* Negro absoluto */
  --ink2:       #111111;    /* Negro fondo hero */
  --ink3:       #1a1a1a;    /* Negro suave */
  --ink4:       #242424;    /* Negro medio */

  /* ── Blancos / cremas (imagen 1) ── */
  --ivory:      #f7f5f1;    /* Marfil portada */
  --ivory2:     #f0ece4;    /* Marfil cálido */
  --cream:      #f6eed9;    /* Crema olas imagen 2 */
  --white:      #ffffff;

  /* ── Dorados (ambas imágenes) ── */
  --gold:       #c9a750;    /* Dorado principal */
  --gold2:      #e3c56a;    /* Dorado claro/brillante */
  --gold3:      #a67c2e;    /* Dorado oscuro/profundo */
  --gold4:      #f5e0a0;    /* Dorado pálido/reflejo */
  --gold-pale:  #f7f0dc;    /* Dorado muy suave (fondos) */

  /* ── Grises (olas imagen 1) ── */
  --gray1:      #d9d9d9;
  --gray2:      #afafaf;
  --gray3:      #6f6f6f;
  --gray4:      #3d3d3d;

  /* ── Texto ── */
  --text-dark:  #0d0d0d;
  --text-mid:   #3d3d3d;
  --text-soft:  #6f6f6f;
  --text-pale:  #afafaf;

  /* ── WhatsApp ── */
  --wa:         #25d366;
  --wa-dark:    #128c7e;
  --danger:     #b83232;

  /* ── Herramientas ── */
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 8px 40px rgba(0,0,0,0.18);
  --shadow-lg:  0 20px 80px rgba(0,0,0,0.32);
  --shadow-gold: 0 0 40px rgba(201,167,80,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Fuentes ── */
  --f-main:   'Inter', sans-serif;
  --f-karate: 'Karate', sans-serif;
  --f-serif:  'Playfair Display', serif;

  /* ── Aliases para JS legacy ── */
  --primary:    var(--ink3);
  --accent:     var(--gold);
  --accent2:    var(--gold2);
  --teal:       var(--gold3);
  --teal-light: var(--gold);
  --sand:       var(--gold-pale);
  --sand2:      var(--ivory2);
  --text:       var(--text-dark);
  --text-light: var(--text-soft);
  --red:        var(--danger);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-main);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--ink2);
  color: var(--gold2);
  border-color: var(--gold3);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold4) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold2);
  border-color: rgba(201,167,80,0.5);
}
.btn-outline:hover {
  background: rgba(201,167,80,0.1);
  border-color: var(--gold2);
  color: var(--gold2);
}
.btn-outline.dark {
  color: var(--ink3);
  border-color: var(--gray3);
}
.btn-outline.dark:hover {
  background: var(--ink3);
  color: var(--gold2);
  border-color: var(--ink3);
}
.btn-sm  { padding: 8px 18px; font-size: 0.83rem; }
.btn-lg  { padding: 15px 34px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header.left { text-align: left; }

/* Mode claro (sobre fondos blancos/crema) */
.section-header .section-tag {
  display: inline-block;
  background: rgba(201,167,80,0.1);
  color: var(--gold3);
  border: 1px solid rgba(201,167,80,0.25);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-header .section-title {
  font-family: var(--f-karate);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink2);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: 2px;
}
.section-header .section-desc {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header.left .section-desc { margin: 0; }

/* Mode oscuro (sobre fondos negros) */
.section-header.light .section-tag {
  background: rgba(201,167,80,0.15);
  color: var(--gold2);
  border-color: rgba(201,167,80,0.3);
}
.section-header.light .section-title { color: var(--cream); }
.section-header.light .section-desc  { color: rgba(246,238,217,0.7); }

/* Separador dorado decorativo */
.section-header .gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}
.section-header.left .gold-rule { margin-left: 0; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(201,167,80,0.2), 0 8px 40px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LOGO */
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-text {
  font-family: var(--f-karate);
  font-size: 1.45rem;
  letter-spacing: 5px;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.logo-text span { color: var(--gold2); }
/* Línea dorada bajo logo */
.nav-logo::after {
  display: none;
}

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-main);
}
.nav-link:hover { color: var(--gold2); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-drop-btn { display: flex; align-items: center; gap: 5px; }
.nav-arrow { font-size: 0.6rem; transition: transform 0.3s ease; opacity: 0.6; }
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  /* Imagen 2: fondo negro con borde dorado */
  background: var(--ink2);
  border: 1px solid rgba(201,167,80,0.3);
  border-radius: var(--radius-sm);
  min-width: 210px;
  padding: 6px 0;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,167,80,0.1) inset;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Flecha decorativa */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--ink2);
  border-left: 1px solid rgba(201,167,80,0.3);
  border-top: 1px solid rgba(201,167,80,0.3);
}
/* Línea dorada top del menú */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,167,80,0.4), transparent);
}

.nav-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(246,238,217,0.8);
  font-size: 0.86rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-drop-item:hover {
  background: rgba(201,167,80,0.08);
  color: var(--gold2);
  padding-left: 24px;
}
.nav-drop-item i {
  width: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  opacity: 0.75;
}
/* Separador interno */
.nav-drop-divider {
  height: 1px;
  background: rgba(201,167,80,0.1);
  margin: 4px 0;
}

.nav-wa-btn {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  margin-left: 10px;
  letter-spacing: 0.2px;
}
.nav-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════════════════════════
   HERO  (inspirado en imagen 2: negro + olas doradas)
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink2);
}

/* Foto de fondo: imagen 2 */
.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url('../images/hero-waves.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  animation: heroZoom 20s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroZoom {
  0%   { transform: scale(1)    translateX(0%)   translateY(0%); }
  25%  { transform: scale(1.06) translateX(-1%)  translateY(-1%); }
  50%  { transform: scale(1.10) translateX(1%)   translateY(-2%); }
  75%  { transform: scale(1.06) translateX(-1%)  translateY(1%); }
  100% { transform: scale(1)    translateX(0%)   translateY(0%); }
}
/* Gradiente sobre la foto para legibilidad */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(11,11,11,0.72) 0%,
      rgba(11,11,11,0.42) 45%,
      rgba(11,11,11,0.78) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(201,167,80,0.12) 0%, transparent 65%);
}

/* Marco ornamental dorado (esquinas) — inspirado imagen 2 */
.hero-frame {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  z-index: 1;
}
.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(201,167,80,0.55);
  border-style: solid;
}
.hero-frame::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.hero-frame::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}
/* Esquinas restantes via JS-menos → pseudo en spans */
.hero-frame-tr,
.hero-frame-bl {
  position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(201,167,80,0.55);
  border-style: solid;
}
.hero-frame-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.hero-frame-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }

/* OLAS SVG animadas en la parte inferior */
.hero-waves { display: none; }
@keyframes waveAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 130px 28px 180px;
  margin: 0 auto;
  text-align: center;
}

/* Badge ubicación */
.hero-badge {
  display: inline-block;
  background: rgba(201,167,80,0.12);
  border: 1px solid rgba(201,167,80,0.4);
  color: var(--gold2);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

/* Título principal — estilo imagen 1: bold sans, condensado */
.hero-title {
  font-family: var(--f-karate);
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 6px;
  animation: fadeInUp 0.9s ease both;
  letter-spacing: 8px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 0 80px rgba(201,167,80,0.15);
}

/* Línea dorada bajo título (imagen 1) */
.hero-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 20px;
  animation: fadeInUp 1s ease both;
}
.hero-title-rule::before,
.hero-title-rule::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,167,80,0.7));
}
.hero-title-rule::after {
  background: linear-gradient(to left, transparent, rgba(201,167,80,0.7));
}
/* Círculo dorado central (imagen 1: pequeño punto solar) */
.hero-sun {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold2) 0%, var(--gold3) 100%);
  box-shadow: 0 0 16px rgba(201,167,80,0.7);
  flex-shrink: 0;
}

.hero-subtitle {
  font-family: var(--f-karate);
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
  animation: fadeInUp 1.05s ease both;
  letter-spacing: 4px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 0.97rem;
  color: rgba(246,238,217,0.78);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.9;
  animation: fadeInUp 1.1s ease both;
}
.hero-desc strong { color: var(--gold2); }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: fadeInUp 1.2s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 170px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(201,167,80,0.5);
  font-size: 1rem;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(22px);  } to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--ink2);
  border-top: 1px solid rgba(201,167,80,0.25);
  border-bottom: 1px solid rgba(201,167,80,0.25);
  padding: 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  color: rgba(246,238,217,0.72);
  font-size: 0.86rem;
  font-weight: 500;
  border-right: 1px solid rgba(201,167,80,0.12);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item i { color: var(--gold); font-size: 1rem; }
.feature-item:hover { color: var(--gold2); }

/* ═══════════════════════════════════════════════════════════
   MENÚ SECTION  (imagen 1: fondo marfil, toques dorados)
═══════════════════════════════════════════════════════════ */
.menu-section {
  padding: 100px 0 80px;
  background: var(--ivory);
  position: relative;
}
/* Ornamento corner dorado sutil */
.menu-section::before {
  content: '';
  position: absolute;
  top: 40px; right: 40px;
  width: 80px; height: 80px;
  border-top: 1px solid rgba(201,167,80,0.3);
  border-right: 1px solid rgba(201,167,80,0.3);
}
.menu-section::after {
  content: '';
  position: absolute;
  bottom: 40px; left: 40px;
  width: 80px; height: 80px;
  border-bottom: 1px solid rgba(201,167,80,0.3);
  border-left: 1px solid rgba(201,167,80,0.3);
}

/* Filtros */
.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  justify-content: center;
}
.cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--gray1);
  background: var(--white);
  color: var(--text-soft);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold3);
  background: var(--gold-pale);
}
.cat-btn.active {
  background: var(--ink2);
  border-color: var(--ink2);
  color: var(--gold2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.cat-btn i { font-size: 0.8rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  /* Borde dorado fino (imagen 1) */
  border: 1px solid rgba(201,167,80,0.2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,167,80,0.35);
  border-color: rgba(201,167,80,0.45);
}
.product-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.product-card-badge.hot { background: var(--danger); color: var(--white); }
.product-card-badge.veg { background: #3d8840; color: var(--white); }

/* Área de emoji (fallback sin imagen) */
.product-emoji {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 18px;
  background: linear-gradient(145deg, var(--ivory) 0%, var(--ivory2) 100%);
  min-height: 115px;
  position: relative;
}
.product-emoji::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,167,80,0.3), transparent);
}

/* Área de imagen real del producto */
.product-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img {
  transform: scale(1.07);
}
/* Línea dorada separadora bajo imagen */
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.7;
}
/* Emoji de fallback si imagen falla */
.product-emoji-fallback {
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--ivory) 0%, var(--ivory2) 100%);
}
/* Precio combo (no tachado) */
.product-price-combo {
  font-size: 0.83rem;
  color: var(--gold3);
  background: var(--gold-pale);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--ink2);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.81rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}
.desc-list {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
}
.desc-list li {
  color: var(--text-soft);
  font-size: 0.81rem;
  line-height: 1.6;
  padding: 1px 0;
  list-style-type: disc;
  marker-color: #111;
}
.desc-list li::marker {
  color: #111;
}
/* Modal desc list */
.desc ul.desc-list li {
  font-size: 0.92rem;
  color: var(--text);
}
.desc ul.desc-list li::marker {
  color: #111;
}
.product-prices { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.product-price {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--gold3);
}
.product-price-old {
  font-size: 0.83rem;
  color: var(--text-pale);
  text-decoration: line-through;
}
.product-price-note {
  font-size: 0.74rem;
  color: var(--text-pale);
  display: block;
  margin-bottom: 12px;
}
.product-actions { display: flex; gap: 8px; }
.product-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 9px 12px;
  font-size: 0.81rem;
}
.add-cart-btn {
  background: var(--ink2);
  color: var(--gold2);
  border-color: var(--ink2);
}
.add-cart-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: none;
  box-shadow: none;
}
.view-btn {
  background: transparent;
  border-color: var(--gray1);
  color: var(--text-soft);
}
.view-btn:hover {
  border-color: var(--gold);
  color: var(--gold3);
  transform: none;
  box-shadow: none;
}
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-pale);
  font-size: 1.1rem;
}
.no-results i { font-size: 3rem; margin-bottom: 16px; opacity: 0.25; display: block; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   PROMOCIONES  (imagen 2: negro + dorado + glassmorphism)
═══════════════════════════════════════════════════════════ */
.promos-section {
  padding: 100px 0;
  background: var(--ink2);
  position: relative;
  overflow: hidden;
}
/* Foto de fondo sutil */
.promos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-waves.jpg');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.07;
}
.promos-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201,167,80,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,167,80,0.07) 0%, transparent 50%);
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.promo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,167,80,0.22);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  color: var(--cream);
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Línea top dorada */
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,167,80,0.5), transparent);
}
.promo-card:hover {
  transform: translateY(-6px);
  background: rgba(201,167,80,0.07);
  border-color: rgba(201,167,80,0.45);
  box-shadow: var(--shadow-gold);
}
.promo-card.promo-featured {
  border-color: rgba(201,167,80,0.5);
  background: rgba(201,167,80,0.06);
}
.promo-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.8px;
}
.promo-emoji { font-size: 3rem; margin-bottom: 16px; }
.promo-card h3 {
  font-family: var(--f-karate);
  font-size: 1.22rem;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  color: var(--cream);
}
.promo-card p { font-size: 0.88rem; opacity: 0.7; margin-bottom: 16px; }
.promo-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 22px;
  text-shadow: 0 0 20px rgba(201,167,80,0.3);
}

/* ═══════════════════════════════════════════════════════════
   CLUB YOKAI
═══════════════════════════════════════════════════════════ */
.club-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.club-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,167,80,0.35), transparent);
}
.club-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: center;
}
.club-deco {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
/* Círculo dorado animado (imagen 2: gran círculo central) */
.club-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,167,80,0.25);
  position: absolute;
  animation: rotateSlow 24s linear infinite;
}
.club-circle::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(201,167,80,0.12);
}
/* Punto solar dorado (imagen 1) */
.club-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--gold2) 0%, var(--gold3) 70%);
  box-shadow: 0 0 40px rgba(201,167,80,0.3), 0 0 80px rgba(201,167,80,0.12);
  position: relative;
  z-index: 1;
}
@keyframes rotateSlow { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }

.club-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}
.benefit-item:hover {
  background: var(--gold-pale);
  border-color: rgba(201,167,80,0.2);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ink2);
  border: 1px solid rgba(201,167,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.benefit-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink2);
  margin-bottom: 3px;
}
.benefit-item p { font-size: 0.83rem; color: var(--text-soft); }

/* ═══════════════════════════════════════════════════════════
   MAPA
═══════════════════════════════════════════════════════════ */
.map-section {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
}
.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px;
  align-items: stretch;
  min-height: 420px;
}
.map-info { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.map-info-item { display: flex; align-items: flex-start; gap: 14px; }
.map-info-item i {
  width: 40px; height: 40px;
  background: var(--ink2);
  color: var(--gold);
  border: 1px solid rgba(201,167,80,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.map-info-item strong { display: block; font-size: 0.9rem; color: var(--ink2); margin-bottom: 2px; }
.map-info-item span  { font-size: 0.84rem; color: var(--text-soft); }
.map-btn { margin-top: 8px; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  border: 1px solid rgba(201,167,80,0.25);
}
.map-embed iframe { border-radius: var(--radius); height: 100%; min-height: 380px; }

/* ═══════════════════════════════════════════════════════════
   REDES SOCIALES
═══════════════════════════════════════════════════════════ */
.social-section { padding: 80px 0; background: var(--white); }
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 20px;
  border-radius: var(--radius);
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.social-card:hover::before { opacity: 1; }
.social-card i    { font-size: 2.4rem; }
.social-card span { font-weight: 700; font-size: 1rem; }
.social-card small { font-size: 0.78rem; opacity: 0.8; }
.social-card.facebook  { background: linear-gradient(135deg, #1877f2, #166fe5); }
.social-card.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.whatsapp  { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); }
.social-card.google    { background: linear-gradient(135deg, #4285f4, #ea4335); }
.social-card.email     { background: linear-gradient(135deg, #c9a24a, #a07830); }

/* ═══════════════════════════════════════════════════════════
   OPINIONES
═══════════════════════════════════════════════════════════ */
.reviews-section { padding: 100px 0; background: var(--ivory); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,167,80,0.15);
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,167,80,0.35);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 18px;
  font-family: var(--f-serif);
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 12px; }
.review-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(201,167,80,0.3);
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--ink2); }
.review-date { font-size: 0.76rem; color: var(--text-pale); }
.reviews-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(246,238,217,0.65);
  padding: 80px 0 0;
  border-top: 1px solid rgba(201,167,80,0.25);
  position: relative;
}
/* Olas sutiles en footer */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-waves.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.04;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,167,80,0.12);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,167,80,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,238,217,0.55);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,167,80,0.3);
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--f-karate);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { font-size: 0.87rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold2); padding-left: 6px; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  margin-bottom: 10px;
}
.footer-contact p i { color: var(--gold); width: 16px; }
.footer-wa { margin-top: 16px; }
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════
   CARRITO FLOTANTE
═══════════════════════════════════════════════════════════ */
.cart-fab {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 58px; height: 58px;
  background: var(--ink2);
  border: 1px solid rgba(201,167,80,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold2);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 900;
  transition: var(--transition);
}
.cart-fab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--ink);
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.cart-count.hidden { display: none; }

/* WA FAB */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  z-index: 900;
  transition: var(--transition);
  animation: pulseFab 3.5s infinite;
}
.wa-fab:hover { background: var(--wa-dark); transform: scale(1.1); animation: none; }
@keyframes pulseFab {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 8px 48px rgba(37,211,102,0.8); }
}

/* ═══════════════════════════════════════════════════════════
   MODALES
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.show { opacity: 1; pointer-events: all; }

/* CARRITO */
.cart-modal {
  position: fixed;
  top: 0; right: -440px;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 60px rgba(0,0,0,0.4);
}
.cart-modal.open { right: 0; }
.cart-modal-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(201,167,80,0.3);
}
.cart-modal-header h3 {
  font-family: var(--f-karate);
  font-size: 1rem;
  font-weight: 400;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 2px;
  color: var(--gold2);
}
.cart-close {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: var(--danger); border-color: var(--danger); }
.cart-modal-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-pale); }
.cart-empty i { font-size: 2.8rem; opacity: 0.3; display: block; margin-bottom: 12px; color: var(--gold); }
.cart-empty p { font-size: 1.05rem; margin-bottom: 6px; }
.cart-empty small { font-size: 0.83rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ivory2);
}
.cart-item-emoji { font-size: 1.9rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name  { font-weight: 600; font-size: 0.88rem; color: var(--ink2); margin-bottom: 3px; }
.cart-item-price { font-size: 0.83rem; color: var(--gold3); font-weight: 700; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray1);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.qty-num { font-weight: 700; font-size: 0.88rem; min-width: 20px; text-align: center; }
.cart-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--ivory2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--ivory);
}
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; }
.cart-total strong { font-size: 1.45rem; color: var(--gold3); }
#sendOrderBtn, #clearCartBtn { width: 100%; justify-content: center; }

/* PRODUCT MODAL */
.product-modal {
  position: fixed; inset: 0;
  z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}
.product-modal.open { opacity: 1; pointer-events: all; }
.product-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,167,80,0.25);
}
.product-modal.open .product-modal-content { transform: scale(1); }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.07);
  border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: var(--transition);
}
.modal-close:hover { background: var(--danger); color: var(--white); }
.product-modal-hero {
  background: var(--ink);
  text-align: center;
  font-size: 5rem;
  line-height: 1;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Imagen en el modal */
.product-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Emoji fallback en modal */
.product-modal-emoji {
  font-size: 5rem;
  padding: 40px 20px;
  background: linear-gradient(145deg, var(--ivory) 0%, var(--ivory2) 100%);
  width: 100%;
  text-align: center;
}
/* Línea dorada bajo imagen modal */
.product-modal-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.product-modal-body { padding: 24px; }
.product-modal-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold3);
  background: var(--gold-pale);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.product-modal-body h2 { font-size: 1.35rem; font-weight: 700; color: var(--ink2); margin-bottom: 8px; }
.product-modal-body .desc { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; }
.product-modal-note { font-size: 0.8rem; color: var(--text-pale); margin-bottom: 16px; }
.product-modal-price { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.modal-price-main { font-size: 1.75rem; font-weight: 800; color: var(--gold3); }
.modal-price-combo { font-size: 0.88rem; color: var(--gold3); background: var(--gold-pale); padding: 4px 12px; border-radius: 50px; font-weight: 600; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .club-wrapper { grid-template-columns: 1fr; }
  .club-deco { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-embed { min-height: 300px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 84%; max-width: 340px;
    height: 100vh;
    background: var(--ink);
    border-left: 1px solid rgba(201,167,80,0.18);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 0 40px;
    transition: right 0.4s ease;
    z-index: 999; gap: 0;
    box-shadow: -8px 0 60px rgba(0,0,0,0.6);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-dropdown { width: 100%; }
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    padding: 14px 26px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.97rem;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1; pointer-events: all;
    background: rgba(255,255,255,0.025);
    border: none; border-radius: 0;
    box-shadow: none; padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 400px; }
  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after { display: none; }
  .nav-drop-item { padding: 11px 26px 11px 48px; font-size: 0.9rem; }
  .nav-wa-btn { margin: 16px 26px 0; width: calc(100% - 52px); justify-content: center; }
  .hamburger { display: flex; }

  .hero-frame,
  .hero-frame-tr,
  .hero-frame-bl { display: none; }
  .hero::after { display: none; }
  .hero-buttons .btn { font-size: 0.86rem; padding: 10px 18px; }

  .features-strip { justify-content: flex-start; overflow-x: auto; padding: 0; }
  .feature-item { flex-shrink: 0; padding: 14px 20px; }

  .menu-section::before,
  .menu-section::after { display: none; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .promos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; letter-spacing: 5px; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-buttons .btn { justify-content: center; }
  .promos-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   GOLD DIVIDER (línea decorativa)
═══════════════════════════════════════════════════════════ */
.gold-divider,
.gold-rule {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}
.section-header.left .gold-divider,
.section-header.left .gold-rule { margin-left: 0; }

/* ═══════════════════════════════════════════════════════════
   OLAS DECO MENÚ (SVG wave superior)
═══════════════════════════════════════════════════════════ */
.menu-wave-deco {
  display: none; /* decorativo opcional, desactivado */
}

/* ═══════════════════════════════════════════════════════════
   FORMULARIO CLUB YOKAI
═══════════════════════════════════════════════════════════ */
.club-form-wrapper {
  background: var(--ivory);
  border: 1px solid rgba(201,167,80,0.22);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 8px;
}
.club-form-title {
  font-family: var(--f-karate);
  font-size: 1.1rem;
  color: var(--ink2);
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.club-form-title i { color: var(--gold); }
.club-form-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}
.club-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group label i { color: var(--gold); font-size: 0.75rem; }
.form-group input {
  padding: 11px 14px;
  border: 1px solid var(--gray1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--f-main);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,167,80,0.1);
}
.form-group input::placeholder { color: var(--text-pale); }
.club-form-btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-privacy {
  font-size: 0.74rem;
  color: var(--text-pale);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-privacy i { color: var(--gold); font-size: 0.7rem; }

/* ── Utilities ───────────────────────────────────────────── */
.hidden { display: none !important; }
.fade-in { animation: fadeInUp 0.6s ease both; }
