@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;700&family=Dancing+Script:wght@700&display=swap');

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

:root {
  --bg: #0a0a0a;
  --gold: #C9A84C;
  --gold-light: #e8c86a;
  --white: #ffffff;
  --cream: #F5F0E8;
  --red: #CC0000;
  --gray: #888888;
  --card: #111111;
  --border: #222222;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 56px;    /* espacio para el nav fijo */
  padding-bottom: 65px; /* espacio para el bottom nav bar */
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%; max-width: none;
  z-index: 300;
  background: rgba(10,10,10,0.97);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8px 0.5rem 6px;
  height: auto;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
body { padding-top: 72px; padding-bottom: 0; }
/* Mobile: logo OCULTO en nav (va en el hero) */
.nav-logo { display: none; }
.nav-cta {
  display: none;
  background: var(--gold); color: #000;
  padding: 7px 16px; border-radius: 3px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.nav-desk-tabs {
  display: flex; gap: 0; width: 100%; justify-content: space-around;
}
.nav-dtab {
  background: transparent; border: none;
  color: #888; font-size: 9px; letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 2px; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
  white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.nav-dtab:hover { color: var(--white); }
.nav-dtab.active { color: var(--gold); }
.nav-bottle { width: 20px; height: 20px; display: block; opacity: 0.75; }
.nav-dtab.active .nav-bottle { opacity: 1; }
/* Bottom bar: eliminado en mobile (tenemos nav arriba) */
#bottom-bar { display: none !important; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.91);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* dynamic viewport para móvil */
  min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
  /* Rompe el max-width del body y ocupa todo el viewport */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Fades laterales a negro */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.78) 0%,
    transparent 22%,
    transparent 78%,
    rgba(0,0,0,0.78) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Video blur (fills entire background) */
.hero-video-blur {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(30px) brightness(0.4) saturate(1.4);
  transform: scale(1.15); /* avoid blur edges */
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video-blur.active { opacity: 1; }

/* Video principal (full screen, no gaps) */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.active { opacity: 0.85; }

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-img {
  width: 80%;
  max-width: 320px;
  margin: 0 auto 1.5rem;
  display: block;
  animation: fadeDown 1s ease forwards;
}

.hero-welcome {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 10vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 4vw, 1.4rem);
  color: var(--gold);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-pill {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-btns {
  display: flex; flex-direction: row; gap: 8px;
  animation: fadeUp 1s ease 0.9s both;
}

.btn-p {
  background: var(--gold); color: #000;
  padding: 8px 18px; font-weight: 700; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 3px;
}
.btn-o {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 0 18px rgba(201,168,76,0.35);
}
.btn-o:hover { opacity: 0.85; transform: translateY(-1px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll span { font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
section { padding: 2.5rem 1rem; }
#menu { padding: 0.5rem 1rem 1rem; }
#tab-polas, #tab-artesanales, #tab-comida, #tab-cocteles {
  scroll-margin-top: 60px;
}
.slabel { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.stitle { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.4rem, 5vw, 2.2rem); line-height: 1.15; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gline { width: 40px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; }

/* ── QUICK NAV ── */
.qnav { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.qnav-card {
  border: 1px solid var(--border);
  border-left: 3px solid var(--qc, var(--gold));
  border-radius: 6px; padding: 20px 18px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden; min-height: 90px;
  background:
    linear-gradient(to right, #111 30%, transparent 100%),
    radial-gradient(ellipse at 110% 50%, var(--qc-rgb, rgba(201,168,76,0.35)) 0%, transparent 70%);
}
.qnav-card:hover { transform: translateY(-2px); border-color: var(--qc, var(--gold)); }
.qnav-card:active { transform: translateY(0); }

/* Letra decorativa de fondo */
.qnav-card::after {
  content: var(--ql, 'P');
  position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem; line-height: 1;
  color: var(--qc, var(--gold)); opacity: 0.12;
  pointer-events: none; user-select: none;
}

.qnav-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--white); letter-spacing: 3px; line-height: 1; position: relative; z-index: 1; }
.qnav-desc { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; line-height: 1.4; position: relative; z-index: 1; }

.qnav-polas    { --qc: #c9a84c; --qc-rgb: rgba(201,168,76,0.3);  --ql: 'P'; }
.qnav-artes    { --qc: #7ab3d4; --qc-rgb: rgba(122,179,212,0.3); --ql: 'A'; }
.qnav-comida   { --qc: #e05c5c; --qc-rgb: rgba(224,92,92,0.3);   --ql: 'C'; }
.qnav-cocteles { --qc: #4acd8d; --qc-rgb: rgba(74,205,141,0.3);  --ql: 'C'; }

/* ── BOTTOM NAV BAR ── */
#bottom-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px;
  background: rgba(7,7,7,0.98); border-top: 1px solid #2a2a2a;
  display: flex; z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6px 4px 8px; background: transparent; border: none; cursor: pointer;
  color: #555; gap: 3px; transition: color 0.18s; -webkit-tap-highlight-color: transparent;
  position: relative;
}
.bnav-item::after {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: var(--gold); border-radius: 0 0 2px 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.bnav-item.active { color: var(--gold); }
.bnav-item.active::after { transform: scaleX(1); }
.bnav-item:active { opacity: 0.6; }
.bnav-icon { font-size: 1.1rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.bnav-icon svg { width: 17px; height: 17px; }
.bnav-label { font-size: 8px; letter-spacing: 1px; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 500; white-space: nowrap; }

/* ── MENU TABS ── */
.menu-tabs { display: flex; overflow-x: auto; gap: 6px; padding-bottom: 0.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--border); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.mtab { flex-shrink: 0; background: transparent; border: 1px solid var(--border); color: var(--gray); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 7px 14px; cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif; white-space: nowrap; }
.mtab.active, .mtab:hover { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 700; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; overflow-x: auto; gap: 6px; padding: 0.4rem 0 0.6rem; margin-bottom: 0.25rem; justify-content: center; flex-wrap: wrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.ftag { flex-shrink: 0; background: transparent; border: 1px solid var(--border); color: var(--gray); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; cursor: pointer; border-radius: 20px; font-family: 'Inter', sans-serif; white-space: nowrap; transition: all 0.2s; }
.ftag:hover { border-color: var(--gold); color: var(--gold); }
.ftag.active { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 700; }
.ftag-delirium { border-color: rgba(255,20,147,0.4); color: #ff4daa; }
.ftag-delirium:hover { border-color: #ff4daa; color: #ff4daa; background: rgba(255,20,147,0.08); }
.ftag-delirium.active { background: #ff4daa; color: #000; border-color: #ff4daa; }

/* ── CATEGORY HEADER (filter mode) ── */
#cat-header { padding: 1.2rem 1rem 0.6rem; text-align: center; }
.cat-h-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.cat-h-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); letter-spacing: 2px; line-height: 1; }
#cat-header .sec-line { width: 40px; height: 1.5px; background: var(--gold); opacity: 0.4; margin: 8px auto 0; }

/* ── CATEGORY FOOTER NAV (filter mode) ── */
#cat-footer-nav { padding: 2rem 0 1rem; text-align: center; }
.cat-footer-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); opacity: 0.5; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
#cat-footer-nav .filter-bar { border-top: 1px solid var(--border); padding-top: 0.8rem; margin-top: 0; }

/* Delirium section en modo filtro parcial (algunas coinciden) */
.delirium-section[data-filtered="none"] { display: none; }
.delirium-section[data-filtered="partial"] { background: transparent; border-color: transparent; padding: 0; margin-top: 0; }
.delirium-section[data-filtered="partial"] .del-label,
.delirium-section[data-filtered="partial"] .del-title,
.delirium-section[data-filtered="partial"] .del-line,
.delirium-section[data-filtered="partial"] .del-sub { display: none; }
.delirium-section[data-filtered="partial"]::before { display: none; }

/* ── SEC-WRAP: secciones coloreadas ── */
:root {
  --sec-gold:  #C9A84C;
  --sec-amber: #d4762a;
  --sec-pink:  #ff7a96;
  --sec-slate: #7ab3d4;
  --sec-green: #4acd8d;
  --sec-red:   #e05c5c;
  --sec-fire:  #ff6b35;
}
.sec-wrap {
  margin: 0.5rem 0 0.25rem;
  position: relative;
}
/* Fondo de imagen tileada + líneas de escáner sobre cada sección */
.sec-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 22px),
    var(--sec-tile, none);
  background-size: cover, auto, var(--sec-tile-size, 70px) auto;
  background-repeat: no-repeat, repeat, repeat;
  background-position: center, 0 0, center;
  pointer-events: none;
  z-index: 0;
  border-radius: 4px;
  opacity: 0.6;
}
.sec-wrap > * { position: relative; z-index: 1; }

.sec-gold  { --sc: var(--sec-gold);  }
.sec-amber { --sc: var(--sec-amber); }
.sec-pink  { --sc: var(--sec-pink);  }
.sec-slate { --sc: var(--sec-slate); }
.sec-green { --sc: var(--sec-green); }
.sec-red   { --sc: var(--sec-red);   }
.sec-fire  { --sc: var(--sec-fire);  }

.sec-header {
  padding: 1.4rem 0 0.5rem;
  border-top: 2px solid var(--sc, var(--gold));
  margin-top: 1rem;
}
.sec-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sc, var(--gold));
  margin-bottom: 5px;
  opacity: 0.9;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 10vw, 2.5rem);
  line-height: 0.93;
  color: #fff;
}
.sec-title em { font-style: normal; color: var(--sc, var(--gold)); }
.sec-line {
  width: 28px; height: 2px;
  background: var(--sc, var(--gold));
  margin-top: 9px; margin-bottom: 0;
  opacity: 0.7;
}

/* sec-cards: colapso UX */
.sec-cards { }
.sec-cards:not(.expanded) .beer-card[data-extra] { display: none; }
.sec-cards.expanded .sec-btn { display: none; }
/* El grid de resultados filtrados nunca colapsa */
#cat-results-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 1rem 1rem; }
#cat-results-grid .beer-card[data-extra] { display: flex !important; }

.sec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  margin: 4px 0 12px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 6px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.sec-btn:hover {
  background: rgba(201,168,76,0.20);
  border-color: var(--gold);
  color: var(--gold);
}

/* sec-header oculto en modo filtro */
.sec-header.filter-hidden { display: none; }

/* ── BEER CARD ── */
/* ── Card entrance animation ── */
@keyframes cardEnter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.beer-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 12px; display: flex; align-items: stretch; transition: border-color 0.2s, opacity 0.35s ease, transform 0.35s ease; position: relative; opacity: 0; transform: translateY(22px); }
.beer-card.card-in { opacity: 1; transform: translateY(0); }
.beer-card:hover { border-color: rgba(201,168,76,0.5); }
.beer-card.is-top { border-color: var(--gold); box-shadow: 0 0 18px rgba(201,168,76,0.18); }
.beer-card.is-top:hover { border-color: var(--gold); box-shadow: 0 0 28px rgba(201,168,76,0.32); }
.beer-top-badge { position: absolute; top: 8px; left: 8px; z-index: 2; background: var(--gold); color: #000; font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 2px; padding: 2px 8px; border-radius: 2px; }

/* Etiqueta NUEVA — solo la naranja, posicionada top-right */
.beer-new-badge {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  background: linear-gradient(135deg, #ff8c00, #ff6000);
  color: #fff;
  font-size: 8px; font-weight: 800; letter-spacing: 2.5px;
  padding: 3px 8px; border-radius: 3px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255,100,0,0.5);
}

/* Etiqueta PROMO — roja, encima de la imagen */
.beer-promo-badge {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  background: #e03535; color: #fff;
  font-size: 8px; font-weight: 800; letter-spacing: 2px;
  padding: 3px 8px; border-radius: 3px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(220,40,40,0.5);
}
/* Cuando hay NUEVA y PROMO al mismo tiempo: PROMO arriba, NUEVA debajo */
.beer-card.is-promo.is-new .beer-promo-badge { top: 8px; }
.beer-card.is-promo.is-new .beer-new-badge  { top: 30px; }

/* Precio tachado (precio anterior) */
.price-old {
  font-size: 10px; color: #666;
  text-decoration: line-through;
  margin-right: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Etiqueta AGOTADA — banda en la parte inferior, blur suave */
.beer-card.is-sold { pointer-events: none; }
.beer-card.is-sold .beer-img,
.beer-card.is-sold .beer-info { filter: blur(1px) brightness(0.7); }
.beer-card.is-sold::after {
  content: 'AGOTADA';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem; letter-spacing: 5px; color: rgba(255,255,255,0.9);
  background: rgba(130, 0, 0, 0.82);
  backdrop-filter: blur(2px);
  z-index: 5;
  border-radius: 0 0 8px 8px;
}
.beer-img { width: 90px; min-width: 90px; background: #1a1008; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.beer-img img { width: 100%; height: 100%; object-fit: cover; }
.beer-img .ph { font-size: 2.5rem; }
.beer-info { flex: 1; padding: 12px; }
.beer-badge { display: inline-block; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; padding: 2px 7px; border-radius: 2px; margin-bottom: 5px; }
.bd { background: rgba(201,168,76,0.15); color: var(--gold); }
.bo { background: rgba(80,40,0,0.4); color: #e8a04a; }
.ba { background: rgba(0,100,60,0.2); color: #4acd8d; }
.bf { background: rgba(200,50,80,0.2); color: #ff7a96; }
.bpink { background: rgba(255, 20, 147, 0.18); color: #ff4daa; border: 1px solid rgba(255,20,147,0.3); }

/* ── DELIRIUM SECTION ── */
.delirium-section {
  background:
    linear-gradient(160deg, rgba(14,0,9,0.93) 0%, rgba(10,0,7,0.88) 100%),
    repeating-linear-gradient(0deg, rgba(255,20,147,0.04) 0px, rgba(255,20,147,0.04) 1px, transparent 1px, transparent 18px);
  border: 1px solid rgba(255, 20, 147, 0.25);
  border-radius: 8px;
  margin: 1.5rem 0 0.5rem;
  padding: 1.5rem 1rem 0.5rem;
  position: relative;
  overflow: hidden;
}
/* Elefante decorativo grande — ahora como imagen real de la marca */
.del-elephant-bg {
  position: absolute;
  top: -10px; right: -20px;
  width: 140px; height: auto;
  opacity: 0.07;
  transform: rotate(10deg) scaleX(-1);
  pointer-events: none;
  filter: grayscale(1);
}
/* Elefante inline en el título */
.del-elephant-icon {
  height: 2.2rem; width: auto;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(255,77,170,0.6));
}
.del-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: #ff4daa; margin-bottom: 5px; }
.del-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 7vw, 3rem); line-height: 1.05; color: #fff; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.del-title em { color: #ff4daa; font-style: normal; }
.del-line { width: 40px; height: 3px; background: linear-gradient(90deg, #ff4daa, transparent); margin-bottom: 10px; }
.del-sub { font-size: 11px; color: #888; line-height: 1.55; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,20,147,0.15); margin-bottom: 0.5rem; }

.beer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--white); letter-spacing: 1px; line-height: 1.1; }
.beer-origin { font-size: 10px; color: var(--gold); letter-spacing: 1px; margin: 2px 0 4px; }
.beer-desc { font-size: 11px; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.beer-foot { display: flex; align-items: center; justify-content: space-between; }
.abv-vol { display: flex; flex-direction: column; gap: 2px; }
.abv { font-size: 10px; color: var(--gray); border: 1px solid var(--border); padding: 2px 6px; border-radius: 2px; }
.vol { font-size: 9px; color: var(--gray); opacity: 0.6; letter-spacing: 0.5px; padding-left: 1px; }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--gold); }

/* ── FOOD GRID ── */
#tab-comida, #tab-cocteles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 1rem 0;
}
.sdiv {
  grid-column: 1 / -1;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--gray);
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0.8rem 0 0.3rem; border-top: 1px solid var(--border); margin-top: 0.5rem;
  display: flex; align-items: center; gap: 10px;
}
.sdiv::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.sdiv:first-child { border-top: none; margin-top: 0; }

/* ── FOOD CARD ── */
.food-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.food-card.card-in { opacity: 1; transform: translateY(0); }
.food-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.food-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Cards con SVG placeholder: layout horizontal compacto (ícono + texto) */
.food-card:has(.food-img img[src$=".svg"]) {
  flex-direction: row;
  align-items: center;
  grid-column: 1 / -1; /* ocupa todo el ancho, no la mitad del grid */
}
.food-card:has(.food-img img[src$=".svg"]) .food-img {
  width: 64px;
  min-width: 64px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.food-card:has(.food-img img[src$=".svg"]) .food-img img {
  object-fit: contain;
  background: #111;
  padding: 0.8rem;
  width: 100%;
  height: 100%;
}
.food-body { padding: 0.75rem; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.food-cat { font-size: 9px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.food-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; color: var(--white); letter-spacing: 1px; line-height: 1.1; }
.food-desc { font-size: 10px; color: var(--gray); line-height: 1.4; margin-top: 2px; flex: 1; }
.food-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--gold); margin-top: 6px; }

/* ── EVENTOS ── */
.event-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.ev-header { padding: 1.2rem 1rem 1rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ev-date { background: var(--gold); color: #000; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; line-height: 1; padding: 8px 14px; border-radius: 3px; text-align: center; min-width: 60px; flex-shrink: 0; }
.ev-date small { display: block; font-size: 0.6rem; letter-spacing: 2px; }
.ev-info { flex: 1; }
.ev-type { font-size: 9px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 4px; }
.ev-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--white); line-height: 1; margin-bottom: 3px; }
.ev-band { font-size: 12px; color: var(--gray); }
.ev-footer { border-top: 1px solid var(--border); padding: 10px 1rem; display: flex; align-items: center; justify-content: space-between; }
.ev-cover { font-size: 13px; color: var(--cream); }
.ev-cover strong { color: var(--gold); }
.ev-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; cursor: pointer; font-family: 'Inter', sans-serif; }
.ev-btn:hover, .ev-btn:active { background: var(--gold); color: #000; }

/* ── RESERVAS ── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; background: #111; border: 1px solid var(--border); color: var(--white); padding: 12px 14px; border-radius: 4px; font-size: 15px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select option { background: #111; color: var(--white); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wa-btn { width: 100%; background: #25D366; color: #fff; padding: 16px; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px; }
.wa-btn:hover, .wa-btn:active { background: #1ebe5c; }
.wa-svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ── LOCATION ── */
.loc-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.loc-map { height: 150px; background: linear-gradient(135deg, #0d1a0d, #1a2d0d); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border-bottom: 1px solid var(--border); }
.loc-rows { padding: 1rem; }
.loc-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.loc-row:last-child { border-bottom: none; }
.loc-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.loc-lbl { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px; }
.loc-val { font-size: 13px; color: var(--cream); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: #050505; border-top: 1px solid var(--border); padding: 2rem 1rem 5rem; text-align: center; }
.ft-logo img { height: 36px; width: auto; margin: 0 auto 0.5rem; display: block; }
.ft-sub { font-family: 'Dancing Script', cursive; color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.ft-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.ft-links a { font-size: 10px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; text-decoration: none; cursor: pointer; }
.ft-links a:hover { color: var(--gold); }
.ft-copy { font-size: 10px; color: #444; letter-spacing: 1px; }

/* ── FLOATING WA ── */
.float-wa { position: fixed; bottom: 20px; right: 20px; z-index: 200; background: #25D366; color: #fff; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

/* ════════════════════════════════════════════
   MENU BANNERS — Comidas & Cocteles
════════════════════════════════════════════ */
.menu-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.8rem;
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}

/* Patrón diamante repetido */
.menu-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 28px);
  pointer-events: none;
}

/* Emoji decorativo gigante a la derecha */
.mb-deco {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.mb-inner { position: relative; z-index: 1; }
.mb-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mb-color, var(--gold));
  margin-bottom: 6px;
  opacity: 0.8;
}
.mb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
}
.mb-title em {
  font-style: normal;
  color: var(--mb-color, var(--gold));
}
.mb-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  letter-spacing: 1px;
}
.mb-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--mb-color, var(--gold));
  border-radius: 12px 0 0 12px;
}

/* Comidas — imagen de burgers repetida con líneas */
.comida-banner {
  --mb-color: #e8963a;
  background:
    linear-gradient(135deg, rgba(26,14,0,0.93) 0%, rgba(10,8,0,0.90) 100%),
    repeating-linear-gradient(0deg, rgba(232,150,58,0.04) 0px, rgba(232,150,58,0.04) 1px, transparent 1px, transparent 20px);
  border: 1px solid rgba(232,150,58,0.2);
}

/* Cocteles — imagen repetida con líneas verdes */
.cocteles-banner {
  --mb-color: #4acd8d;
  background:
    linear-gradient(135deg, rgba(0,21,9,0.93) 0%, rgba(0,10,5,0.90) 100%),
    repeating-linear-gradient(0deg, rgba(74,205,141,0.04) 0px, rgba(74,205,141,0.04) 1px, transparent 1px, transparent 20px);
  border: 1px solid rgba(74,205,141,0.2);
}

/* ════════════════════════════════════════════
   PARALLAX BAR PHOTO — separador entre secciones
════════════════════════════════════════════ */
.parallax-bar {
  position: relative;
  min-height: 200px;
  margin: 3.5rem 0 0.5rem;
  border-radius: 12px;
  /* overflow:hidden rompe background-attachment:fixed en Chrome — usar clip-path */
  clip-path: inset(0 round 12px);
  display: flex; align-items: flex-end;
}
.parallax-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/bg-bar-photo.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.parallax-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.45) 40%,
    rgba(10,10,10,0.85) 100%
  );
}
.parallax-bar-inner {
  position: relative; z-index: 2;
  padding: 1.2rem 1.5rem;
  width: 100%;
}
.parallax-bar-label {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); opacity: 0.9; margin-bottom: 4px;
}
.parallax-bar-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem; color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ════════════════════════════════════════════
   LAS FAVORITAS — Dark con líneas rosadas
════════════════════════════════════════════ */
.sec-wrap.sec-pink {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0.5rem 0;
  /* Dos líneas rosadas: arriba y abajo */
  border-top: 1.5px solid rgba(255, 80, 150, 0.38);
  border-bottom: 1.5px solid rgba(255, 80, 150, 0.38);
  border-left: none;
  border-right: none;
  overflow: visible;
}

/* Sin parallax: la foto de fondo no se necesita más */
.sec-wrap.sec-pink::before { display: none; }

/* Texto del header: dorado para sec-label, blanco para título */
.sec-wrap.sec-pink .sec-header {
  border-top: none;
  padding-top: 1rem;
}
.sec-wrap.sec-pink .sec-label { color: rgba(255, 110, 170, 0.85); }
.sec-wrap.sec-pink .sec-title { color: var(--white); }
.sec-wrap.sec-pink .sec-title em { color: rgba(255, 110, 170, 0.9); font-style: normal; }
.sec-wrap.sec-pink .sec-line { background: linear-gradient(90deg, rgba(255,80,150,0.5), transparent); }

/* Tarjetas: mantienen el estilo dark normal — sin override necesario */
.sec-wrap.sec-pink .beer-card { background: var(--card); border-color: var(--border); }
.sec-wrap.sec-pink .beer-card:hover { border-color: rgba(255,80,150,0.35); }
.sec-wrap.sec-pink .beer-origin { color: rgba(255,110,170,0.7); }
.sec-wrap.sec-pink .price { color: var(--gold); }


/* ════════════════════════════════════════════
   DESKTOP — 768px+
════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* ── BODY ── */
  body { max-width: 1200px; padding-bottom: 0; padding-top: 64px; }

  /* ── NAV DESKTOP ── */
  nav {
    flex-direction: row !important;
    height: 64px !important;
    padding: 0 2.5rem !important;
    justify-content: space-between !important;
  }
  .nav-logo { display: flex !important; width: auto !important; margin-bottom: 0 !important; }
  .nav-logo img { height: 40px; }
  .nav-cta { display: block !important; }
  .nav-desk-tabs {
    display: flex !important; gap: 2px !important;
    width: auto !important; justify-content: center !important;
    overflow: visible !important;
  }
  .nav-dtab {
    color: #666; font-size: 11px; letter-spacing: 1.5px;
    padding: 8px 18px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-dtab:hover { color: var(--white); background: rgba(255,255,255,0.05); }
  .nav-dtab.active { color: var(--gold); }

  /* ── BOTTOM BAR: solo mobile ── */
  #bottom-bar { display: none; }

  /* ── HERO ── */
  #hero { min-height: 92vh; }
  .hero-content {
    bottom: 14%; left: 8%;
    max-width: 600px;
  }
  .hero-title { font-size: clamp(3.5rem, 8vw, 6.5rem); }
  .hero-tagline { font-size: clamp(3.5rem, 6vw, 5.5rem); letter-spacing: 3px; }

  /* ── SECTIONS padding ── */
  section { padding: 5rem 6%; }
  #about  { padding: 4rem 6%; }
  #menu   { padding: 0.5rem 6% 1rem; }
  #events { padding: 5rem 6%; }
  #reservas { padding: 5rem 6%; }
  #location { padding: 5rem 6%; }

  /* ── QUICK NAV: 4 columnas ── */
  .qnav { flex-direction: row; gap: 16px; }
  .qnav-card { flex: 1; min-height: 110px; padding: 24px 20px; }
  .qnav-name { font-size: 2rem; }
  .qnav-card::after { font-size: 9rem; }

  /* ── SECTION HEADERS ── */
  .sec-title { font-size: clamp(2.8rem, 4vw, 4.5rem); }
  .sec-header { padding: 2rem 0 0.8rem; }

  /* ── DELIRIUM title ── */
  .del-title { font-size: clamp(3.5rem, 7vw, 6rem); }

  /* ── BEER CARDS: grid 3 col, todas visibles, sin ver-más ── */
  .sec-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  .sec-cards .beer-card { margin-bottom: 0; }
  .sec-btn { display: none !important; }
  .sec-cards .beer-card[data-extra] { display: flex !important; }

  /* ── BEER IMG más ancho en desktop ── */
  .beer-img { width: 110px; min-width: 110px; }

  /* ── DELIRIUM cards: 3 col ── */
  .delirium-section .sec-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* ── FOOD GRID: 3 col desktop ── */
  #tab-comida, #tab-cocteles { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

  /* ── EVENTOS: grid 2 col ── */
  #events .event-card { max-width: 100%; }

  /* ── FOOTER ── */
  footer { padding: 3rem 6%; }
  .ft-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── FLOATING WA: sube encima del bottom bar (que no existe) ── */
  .float-wa { bottom: 28px; right: 28px; width: 60px; height: 60px; }
}

/* ══════════════════════════════════════════════════════════
   PROMO POPUP (modal de bienvenida aleatorio)
   ══════════════════════════════════════════════════════════ */
#promo-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
#promo-overlay.open { opacity: 1; pointer-events: all; }

/* Caja de la modal — más pequeña, overflow hidden para recortar imagen */
#promo-box {
  position: relative;
  max-width: 300px; width: 100%;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.9);
  transform: scale(0.92); transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
#promo-overlay.open #promo-box { transform: scale(1); }

/* Imagen ocupa todo el box */
#promo-img { width: 100%; display: block; }

/* ── Botón CERRAR — esquina superior derecha, sobre la imagen ── */
#promo-close {
  position: absolute; top: 10px; right: 10px;
  background: #e03535;
  color: #fff; border: 2.5px solid rgba(255,255,255,0.9); border-radius: 50%;
  width: 36px; height: 36px; font-size: 15px; font-weight: 900;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6); line-height: 1;
}
#promo-close:hover { background: #c51f1f; transform: scale(1.1); }

/* ── Botón ACCIÓN — parte baja de la imagen, centrado ── */
#promo-btn {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  text-decoration: none; border-radius: 4px; white-space: nowrap;
  padding: 11px 26px; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  box-shadow: 0 3px 14px rgba(0,0,0,0.5);
  transition: opacity 0.2s, transform 0.15s;
}
#promo-btn:hover { opacity: 0.9; transform: translateX(-50%) scale(1.03); }

/* ── Barra de progreso auto-cierre ── */
#promo-timer-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.15);
}
#promo-timer-fill {
  height: 100%; width: 100%;
  background: var(--gold); border-radius: 0 0 14px 0;
}

/* ══════════════════════════════════════════════════════════
   EVENT DETAIL MODAL (desplegable al tocar un evento)
   ══════════════════════════════════════════════════════════ */
#evdet-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#evdet-overlay.open { opacity: 1; pointer-events: all; }

#evdet-box {
  background: #111; border-radius: 20px 20px 0 0;
  width: 100%; max-width: 520px; padding: 1.5rem 1.5rem 2rem;
  transform: translateY(50px); transition: transform 0.28s cubic-bezier(.34,1.2,.64,1);
  position: relative; max-height: 92vh; overflow-y: auto;
}
#evdet-overlay.open #evdet-box { transform: translateY(0); }

#evdet-close {
  position: absolute; top: 14px; right: 14px;
  background: #1c1c1c; border: 1px solid #2a2a2a; color: #777;
  border-radius: 6px; width: 30px; height: 30px;
  font-size: 14px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
#evdet-img-wrap { margin: -1.5rem -1.5rem 1.2rem; }
#evdet-img-wrap img { width: 100%; display: block; border-radius: 20px 20px 0 0; }

#evdet-date-row {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1rem;
}
#evdet-date {
  background: var(--gold); color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; line-height: 1; padding: 10px 16px;
  border-radius: 4px; text-align: center; flex-shrink: 0;
}
#evdet-date small { display: block; font-size: 0.5rem; letter-spacing: 2.5px; font-weight: 700; }

#evdet-type {
  font-size: 9px; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 5px; margin-top: 2px;
}
#evdet-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  color: #fff; line-height: 1; margin-bottom: 6px;
}
#evdet-band { font-size: 13px; color: #888; margin-bottom: 10px; }
#evdet-cover { font-size: 14px; color: var(--cream); margin-bottom: 1rem; }
#evdet-cover strong { color: var(--gold); }
#evdet-desc {
  font-size: 13px; color: #aaa; line-height: 1.65;
  margin-bottom: 1.2rem; display: none;
  border-top: 1px solid #1e1e1e; padding-top: 0.9rem;
}
#evdet-desc.has-text { display: block; }
#evdet-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; text-decoration: none;
  border-radius: 8px; padding: 13px; font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: opacity 0.2s;
}
#evdet-wa:hover { opacity: 0.9; }
