/* ══════════════════════════════════════════
   OLHÖPS — main.css
   Mobile-first global stylesheet
   ──────────────────────────────────────────
   1.  Variables (:root)
   2.  Reset / Base
   3.  Typography
   4.  Cursor
   5.  Scroll Reveal
   6.  Buttons
   7.  Section Labels & Utilities
   8.  Marquee
   9.  Header / Nav
   10. Footer
   11. WhatsApp FAB
   12. Mobile CTA Bar
   13. PAGE: Home
   14. PAGE: Nosotros
   15. PAGE: Eventos (archive)
   16. PAGE: Blog
   17. PAGE: Post (single)
   ══════════════════════════════════════════ */


/* ══════════════════════════════════════════
   1. VARIABLES
   ══════════════════════════════════════════ */
:root {
  --ast-global-color-0: #FEC105 !important;
  --yellow:      #FEC105;
  --dark:        #1A1A1A;
  --cream:       #F7F6F3;
  --border:      #EDECEA;
  --muted:       #888780;
  --dark-muted:  #3D3D3A;
  --dark-2:      #222220;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Oxygen', sans-serif;

  --max-w:        1440px;
  --header-h:     64px;
  --pad-x:        80px;
  --pad-x-mobile: 20px;
}


/* ══════════════════════════════════════════
   2. RESET / BASE
   ══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream) !important;
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  cursor: none;
}

body.menu-open { overflow: hidden; }

@media (hover: none) {
  body { cursor: auto; }
  #cursor { display: none !important; }
}

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


/* ══════════════════════════════════════════
   3. TYPOGRAPHY
   ══════════════════════════════════════════ */
h1, h2, h3, h4, .btn { font-family: var(--font-heading); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}

.section-header { margin-bottom: 48px; }


/* ══════════════════════════════════════════
   4. CURSOR
   ══════════════════════════════════════════ */
#cursor {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: multiply;
}

#cursor.big { width: 36px; height: 36px; }


/* ══════════════════════════════════════════
   5. SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}


/* ══════════════════════════════════════════
   6. BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

/* ── Variantes: estado base ── */
.btn-yellow        { background: var(--yellow);    color: var(--dark);  border-color: var(--yellow); }
.btn-dark          { background: var(--dark);       color: #fff;         border-color: var(--dark); }
.btn-outline       { background: transparent;       color: var(--dark);  border-color: var(--dark); }
.btn-outline-hero  { background: transparent;       color: #fff;         border-color: rgba(255,255,255,0.6); }
.btn-outline-white { background: transparent;       color: #fff;         border-color: #fff; }
.btn-ghost {
  background: transparent; color: var(--dark);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  padding: 8px 0; border-left: none; border-right: none; border-top: none;
  border-bottom: 1px solid var(--dark); border-radius: 0; text-transform: uppercase;
}
.btn-sm { padding: 9px 18px; font-size: 11px; }

/* ── Variantes: hover / focus — usamos html body para superar especificidad Astra ── */
html body .btn:hover,
html body .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Botón amarillo → hover negro (amarillo sobre amarillo no funciona) */
html body .btn-yellow:hover,
html body .btn-yellow:focus-visible {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
}

/* Botón oscuro → hover amarillo */
html body .btn-dark:hover,
html body .btn-dark:focus-visible {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--dark) !important;
}

/* Outline → rellena con oscuro */
html body .btn-outline:hover,
html body .btn-outline:focus-visible {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
  color: #fff !important;
}

/* Outline hero (sobre imagen) → rellena con blanco */
html body .btn-outline-hero:hover,
html body .btn-outline-hero:focus-visible {
  background-color: #fff !important;
  border-color: #fff !important;
  color: var(--dark) !important;
}

/* Outline white → rellena con amarillo */
html body .btn-outline-white:hover,
html body .btn-outline-white:focus-visible {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--dark) !important;
}


/* ══════════════════════════════════════════
   7. SECTION LABELS & UTILITIES
   ══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.img-placeholder {
  background: #e8e7e4;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 4px,
    rgba(0,0,0,0.04) 4px, rgba(0,0,0,0.04) 8px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: monospace;
  font-size: 11px;
  text-align: center;
  padding: 12px;
  line-height: 1.4;
}

.center-btn { text-align: center; }


/* ══════════════════════════════════════════
   8. MARQUEE
   ══════════════════════════════════════════ */
.marquee-strip {
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
}

.marquee-track.slow { animation-duration: 24s; }

.marquee-item {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 16px;
}

.marquee-dot { padding: 0px; font-size: 12px; }

.marquee-yellow { background: var(--yellow); }
.marquee-yellow .marquee-item,
.marquee-yellow .marquee-dot { color: var(--dark); }

.marquee-dark { background: var(--dark); }
.marquee-dark .marquee-item { color: var(--yellow); }
.marquee-dark .marquee-dot  { color: var(--yellow); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════
   9. HEADER / NAV
   ══════════════════════════════════════════ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 7px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar span { color: rgba(255,255,255,0.35); margin: 0 10px; }

#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  transition: border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}

#header.scrolled { border-bottom: 1px solid var(--border); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--yellow); }

.custom-logo-link { display: flex; align-items: center; flex-shrink: 0; }
img.custom-logo   { max-height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 40px;
  margin-bottom: 0;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-btn {
  width: auto; height: auto;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--dark);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  position: relative;
}

.nav-icon-btn:hover { color: var(--yellow); }
.nav-icon-btn svg { width: 20px; height: 20px; display: block; }

@keyframes cartIconPulse {
  0%   { transform: scale(1); }
  18%  { transform: scale(1.4); }
  36%  { transform: scale(0.9); }
  54%  { transform: scale(1.18); }
  72%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

.cart-icon-pulse { animation: cartIconPulse 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }
.cart-icon-pulse svg { color: var(--yellow); }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 18px; height: 18px; fill: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger:focus, .hamburger:hover { background: none !important; }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--yellow); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 var(--pad-x-mobile); }
  .top-bar { font-size: 10px; }
  .nav-account-btn { display: none; }
  .whatsapp-fab { display: none !important; }
}


/* ══════════════════════════════════════════
   10. FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 80px var(--pad-x) 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-muted);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--yellow); }

/* Logo de imagen en footer: invertido a blanco (el original es negro) */
.footer-logo-img {
  display: block;
  max-height: 40px;
  width: auto;
  /*filter: brightness(0) invert(1);*/
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 200px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--border);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-credit,
.footer-bottom-text {
  font-size: 12px;
  color: var(--dark-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.footer-copy a,
.footer-credit a { color: var(--dark-muted); text-decoration: none; }
.footer-copy a:hover,
.footer-credit a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  footer { padding: 60px var(--pad-x-mobile) 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   11. WHATSAPP FAB
   ══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  background: #2a2a2a;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.whatsapp-fab svg { width: 22px; height: 22px; fill: #fff; }


/* ══════════════════════════════════════════
   11b. CARTA FAB (solo desktop, encima del WhatsApp FAB)
   ══════════════════════════════════════════ */
.carta-fab {
  position: fixed;
  right: 24px;
  bottom: 86px; /* WhatsApp FAB: 24 (bottom) + 48 (alto) + 14 (gap) */
  z-index: 998;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
}

/* Núcleo redondo — mismo tamaño que el FAB de WhatsApp (48px) */
.carta-fab__core {
  position: relative;
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.carta-fab:hover .carta-fab__core,
.carta-fab:focus-visible .carta-fab__core {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

/* Aro punteado que gira con el scroll (rotación vía --carta-rot, controlada por JS) */
.carta-fab__ring {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1.5px dashed rgba(26,26,26,0.5);
  transform: rotate(var(--carta-rot, 0deg));
  will-change: transform;
}

/* Icono central — no gira, siempre legible */
.carta-fab__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carta-fab__icon svg { width: 20px; height: 20px; }

/* Etiqueta "Ver carta" — oculta en reposo, aparece al hover/foco */
.carta-fab__label {
  position: absolute;
  right: 60px; /* 48 núcleo + 12 de separación */
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: opacity 0.2s, transform 0.2s;
}

.carta-fab:hover .carta-fab__label,
.carta-fab:focus-visible .carta-fab__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .carta-fab { display: none !important; }
}


/* ══════════════════════════════════════════
   12. MOBILE CTA BAR
   ══════════════════════════════════════════ */

.cta-bar {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
  .cta-bar {
    display: flex;
    align-items: stretch;
  }
}

.cta-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}

.cta-bar__item:hover,
.cta-bar__item:focus-visible {
  color: var(--yellow);
  background: rgba(255,255,255,0.04);
  outline: none;
}

.cta-bar__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-bar__item--wa svg {
  fill: rgba(255, 255, 255, 0.7);
  stroke: none;
}

@media (max-width: 768px) {
  .gt_float_switcher.notranslate {
    display: none;
  }
} 

/* Push footer above cta-bar on mobile */
@media (max-width: 768px) {
  footer { padding-bottom: 72px; }
}

/* Sidebar blog extras */
.sidebar-banner {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  text-decoration: none;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-banner:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.sidebar-banner img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.sidebar-banner p { padding: 12px 16px 0; font-size: 13px; color: var(--dark-muted); }
.sidebar-banner__cta {
  display: block;
  padding: 10px 16px 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.sidebar-events ul,
.sidebar-events ul li { list-style: none; padding: 0; margin: 0; }
.sidebar-event-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-event-item:last-child { border-bottom: none; }
.sidebar-event-item a { text-decoration: none; color: var(--dark); display: flex; gap: 10px; align-items: baseline; }
.sidebar-event-date {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  flex-shrink: 0;
}
.sidebar-event-title { font-size: 13px; font-weight: 500; }

.sidebar-product-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
}
.sidebar-product-item:last-child { border-bottom: none; }
.sidebar-product-img { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-product-name { display: block; font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.sidebar-product-price { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--yellow); }


/* ══════════════════════════════════════════
   13. PAGE: HOME  (was 12 before CTA Bar section added)
   ══════════════════════════════════════════ */

/* Hero */
#hero {
  min-height: 100vh;
  padding-top: 96px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 120px;
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 32px;
  color: #fff;
}

.hero-title .line { display: block; overflow: hidden; }

.hero-title .line-inner {
  display: block;
  transform: translateX(-110%);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.hero-title .line-inner.revealed { transform: translateX(0); }

.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-family: var(--font-body);
}

.hero-meta span { margin: 0 8px; }
.hero-meta span:first-child { margin-left: 0; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right { position: absolute; inset: 0; z-index: 0; }

.hero-image { position: absolute; inset: 0; will-change: transform; }

.hero-image img {
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: rgba(10,8,5,0.52);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 48px; left: 64px;
  z-index: 3;
  width: 100px; height: 100px;
}

.badge-ring {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px dashed var(--yellow);
  position: relative;
  animation: rotate-badge 12s linear infinite;
}

.badge-text-path { position: absolute; inset: 0; border-radius: 50%; }

.badge-center {
  position: absolute; inset: 10px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
  color: var(--yellow);
  font-family: var(--font-heading);
  text-align: center; letter-spacing: 0.05em; line-height: 1.3;
}

@keyframes rotate-badge { to { transform: rotate(360deg); } }

.badge-svg-text {
  position: absolute; inset: 0;
  animation: rotate-badge-reverse 12s linear infinite;
}

@keyframes rotate-badge-reverse { to { transform: rotate(-360deg); } }

@media (max-width: 768px) {
  #hero { align-items: flex-end; }
  .hero-left { padding: 40px var(--pad-x-mobile) 80px; max-width: 100%; }
  .hero-right .hero-image img { height: 100%; }
  .hero-badge { left: var(--pad-x-mobile); bottom: 20px; }
}

/* Home — Eventos preview */
#eventos {
  padding: 100px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Estado vacío reutilizable (secciones sin contenido: eventos, tienda…) */
.empty-state {
  text-align: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
  padding: 48px 20px;
  border: 0.5px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.event-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.event-stripe {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}

.stripe-yellow { background: var(--yellow); }
.stripe-dark   { background: var(--dark); }
.stripe-gray   { background: var(--muted); }

.event-date {
  display: flex; flex-direction: column; align-items: flex-end;
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-heading); line-height: 1;
}

.event-date-day {
  font-size: 48px; font-weight: 800;
  color: var(--border); letter-spacing: -0.02em; line-height: 1;
}

.event-date-month {
  font-size: 11px; font-weight: 700;
  color: var(--border); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 2px;
}

.event-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
  color: var(--dark); /* default: dark text — color_taxonomia should be light/vibrant */
}

.tag-yellow { background: var(--yellow); color: var(--dark); }
.tag-dark   { background: var(--dark); color: #fff; }
.tag-gray   { background: var(--muted); color: #fff; }

.event-name {
  font-size: 20px; font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 8px; line-height: 1.2; padding-right: 60px;
}

.event-desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 20px; }

.event-cta {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
  border-bottom: 1px solid var(--dark); padding-bottom: 2px;
}

@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; }
  #eventos { padding: 60px var(--pad-x-mobile); }
}

/* Home — Catas */
#catas {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 600px;
}

.catas-content {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}

.catas-title {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 20px;
}

.catas-desc {
  font-size: 16px; color: var(--dark-muted);
  line-height: 1.7; max-width: 400px;
}

.catas-options {
  margin: 32px 0; list-style: none;
  display: flex; flex-direction: column; gap: 20px;
}

.catas-options li { display: flex; align-items: flex-start; gap: 14px; }

.catas-options .opt-icon {
  flex-shrink: 0; margin-top: 2px;
  font-size: 18px; line-height: 1;
}

.catas-options .opt-label { font-weight: 700; font-family: var(--font-heading); font-size: 15px; }
.catas-options .opt-price { color: var(--yellow); font-weight: 700; }
.catas-options .opt-desc  { color: var(--muted); font-size: 13px; margin-top: 2px; }
.catas-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 32px; }

.catas-image-wrap { position: relative; overflow: hidden; }

.catas-image-clip {
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden; height: 100%;
}

.catas-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block; min-height: 520px;
}

.catas-img-placeholder { min-height: 520px; height: 100%; background: var(--border); }

.catas-sticker {
  position: absolute; top: 20px; right: 20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15); z-index: 2;
}

.catas-sticker .price       { font-size: 22px; line-height: 1; }
.catas-sticker .price-label { font-size: 10px; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  #catas { grid-template-columns: 1fr; }
  .catas-content { padding: 60px var(--pad-x-mobile); }
  .catas-img, .catas-img-placeholder { min-height: 320px; }
  .catas-image-clip { clip-path: none; }
}

/* Home — Tienda (horizontal scroll) */
#tienda { padding: 100px 0; }

.tienda-header { padding: 0 var(--pad-x); margin-bottom: 40px; }

.shop-track-wrap {
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.shop-track-wrap::-webkit-scrollbar { display: none; }

.shop-track {
  display: flex; gap: 20px;
  padding: 0 var(--pad-x) 20px;
  width: max-content;
}

.product-card {
  width: 260px; flex-shrink: 0; scroll-snap-align: start;
  border-radius: 12px; overflow: hidden; position: relative;
  cursor: pointer; background: #fff; border: 0.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }

.product-img { aspect-ratio: 4/5; width: 100%; position: relative; overflow: hidden; }

.product-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s;
}

.product-card:hover .product-img img { transform: scale(1.04); }
.product-img .img-placeholder { height: 100%; width: 100%; }

.product-add-btn {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: scale(0.95);
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  color: #fff; letter-spacing: 0.08em; text-transform: uppercase;
}

.product-card:hover .product-add-btn { opacity: 1; transform: scale(1); }

.product-info { padding: 16px; }

.product-name {
  font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 4px;
}

.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 10px; }

.product-price { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark); }

.product-add-mini {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--yellow); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s, box-shadow 0.2s;
}

.product-add-mini:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.product-add-mini svg { width: 14px; height: 14px; }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--dark); color: var(--yellow);
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

.shop-cta-card {
  flex-shrink: 0; width: 140px; background: var(--dark); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 24px 16px; text-decoration: none;
  scroll-snap-align: start; transition: background 0.2s; align-self: stretch;
}

.shop-cta-card:hover { background: #2a2a2a; }
.shop-cta-card-icon { width: 28px; height: 28px; stroke: #fff; fill: none; }

.shop-cta-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  color: #fff; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; line-height: 1.5;
}

.shop-perks {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 28px var(--pad-x) 0;
  border-top: 1px solid var(--border); margin-top: 20px;
}

.shop-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.shop-perk svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 768px) {
  .shop-track { padding: 0 var(--pad-x-mobile) 20px; }
  .tienda-header { padding: 0 var(--pad-x-mobile); }
  .shop-perks { padding: 20px var(--pad-x-mobile) 0; gap: 20px; }
}

/* Home — Nosotros */
#nosotros { background: var(--cream); }

@media (max-width: 900px) {
  #nosotros > div { grid-template-columns: 1fr !important; }
  #nosotros > div > div:first-child { padding: 60px 24px 40px !important; }
  #nosotros > div > div:last-child {
    flex-direction: column !important; align-items: center !important;
    padding: 20px 24px 60px !important; gap: 16px !important;
  }
  #nosotros > div > div:last-child > div {
    width: 80% !important; max-width: 280px !important; margin-top: 0 !important;
  }
}

/* Home — Reseñas */
#resenas { background: var(--dark); padding: 100px var(--pad-x); }

.resenas-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.resenas-left .section-title  { color: #fff; }
.resenas-left .section-subtitle { color: var(--muted); }
.resenas-stars { color: var(--yellow); font-size: 18px; margin: 4px 0; }

.review-carousel { position: relative; overflow: hidden; margin-top: 32px; }
.reviews-track { display: flex; transition: transform 0.5s ease; }
.review-slide { min-width: 100%; }

.review-text {
  font-style: italic; font-size: 18px; color: #fff; line-height: 1.6; margin-bottom: 20px;
}

.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }

.review-author {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  color: var(--yellow); letter-spacing: 0.04em;
}

.review-source { font-size: 11px; color: var(--muted); margin-top: 2px; }
.review-stars  { color: var(--yellow); font-size: 14px; }

.carousel-dots { display: flex; gap: 8px; margin-top: 24px; }

.dot {
  width: 6px; height: 6px; border-radius: 50%; padding: 0;
  background: var(--dark-muted); cursor: pointer;
  transition: background 0.2s, width 0.2s; border: none;
}

.dot.active { background: var(--yellow); width: 20px; border-radius: 3px; }

.resenas-link {
  display: inline-block; margin-top: 28px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  color: var(--yellow); text-decoration: none;
  border-bottom: 1px solid var(--yellow); padding-bottom: 2px;
}

.insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr); gap: 4px;
}

.insta-cell { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }

.insta-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%); transition: filter 0.3s;
}

.insta-cell:hover .insta-img { filter: grayscale(0%); }

.insta-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}

.insta-cell:hover .insta-cell-overlay { opacity: 1; }
.insta-cell-overlay svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 900px) {
  .resenas-inner { grid-template-columns: 1fr; gap: 48px; }
  #resenas { padding: 60px var(--pad-x-mobile); }
}


/* ══════════════════════════════════════════
   13. PAGE: NOSOTROS
   ══════════════════════════════════════════ */
#page-hero {
  padding-top: 96px; background: var(--dark); overflow: hidden; position: relative;
}

.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad-x) 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(64px, 9vw, 128px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 0.92; color: #fff;
}

.page-hero-sub {
  max-width: 300px; padding-bottom: 12px;
  font-size: 15px; color: var(--muted); line-height: 1.6; flex-shrink: 0;
}

@media (max-width: 768px) {
  .page-hero-inner { padding: 60px var(--pad-x-mobile) 0; flex-direction: column; align-items: flex-start; gap: 20px; }
  .page-hero-sub { max-width: 100%; }
}

#somos { background: var(--cream); }

#somos > div { display: grid; grid-template-columns: 1fr 2fr; min-height: 640px; }

@media (max-width: 900px) {
  #somos > div { grid-template-columns: 1fr !important; }
  #somos > div > div:first-child { padding: 60px 24px 40px !important; }
  #somos > div > div:last-child {
    flex-direction: column !important; align-items: center !important;
    padding: 20px 24px 60px !important; gap: 16px !important;
  }
  #somos > div > div:last-child > div {
    width: 80% !important; max-width: 280px !important; margin-top: 0 !important;
  }
}

#lo-que-nos-mueve { background: var(--dark); padding: 0; }

.manifesto-bar { background: var(--yellow); padding: 28px var(--pad-x); overflow: hidden; }

.manifesto-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--dark); line-height: 1.1; text-wrap: pretty;
}

.mueve-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.mueve-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.mueve-stat {
  background: var(--dark-2); padding: 40px 32px; position: relative; overflow: hidden;
}

.mueve-stat::after {
  content: ''; position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px; background: var(--dark-muted);
}

.mueve-stat:nth-child(3)::after,
.mueve-stat:nth-child(4)::after { display: none; }

.mueve-num {
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 72px); font-weight: 800;
  color: var(--yellow); line-height: 1; letter-spacing: -0.03em;
}

.mueve-num-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

.mueve-copy { padding: 0; }
.mueve-copy .section-label { color: var(--yellow); }

.mueve-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 44px); font-weight: 800;
  text-transform: uppercase; line-height: 1.05; color: #fff; margin-bottom: 24px;
}

.mueve-copy p { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
.mueve-copy p strong { color: var(--border); font-weight: 400; }

.mueve-pillars {
  margin-top: 36px; display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--dark-muted);
}

.mueve-pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--dark-muted);
}

.mueve-pillar-dot {
  width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; flex-shrink: 0;
}

.mueve-pillar-text {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--border);
}

.mueve-pillar-sub { margin-left: auto; font-size: 12px; color: var(--muted); flex-shrink: 0; }

@media (max-width: 900px) {
  .mueve-grid { grid-template-columns: 1fr; gap: 48px; padding: 60px var(--pad-x-mobile); }
  .manifesto-bar { padding: 24px var(--pad-x-mobile); }
}

/* ── Team ── */

#team { background: var(--cream); padding: 0; }

.team-wrap {
  max-width: var(--max-w); margin: 0 auto;
  padding: 100px var(--pad-x) 80px;
  border-top: 1px solid var(--border);
}

.team-wrap .section-header { margin-bottom: 64px; }

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

.team-card {
  background: #fff; border: 0.5px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.team-card-img {
  aspect-ratio: 3 / 4; overflow: hidden; position: relative;
}

.team-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-img .img-placeholder {
  width: 100%; height: 100%;
  background: var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
}

.team-card-body { padding: 24px 24px 28px; }

.team-card-rol {
  display: inline-block;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); background: var(--yellow);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px;
}

.team-card-name {
  font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--dark); margin-bottom: 8px; line-height: 1.15;
}

.team-card-bio {
  font-family: var(--font-body); font-size: 14px; line-height: 1.7;
  color: var(--dark-muted);
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-wrap { padding: 80px var(--pad-x-mobile) 60px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; gap: 20px; max-width: 360px; margin: 0 auto; }
}

#instagram { padding: 60px 0 0; background: var(--cream); }

/* Ocultar la cabecera y el botón "cargar más" del plugin Smash Balloon */
#instagram .sb_instagram_header.sbi_medium,
#instagram #sbi_load { display: none !important; }

#instagram .section-header { text-align: center; padding: 0 var(--pad-x); }

.instagram-cta { display: flex; justify-content: center; padding: 36px var(--pad-x) 60px; }
.instagram-cta .btn { gap: 8px; }

/* ═══════════ Carta (page-carta · diseño 2) ═══════════ */
#carta-page { background: var(--cream); }

/* Hero */
.carta-hero {
  position: relative; overflow: hidden;
  background: var(--dark); color: #fff;
  margin-top: var(--header-h); padding: 64px var(--pad-x) 72px;
}
.carta-hero-watermark {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-heading); font-weight: 800; font-size: 160px;
  letter-spacing: -0.02em; color: rgba(255,255,255,0.04); pointer-events: none; user-select: none;
}
.carta-hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.carta-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.carta-breadcrumb a { color: var(--muted); text-decoration: none; }
.carta-breadcrumb a:hover { color: var(--yellow); }
.carta-breadcrumb .breadcrumb-current { color: #fff; }
.carta-hero-title {
  font-family: var(--font-heading); font-weight: 800; text-transform: uppercase;
  font-size: clamp(44px, 6vw, 86px); line-height: 0.96; letter-spacing: -0.02em; margin: 0;
}
.carta-hero-title em { color: var(--yellow); font-style: normal; }
.carta-hero-sub { margin-top: 20px; max-width: 540px; font-size: 16px; line-height: 1.7; color: var(--muted); }
.carta-hero-note {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); background: none; padding: 0; border-radius: 0;
}
.carta-hero-note::before {
  content: ""; flex: none; width: 32px; height: 2px; background: var(--yellow);
}

/* Banner Untappd (franja CTA reutilizable — cervezas en el local) */
.untappd-banner { background: var(--yellow); padding: 28px var(--pad-x); }
.untappd-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.untappd-banner-text { display: flex; align-items: center; gap: 18px; }
.untappd-banner-icon {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: var(--dark); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.untappd-banner-icon svg { width: 26px; height: 26px; }
.untappd-banner-title {
  margin: 0; font-family: var(--font-heading); font-weight: 800; text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.1; letter-spacing: -0.01em; color: var(--dark);
}
.untappd-banner-sub {
  margin: 6px 0 0; max-width: 520px; font-size: 14px; line-height: 1.55; color: var(--dark-muted);
}
.untappd-banner-btn {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 999px;
  background: var(--dark); color: #fff;
  font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.untappd-banner-btn svg { width: 16px; height: 16px; }
.untappd-banner-btn:hover {
  background: #fff; color: var(--dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
@media (max-width: 768px) {
  .untappd-banner { padding: 24px var(--pad-x-mobile); }
  .untappd-banner-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .untappd-banner-btn { width: 100%; justify-content: center; }
}

/* En 10 segundos */
.carta-ten { background: #fff; padding: 40px var(--pad-x); border-bottom: 1px solid var(--border); }
.carta-ten-head { max-width: var(--max-w); margin: 0 auto 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.carta-ten-eyebrow { display: block; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.carta-ten-title { display: block; font-family: var(--font-heading); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-top: 4px; }
.carta-ten-hint { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.carta-ten-scroll {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.carta-ten-scroll::-webkit-scrollbar { height: 6px; }
.carta-ten-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.carta-ten-card {
  flex: 0 0 240px; width: 240px; scroll-snap-align: start;
  border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.carta-ten-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.carta-ten-card.is-featured { border-color: var(--yellow); }
.carta-ten-img { position: relative; height: 168px; background: #e8e7e4; display: flex; align-items: center; justify-content: center; }
.carta-ten-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carta-ten-week {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--dark); color: var(--yellow); padding: 4px 9px; border-radius: 999px;
}
.carta-ten-body { padding: 14px 16px 16px; }
.carta-ten-name { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.25; }
.carta-ten-meta { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* Nav de categorías */
.carta-catnav { position: sticky; top: var(--header-h); z-index: 20; background: #fff; border-bottom: 1px solid var(--border); }
.carta-catnav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); display: flex; gap: 28px; overflow-x: auto; }
.carta-catnav-link {
  flex-shrink: 0; padding: 18px 2px; text-decoration: none;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.carta-catnav-link:hover { color: var(--dark); }
.carta-catnav-link.active { color: var(--dark); border-bottom-color: var(--yellow); }

/* Filtros por dieta */
.carta-filter { background: var(--cream); }
.carta-filter-inner { max-width: var(--max-w); margin: 0 auto; padding: 28px var(--pad-x) 0; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.carta-filter-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.carta-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.carta-chip {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  padding: 8px 15px; border: 1.5px solid var(--border); border-radius: 999px;
  background: #fff; color: var(--dark); cursor: pointer; transition: all 0.2s;
}
.carta-chip:hover { border-color: var(--dark); }
.carta-chip.active { background: var(--dark); color: var(--yellow); border-color: var(--dark); }
.carta-filter-reset { background: none; border: none; cursor: pointer; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); text-decoration: underline; }

/* Cuerpo + watermark de ilustraciones */
.carta-body { position: relative; overflow: hidden; background: var(--cream); }
.carta-watermark {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('../img/ilustraciones-carta.svg');
  background-repeat: repeat; background-size: 880px auto; background-position: center -20px;
  opacity: 0.06;
}
.carta-wrap { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 48px var(--pad-x) 48px; }

/* Sección */
.carta-section { padding: 40px 0; }
.carta-section + .carta-section { border-top: 1px solid var(--border); }
.carta-section-head { display: flex; align-items: baseline; gap: 18px; }
.carta-section-num { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--yellow); letter-spacing: 0.02em; }
.carta-section-label { display: block; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.carta-section-title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 44px); font-weight: 800; text-transform: uppercase; color: var(--dark); line-height: 1.05; margin: 2px 0 0; }
.carta-section-sub { font-size: 15px; color: var(--dark-muted); line-height: 1.6; margin: 14px 0 4px; max-width: 620px; }
.carta-dishes { margin-top: 8px; }

/* Plato */
.carta-dish { padding: 20px 0; border-bottom: 1px solid var(--border); }
.carta-dish-head { display: flex; align-items: baseline; gap: 10px; }
.carta-dish-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); }
.carta-dish-tags { display: inline-flex; gap: 4px; font-size: 13px; }
.carta-dish-leader { flex: 1; border-bottom: 1.5px dotted #d8d7d3; transform: translateY(-4px); }
.carta-dish-price { font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: var(--dark); white-space: nowrap; }
.carta-dish-desc { font-size: 14px; color: var(--dark-muted); line-height: 1.5; margin-top: 6px; }
.carta-dish-allergens { font-size: 10px; color: #b5b3ad; margin-left: 4px; }
.carta-dish-en { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 3px; }
.carta-dish-pairing {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  background: #fbf3d5; color: var(--dark); font-size: 11px; font-family: var(--font-heading); font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.carta-dish-pairing em { font-style: normal; font-weight: 700; }
.carta-tap-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(254,193,5,0.25); flex-shrink: 0; }

/* Recomendación especial */
.carta-special { display: flex; align-items: center; gap: 20px; background: var(--dark); color: #fff; border-radius: 16px; padding: 26px 30px; margin: 16px 0; }
.carta-special-icon { font-size: 26px; color: var(--yellow); flex-shrink: 0; }
.carta-special-body { flex: 1; }
.carta-special-eyebrow { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.carta-special-name { font-family: var(--font-heading); font-size: 22px; font-weight: 800; text-transform: uppercase; margin-top: 4px; }
.carta-special-desc { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 6px; }
.carta-special-desc .carta-dish-allergens { color: rgba(255,255,255,0.45); }
.carta-special .carta-dish-en { color: rgba(255,255,255,0.55); }
.carta-special-pairing { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-family: var(--font-heading); font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); }
.carta-special-pairing em { font-style: normal; font-weight: 700; color: var(--yellow); }
.carta-special-price { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--yellow); flex-shrink: 0; }

.carta-empty { text-align: center; color: var(--muted); padding: 40px 0; font-size: 15px; }

/* Alérgenos */
.carta-allergens { background: #fff; padding: 56px var(--pad-x); border-top: 1px solid var(--border); }
.carta-allergens-inner { max-width: 1100px; margin: 0 auto; }
.carta-allergens-title { font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark); }
.carta-allergens-lead { font-size: 14px; color: var(--dark-muted); line-height: 1.6; margin: 10px 0 24px; max-width: 640px; }
.carta-allergens-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.carta-allergen-chip { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--dark-muted); }
.carta-allergen-num {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border);
  font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--dark);
}
.carta-legend-icons { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.carta-legend-icon { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--dark-muted); }

/* CTA */
.carta-cta { background: var(--yellow); color: var(--dark); text-align: center; padding: 56px var(--pad-x); }
.carta-cta-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); font-weight: 800; text-transform: uppercase; }
.carta-cta-sub { font-size: 15px; color: var(--dark-2); margin-top: 10px; }
.carta-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

@media (max-width: 768px) {
  .carta-hero { padding: 48px var(--pad-x-mobile) 56px; }
  .carta-hero-watermark { font-size: 90px; right: 12px; }
  .carta-ten, .carta-allergens, .carta-cta { padding-left: var(--pad-x-mobile); padding-right: var(--pad-x-mobile); }
  .carta-catnav-inner, .carta-filter-inner { padding-left: var(--pad-x-mobile); padding-right: var(--pad-x-mobile); }
  .carta-wrap { padding: 32px var(--pad-x-mobile) 40px; }
  .carta-special { flex-direction: column; align-items: flex-start; gap: 12px; }
  .carta-watermark { background-size: 560px auto; }
}

.insta-header { text-align: center; padding: 0 var(--pad-x); margin-bottom: 24px; }

.insta-strip {
  display: grid; grid-template-columns: repeat(6, 1fr) auto; gap: 2px;
}

.insta-strip .insta-cell { aspect-ratio: 3/4; }

.insta-follow-card {
  background: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 20px; cursor: pointer;
  min-width: 140px; text-decoration: none; transition: background 0.2s;
}

.insta-follow-card:hover { background: #f5b800; }
.insta-follow-card svg { width: 28px; height: 28px; fill: var(--dark); }

.insta-follow-label {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark);
}

@media (max-width: 768px) {
  .insta-strip { grid-template-columns: repeat(3, 1fr) auto; }
  .insta-follow-card { min-width: 80px; padding: 12px; }
  .insta-header { padding: 0 var(--pad-x-mobile); }
}

/* Home — CTA Final */
#cta-final {
  background: var(--cream);
  text-align: center;
  padding: 40px var(--pad-x);
}

.cta-title {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.02em; margin-bottom: 16px;
}

.cta-subtitle { font-size: 16px; color: var(--muted); margin-bottom: 40px; }

.cta-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 32px;
}

.cta-btns .btn { font-size: 14px; padding: 14px 32px; }

.cta-address {
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.04em; line-height: 1.7;
}

@media (max-width: 768px) {
  #cta-final { padding: 20px var(--pad-x-mobile); }
}


/* ══════════════════════════════════════════
   14. PAGE: EVENTOS (archive)
   ══════════════════════════════════════════ */
.page-hero {
  padding-top: 96px; background: var(--dark); position: relative; overflow: hidden;
}

.page-hero .page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 72px var(--pad-x) 64px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}

.page-hero .page-hero-title {
  font-size: clamp(56px, 7vw, 100px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.025em; line-height: 0.95; color: #fff;
}

.page-hero .page-hero-title em { color: var(--yellow); font-style: normal; }

.page-hero-meta { text-align: right; }

.page-hero-meta p {
  font-family: var(--font-body); font-size: 14px; color: var(--muted);
  line-height: 1.7; max-width: 280px; margin-left: auto;
}

.hero-ticker {
  display: flex; overflow: hidden; height: 44px; align-items: center; background: var(--yellow);
}

.hero-ticker-inner {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); padding: 0 20px;
}

.ticker-dot { color: rgba(26,26,26,0.35); font-size: 6px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .page-hero .page-hero-inner { flex-direction: column; padding: 48px var(--pad-x-mobile) 40px; gap: 20px; }
  .page-hero-meta { text-align: left; }
  .page-hero-meta p { margin-left: 0; }
}

.filter-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 96px; z-index: 100;
}

.filter-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}

.filter-bar-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border: none; background: none; cursor: pointer;
  padding: 16px 20px; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}

.filter-btn:hover { color: var(--dark); }
.filter-btn.active { color: var(--dark); border-bottom-color: var(--yellow); }

@media (max-width: 768px) { .filter-bar-inner { padding: 0 var(--pad-x-mobile); } }

.events-section {
  max-width: var(--max-w); margin: 0 auto; padding: 64px var(--pad-x) 100px;
}

.month-block { margin-bottom: 64px; }
.month-block:last-child { margin-bottom: 0; }

.month-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}

.month-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

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

.evt-card {
  position: relative; padding: 28px 28px 24px;
  display: flex; flex-direction: column;
  min-height: 280px; text-decoration: none;
  transition: opacity 0.2s; overflow: hidden;
}

.evt-card::after {
  content: '→'; position: absolute; bottom: 24px; right: 28px;
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.evt-card:hover::after { transform: translateX(4px); }
.evt-card:hover { opacity: 0.9; }

.evt-card.light  { background: #F0EFEc; color: var(--dark); }
.evt-card.light::after { color: var(--dark); }
.evt-card.dark   { background: var(--dark); color: #fff; }
.evt-card.dark::after { color: var(--yellow); }
.evt-card.yellow { background: var(--yellow); color: var(--dark); }
.evt-card.yellow::after { color: var(--dark); }
.evt-card.white  { background: #fff; color: var(--dark); border: 1px solid var(--border); }
.evt-card.white::after { color: var(--dark); }

.evt-month {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; margin-bottom: 2px;
}

.evt-day {
  font-family: var(--font-heading); font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px;
}

.evt-day sup { font-size: 0.32em; font-weight: 700; vertical-align: super; letter-spacing: 0.04em; }

.evt-tag {
  display: inline-block; font-family: var(--font-heading);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; align-self: flex-start;
}

.dark .evt-tag   { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.light .evt-tag  { background: rgba(26,26,26,0.1); color: var(--dark); }
.white .evt-tag  { background: rgba(26,26,26,0.07); color: var(--dark); }
.yellow .evt-tag { background: rgba(26,26,26,0.12); color: var(--dark); }

.evt-name {
  font-family: var(--font-heading); font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700; line-height: 1.2; margin-bottom: auto; padding-right: 32px; text-wrap: pretty;
}

.evt-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.evt-meta__hora {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}

.evt-meta__hora svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.evt-meta__precio {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}

.evt-meta__sep {
  opacity: 0.22;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}

.evt-meta__extra {
  font-size: 12px;
  opacity: 0.55;
}

.dark .evt-meta__extra { opacity: 1; color: rgba(255,255,255,0.5); }

.evt-card.past { opacity: 0.45; pointer-events: none; }

.no-events {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  font-family: var(--font-heading); font-size: 14px; color: var(--muted);
}

.cta-banner { background: var(--yellow); padding: 64px var(--pad-x); }

.cta-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}

.cta-banner-title {
  font-size: clamp(28px, 3vw, 40px); font-weight: 600; font-family: var(--font-heading);
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1;
}

.cta-banner-sub {
  font-size: 14px; color: rgba(26,26,26,0.65); margin-top: 6px; max-width: 380px; text-wrap: pretty;
}

.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 900px) {
  .evt-grid { grid-template-columns: repeat(2, 1fr); }
  .events-section { padding: 48px var(--pad-x-mobile) 80px; }
}

@media (max-width: 560px) {
  .evt-grid { grid-template-columns: 1fr; }
  .evt-card { min-height: 220px; }
}

@media (max-width: 768px) {
  .cta-banner { padding: 48px var(--pad-x-mobile); }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════
   15. PAGE: BLOG
   ══════════════════════════════════════════ */
.blog-hero {
  margin-top: var(--header-h); background: var(--dark);
  padding: 72px var(--pad-x) 60px; position: relative; overflow: hidden;
}

.blog-hero::after {
  content: 'BLOG'; position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-heading); font-weight: 800; font-size: 200px;
  color: rgba(255,255,255,0.03); letter-spacing: -0.04em; line-height: 1;
  pointer-events: none; user-select: none;
}

.blog-hero-inner { max-width: var(--max-w); margin: 0 auto; }

.blog-hero-breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 16px;
  font-family: var(--font-heading); letter-spacing: 0.06em; text-transform: uppercase;
}

.blog-hero-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.blog-hero-breadcrumb a:hover { color: var(--yellow); }
.blog-hero-breadcrumb span { margin: 0 8px; }

.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; color: #fff;
}

.blog-hero h1 em { color: var(--yellow); font-style: normal; }

.blog-hero-sub { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 480px; line-height: 1.6; }

@media (max-width: 768px) { .blog-hero { padding: 40px var(--pad-x-mobile); } }

.cat-nav-wrap {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-h); z-index: 100;
}

.cat-nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}

.cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-nav-btn {
  flex-shrink: 0; padding: 18px 16px; border: none; background: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted);
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; margin-bottom: -1px;
}

.cat-nav-btn:hover { color: var(--dark); }
.cat-nav-btn.active { color: var(--dark); border-bottom-color: var(--yellow); }

@media (max-width: 768px) { .cat-nav-inner { padding: 0 var(--pad-x-mobile); } }

.featured-section { max-width: var(--max-w); margin: 0 auto; padding: 64px var(--pad-x) 0; }

.featured-post {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border: 0.5px solid var(--border); border-radius: 16px;
  overflow: hidden; cursor: pointer; transition: box-shadow 0.3s;
  text-decoration: none; color: inherit;
}

.featured-post:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.featured-post-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }

.featured-post-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease;
}

.featured-post:hover .featured-post-img img { transform: scale(1.04); }

.featured-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--yellow); color: var(--dark);
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}

.featured-post-body {
  padding: 52px; display: flex; flex-direction: column; justify-content: center;
}

.post-category {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
}

.featured-post-title {
  font-family: var(--font-heading); font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  line-height: 1.15; color: var(--dark); margin-bottom: 18px; text-wrap: pretty;
}

.featured-post-excerpt { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 32px; }

.post-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-author { display: flex; align-items: center; gap: 10px; }

.author-avatar {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 12px; font-weight: 800; color: var(--dark); flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.author-name  { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--dark); }
.author-role  { font-size: 11px; color: var(--muted); }
.post-date    { font-family: var(--font-heading); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.post-read-time { font-family: var(--font-heading); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.meta-sep { color: var(--border); }

.read-link {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
  text-decoration: none; transition: gap 0.2s;
}

.read-link:hover { gap: 14px; }
.read-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.read-link:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img { aspect-ratio: 16/9; }
  .featured-post-body { padding: 32px 28px; }
  .featured-section { padding: 40px var(--pad-x-mobile) 0; }
}

.posts-section { max-width: var(--max-w); margin: 0 auto; padding: 56px var(--pad-x) 100px; }

.posts-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}

.posts-header h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; }

.posts-all-link {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}

.posts-all-link:hover { color: var(--dark); }

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

.post-card {
  background: #fff; border: 0.5px solid var(--border); border-radius: 12px;
  overflow: hidden; cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }

.post-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }

.post-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s;
}

.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow); color: var(--dark);
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}

.post-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }

.post-card-title {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  line-height: 1.25; color: var(--dark); margin-bottom: 10px; text-wrap: pretty;
}

.post-card-excerpt { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 18px; flex: 1; }

.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; gap: 8px;
}

.post-card-meta {
  font-family: var(--font-heading); font-size: 10px; color: var(--muted);
  letter-spacing: 0.04em; display: flex; gap: 8px; align-items: center;
}

.post-card-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); flex-shrink: 0; transition: background 0.15s, border-color 0.15s;
}

.post-card:hover .post-card-arrow { background: var(--yellow); border-color: var(--yellow); }
.post-card-arrow svg { width: 12px; height: 12px; }

.post-card.wide { grid-column: span 2; flex-direction: row; }
.post-card.wide .post-card-img { aspect-ratio: auto; flex: 0 0 340px; }
.post-card.wide .post-card-title { font-size: 26px; }

.newsletter-strip { background: var(--dark); padding: 64px var(--pad-x); }

.newsletter-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; color: #fff; margin-bottom: 8px;
}

.newsletter-text h3 em { color: var(--yellow); font-style: normal; }
.newsletter-text p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.newsletter-form { display: flex; gap: 0; flex-shrink: 0; min-width: 360px; }

.newsletter-input {
  flex: 1; padding: 14px 20px; border: none; border-radius: 999px 0 0 999px;
  font-family: var(--font-body); font-size: 14px;
  background: #2a2a2a; color: #fff; outline: none; transition: background 0.2s;
}

.newsletter-input::placeholder { color: #555; }
.newsletter-input:focus { background: #333; }

.newsletter-btn {
  padding: 14px 28px; background: var(--yellow); color: var(--dark); border: none; cursor: pointer;
  border-radius: 0 999px 999px 0;
  font-family: var(--font-heading); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; transition: opacity 0.2s;
}

.newsletter-btn:hover { opacity: 0.9; }

@media (max-width: 1100px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card.wide { grid-column: span 1; flex-direction: column; }
  .post-card.wide .post-card-img { flex: none; aspect-ratio: 16/10; }
}

@media (max-width: 640px)  { .posts-grid { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .posts-section { padding: 40px var(--pad-x-mobile) 60px; }
  .newsletter-strip { padding: 48px var(--pad-x-mobile); }
  .newsletter-form { min-width: 100%; width: 100%; }
}


/* ══════════════════════════════════════════
   16. PAGE: POST (single)
   ══════════════════════════════════════════ */
.post-hero {
  margin-top: var(--header-h); background: var(--dark);
  position: relative; min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}

.post-hero-bg { position: absolute; inset: 0; }

.post-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; display: block; opacity: 0.4;
}

.post-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.2) 100%);
}

.post-hero-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto; width: 100%;
  padding: 0 40px 60px;
}

.post-hero-breadcrumb {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}

.post-hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.post-hero-breadcrumb a:hover { color: var(--yellow); }

.post-category-badge {
  display: inline-block; background: var(--yellow); color: var(--dark);
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
}

.post-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 58px); font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 28px; text-wrap: pretty;
}

.post-hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.post-hero-details {
  font-family: var(--font-heading); font-size: 12px;
  color: rgba(255,255,255,0.5); display: flex; gap: 12px; align-items: center;
}

.post-hero-details span { display: flex; align-items: center; gap: 5px; }

.read-progress {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
  height: 3px; background: var(--border);
}

.read-progress-bar { height: 100%; background: var(--yellow); width: 0%; transition: width 0.1s linear; }

@media (max-width: 768px) {
  .post-hero { min-height: 380px; }
  .post-hero-content { padding: 0 var(--pad-x-mobile) 40px; }
}

.article-wrap {
  max-width: 1200px; margin: 0 auto; padding: 72px 40px 100px;
  display: grid; grid-template-columns: 1fr 300px; gap: 80px; align-items: start;
}

.article-body { min-width: 0; }

.article-lead {
  font-size: 20px; line-height: 1.65; color: #2a2a2a; margin-bottom: 40px;
  font-family: var(--font-body); border-left: 3px solid var(--yellow); padding-left: 24px;
}

.article-content h2 {
  font-family: var(--font-heading); font-size: 30px; font-weight: 800;
  color: var(--dark); margin: 52px 0 18px; line-height: 1.2;
}

.article-content h3 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); margin: 36px 0 12px;
}

.article-content p { font-size: 17px; line-height: 1.8; color: #333; margin-bottom: 24px; }
.article-content strong { color: var(--dark); font-weight: 700; }

.article-content a {
  color: var(--dark); text-decoration: underline; text-underline-offset: 3px;
}

.article-content a:hover { color: var(--yellow); text-decoration-color: var(--yellow); }

.article-img { margin: 40px 0; border-radius: 12px; overflow: hidden; }

.article-img img { width: 100%; display: block; aspect-ratio: 16/8; object-fit: cover; }

.article-img figcaption {
  font-family: var(--font-heading); font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em; padding: 10px 0 0; text-align: center;
}

.article-pullquote {
  background: var(--dark); color: #fff; padding: 40px 48px;
  border-radius: 12px; margin: 44px 0; position: relative; overflow: hidden;
}

.article-pullquote::before {
  content: '"'; position: absolute; top: -20px; left: 24px;
  font-size: 140px; color: var(--yellow); opacity: 0.25;
  line-height: 1; pointer-events: none; user-select: none;
}

.article-pullquote p {
  font-family: var(--font-heading); font-style: italic;
  font-size: 22px; line-height: 1.5; color: #fff; margin: 0; position: relative; z-index: 1;
}

.article-pullquote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow);
  font-style: normal; position: relative; z-index: 1;
}

.article-factbox {
  background: #fff; border: 0.5px solid var(--border); border-top: 3px solid var(--yellow);
  border-radius: 0 0 12px 12px; padding: 28px 32px; margin: 40px 0;
}

.factbox-title {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}

.factbox-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.factbox-list li {
  font-size: 15px; color: #333; line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}

.factbox-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0; margin-top: 8px;
}

.article-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid var(--border);
}

.article-tag {
  display: inline-block; font-family: var(--font-heading);
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  border: 1.5px solid var(--border); color: var(--muted); text-decoration: none; transition: all 0.15s;
}

.article-tag:hover { background: var(--dark); color: var(--yellow); border-color: var(--dark); }

.article-share { margin-top: 36px; display: flex; align-items: center; gap: 12px; }

.share-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

.share-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: all 0.15s; text-decoration: none;
}

.share-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.share-btn svg { width: 14px; height: 14px; }

.author-bio {
  background: #fff; border: 0.5px solid var(--border); border-radius: 12px;
  padding: 28px 32px; margin-top: 48px; display: flex; gap: 20px; align-items: flex-start;
}

.author-bio-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--dark);
}
.author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.author-bio-name {
  font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 2px;
}

.author-bio-role {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}

.author-bio-text { font-size: 13px; color: #666; line-height: 1.6; }

.sidebar-sticky { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }

.toc-box { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; padding: 24px; }

.toc-title {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}

.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.toc-list a {
  display: block; padding: 7px 10px; border-radius: 8px;
  font-size: 13px; color: #555; text-decoration: none;
  transition: background 0.15s, color 0.15s; line-height: 1.4;
}

.toc-list a:hover,
.toc-list a.active { background: var(--yellow); color: var(--dark); }

.sidebar-products { background: var(--dark); border-radius: 12px; padding: 24px; overflow: hidden; }

.sidebar-products-title {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}

.sidebar-product {
  display: flex; gap: 14px; align-items: center; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none; cursor: pointer;
}

.sidebar-product:last-of-type { border-bottom: none; }

.sidebar-product-img {
  width: 52px; height: 64px; border-radius: 8px; flex-shrink: 0;
  overflow: hidden; background: #2a2a2a;
}

.sidebar-product-img img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-product-name {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  color: #fff; margin-bottom: 3px; line-height: 1.3;
}

.sidebar-product-style {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}

.sidebar-product-price {
  font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--yellow);
}

.sidebar-shop-link {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow);
  text-decoration: none; transition: gap 0.2s;
}

.sidebar-shop-link:hover { gap: 14px; }
.sidebar-shop-link svg { width: 14px; height: 14px; }

.related-section {
  background: #fff; border-top: 1px solid var(--border); padding: 72px var(--pad-x) 100px;
}

.related-inner { max-width: 1200px; margin: 0 auto; }

.related-title {
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 36px;
}

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

.related-card {
  background: var(--cream); border: 0.5px solid var(--border); border-radius: 12px;
  overflow: hidden; cursor: pointer; text-decoration: none; color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.related-card-img { aspect-ratio: 16/9; overflow: hidden; }

.related-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block;
}

.related-card:hover .related-card-img img { transform: scale(1.05); }

.related-card-body { padding: 18px 20px 20px; }

.related-card-cat {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px;
}

.related-card-title {
  font-family: var(--font-heading); font-size: 17px; font-weight: 700;
  line-height: 1.25; color: var(--dark); margin-bottom: 10px;
}

.related-card-meta { font-family: var(--font-heading); font-size: 10px; color: var(--muted); }

@media (max-width: 1024px) {
  .article-wrap { grid-template-columns: 1fr; gap: 48px; padding: 48px var(--pad-x-mobile) 60px; }
}

@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

@media (max-width: 768px) { .related-section { padding: 48px var(--pad-x-mobile) 60px; } }


/* ══════════════════════════════════════════
   18. MODAL RESERVAR
   ══════════════════════════════════════════ */

/* ── Overlay backdrop ── */
.reservar-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}

.reservar-overlay.open {
  opacity: 1; pointer-events: all;
}

/* ── Panel (mobile: bottom sheet) ── */
.reservar-modal {
  background: var(--cream); width: 100%; max-height: 92dvh;
  border-radius: 20px 20px 0 0; overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

.reservar-overlay.open .reservar-modal { transform: translateY(0); }

/* ── Drag handle (mobile only) ── */
.reservar-handle {
  display: block; flex-shrink: 0;
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 10px auto 0;
}

/* ── Header bar ── */
.reservar-modal-header {
  background: var(--dark); padding: 16px 20px 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.reservar-modal-logo {
  font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff; line-height: 1;
}

.reservar-modal-logo span { color: var(--yellow); }

.reservar-modal-subtitle {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 5px;
}

.reservar-close-btn {
  width: 36px; height: 36px; flex-shrink: 0;
  padding: 0;
  border: 0; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--yellow);
  transition: border-color 0.2s, color 0.2s; min-width: 44px; min-height: 44px;
}

.reservar-close-btn:hover { border-color: var(--yellow); color: var(--dark); }
.reservar-close-btn svg  { width: 16px; height: 16px; }

/* ── Body / iframe container ── */
.reservar-modal-body {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: #fff; position: relative;
}

.reservar-modal-body iframe { display: block; width: 100%; border: none; min-height: 500px; }

/* Loading skeleton mientras carga el iframe */
.reservar-modal-body.loading iframe { visibility: hidden; }

.reservar-modal-body.loading::before {
  content: ''; position: absolute; top: 60px; left: 50%; transform: translateX(-50%);
  display: block; height: 3px; width: 40%; border-radius: 2px;
  background: var(--yellow); animation: reservar-pulse 1.2s ease-in-out infinite;
}

.reservar-modal-body.loading::after {
  content: 'Cargando...'; position: absolute; top: 80px; width: 100%; text-align: center;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

@keyframes reservar-pulse {
  0%, 100% { width: 30%; opacity: 0.6; }
  50%       { width: 55%; opacity: 1;   }
}

/* ── Desktop: tarjeta centrada ── */
@media (min-width: 640px) {
  .reservar-overlay { align-items: center; padding: 24px; }

  .reservar-modal {
    max-width: 620px; border-radius: 20px; max-height: 88dvh;
    transform: scale(0.94) translateY(20px);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.28s ease;
  }

  .reservar-overlay.open .reservar-modal { transform: scale(1) translateY(0); opacity: 1; }
  .reservar-handle { display: none; }
}

@media (max-width: 480px) {
  .reservar-modal { max-height: 96dvh; border-radius: 16px 16px 0 0; }
}


/* ══════════════════════════════════════════
   19. RESET ASTRA — eliminar azul en hover/focus
   ══════════════════════════════════════════ */

/*
 * Astra aplica var(--ast-global-color-1) (azul) en :hover / :focus
 * a botones nativos y bloques Gutenberg. Aquí lo sobreescribimos.
 * html body prefix sube la especificidad por encima de los selectores de Astra.
 */

/* Redefinir el color global de Astra al amarillo de marca */
:root {
  --ast-global-color-1: #FEC105;
  --ast-global-color-4: #FEC105;  /* Astra usa 4 como "hover" en algunas versiones */
}

/* Botones genéricos (WP, WooCommerce, bloques) que NO usan nuestra clase .btn */
html body .button:not(.btn):hover,
html body .button:not(.btn):focus-visible,
html body input[type="submit"]:hover,
html body input[type="submit"]:focus-visible,
html body input[type="button"]:hover,
html body input[type="button"]:focus-visible,
html body input[type="reset"]:hover,
html body input[type="reset"]:focus-visible,
html body .wp-block-button__link:hover,
html body .wp-block-button__link:focus-visible,
html body .woocommerce a.button:hover,
html body .woocommerce a.button:focus-visible,
html body .woocommerce button.button:not(.btn):hover,
html body .woocommerce button.button:not(.btn):focus-visible,
html body .ast-button:hover,
html body .ast-button:focus-visible {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--dark) !important;
}

/* Botones WooCommerce que tienen fondo oscuro por defecto (alt, secondary) */
html body .woocommerce button.button.alt:not(.btn):hover,
html body .woocommerce button.button.alt:not(.btn):focus-visible,
html body .single_add_to_cart_button:not(.btn):hover,
html body .single_add_to_cart_button:not(.btn):focus-visible {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
  color: var(--yellow) !important;
}

/* Anillos de foco — sustituir azul por amarillo en toda la web */
:focus-visible {
  outline-color: var(--yellow);
}

html body a:not([class]):focus-visible,
html body a[class=""]:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Links en contenido (artículos, páginas) que heredan azul de Astra en hover */
html body .entry-content a:hover,
html body .article-content a:hover {
  color: var(--dark);
}


/* ══════════════════════════════════════════
   18. PAGE: Catas
   ══════════════════════════════════════════ */

/* ── Hero ──────────────────────────────── */
.catas-hero {
  margin-top: 0;
  background: var(--dark);
  padding: 56px var(--pad-x-mobile) 64px;
  position: relative;
  overflow: hidden;
}
.catas-hero::after {
  content: 'CATAS';
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-heading); font-weight: 800; font-size: 200px;
  color: rgba(255,255,255,0.03); letter-spacing: -0.04em; line-height: 1;
  pointer-events: none; user-select: none;
}
.catas-hero-inner {
  max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1;
}
.catas-breadcrumb {
  font-family: var(--font-heading); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.catas-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.catas-breadcrumb a:hover { color: var(--yellow); }
.catas-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 92px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 0.95; color: #fff;
  text-transform: uppercase; max-width: 900px;
}
.catas-hero h1 em { color: var(--yellow); font-style: normal; }
.catas-hero > .catas-hero-inner > p {
  font-size: 17px; color: var(--muted); line-height: 1.6;
  max-width: 540px; margin-top: 24px;
}
.catas-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 36px;
  color: var(--yellow); line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  margin-top: 6px;
}

@media (min-width: 768px) {
  .catas-hero { padding: 80px var(--pad-x) 90px; }
}

/* ── Tres cards ─────────────────────────── */
.catas-section {
  max-width: var(--max-w); margin: 0 auto;
  padding: 56px var(--pad-x-mobile);
}
.catas-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.cata-card {
  background: #fff; border: 0.5px solid var(--border); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.cata-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

/* dark variant */
.cata-card--dark { background: var(--dark); color: #fff; }
.cata-card--dark .cata-card-name { color: #fff; }
.cata-card--dark .cata-card-desc { color: var(--muted); }
.cata-card--dark .cata-feature { color: #EDECEA; }
.cata-card--dark .cata-features { border-color: rgba(255,255,255,0.1); }
.cata-card--dark .price-amount { color: var(--yellow); }
.cata-card--dark .price-suffix,
.cata-card--dark .price-from { color: var(--muted); }

.cata-card-img {
  aspect-ratio: 4/3; width: 100%; position: relative; overflow: hidden;
}
.cata-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cata-card:hover .cata-card-img img { transform: scale(1.04); }
.cata-card-img .img-placeholder {
  height: 100%; width: 100%; min-height: 220px;
  background: #e8e7e4;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0,0,0,0.04) 4px, rgba(0,0,0,0.04) 8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: monospace; font-size: 12px;
}
.cata-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: var(--yellow); color: var(--dark);
}
.cata-badge--dark { background: var(--dark); color: var(--yellow); }

.cata-card-body {
  padding: 28px; display: flex; flex-direction: column; flex: 1;
}
.cata-card-eyebrow {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 10px;
}
.cata-card-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 28px; letter-spacing: -0.01em; line-height: 1.1;
  color: var(--dark); margin-bottom: 10px;
}
.cata-card-desc {
  font-size: 14px; color: var(--dark-muted); line-height: 1.6; margin-bottom: 24px;
}
.cata-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; margin-left: 0; padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cata-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--dark-muted); line-height: 1.4;
}
.cata-feature svg { width: 14px; height: 14px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.cata-price-row {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px;
}
.price-from {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.price-amount {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 38px; letter-spacing: -0.02em; color: var(--dark);
}
.price-suffix {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.cata-cta {
  width: 100%; padding: 14px 20px; border-radius: 999px;
  background: var(--yellow); color: var(--dark); border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: auto; text-decoration: none;
}
.cata-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,193,5,0.4); }
.cata-cta--outline {
  background: transparent; color: #fff; border: 2px solid var(--yellow);
}
.cata-cta--outline:hover { background: var(--yellow); color: var(--dark); box-shadow: none; }

@media (min-width: 768px) {
  .catas-section { padding: 80px var(--pad-x); }
}
@media (min-width: 1024px) {
  .catas-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ── Card note ─────────────────────────── */
.cata-card-note {
  font-size: 12px; color: var(--muted); margin: -8px 0 12px;
  font-style: italic; line-height: 1.5;
}

/* ── Vale regalo banner ─────────────────── */
.vale-banner {
  display: flex; align-items: center; gap: 32px;
  background: var(--dark); border-radius: 16px;
  padding: 28px 36px; margin-top: 40px;
}
.vale-banner__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(254,193,5,0.15); color: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vale-banner__content { flex: 1; min-width: 0; }
.vale-banner__label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px;
}
.vale-banner__title {
  font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; color: #fff; margin: 0 0 4px;
}
.vale-banner__desc { font-size: 14px; color: var(--muted); margin: 0; }
.vale-banner__cta {
  display: flex; align-items: center; gap: 24px; flex-shrink: 0;
}
.vale-banner__price { display: flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.vale-banner__amount {
  font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--yellow);
}
.vale-banner__suffix {
  font-family: var(--font-heading); font-size: 11px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .vale-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .vale-banner__cta { width: 100%; flex-direction: column; align-items: flex-start; gap: 16px; }
  .vale-banner__cta .cata-cta { width: 100%; justify-content: center; }
}

/* ── Cómo funciona ──────────────────────── */
.catas-how {
  background: #fff; border-top: 1px solid var(--border);
}
.catas-how__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 56px var(--pad-x-mobile);
}
.catas-how__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 40px;
}
.catas-how__step { display: flex; flex-direction: column; gap: 12px; }
.catas-how__num {
  font-family: var(--font-heading); font-weight: 800; font-size: 56px;
  color: var(--yellow); line-height: 1; letter-spacing: -0.04em;
}
.catas-how__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--dark);
}
.catas-how__desc { font-size: 14px; color: var(--dark-muted); line-height: 1.6; }

@media (min-width: 768px) {
  .catas-how__inner { padding: 80px var(--pad-x); }
}
@media (min-width: 1024px) {
  .catas-how__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── FAQ ───────────────────────────────── */
.catas-faq { background: var(--cream); }
.catas-faq__inner {
  max-width: 980px; margin: 0 auto;
  padding: 56px var(--pad-x-mobile);
}
.catas-faq__list {
  display: flex; flex-direction: column; gap: 12px; margin-top: 40px;
}
.catas-faq__item {
  background: #fff; border: 0.5px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: border-color 0.2s;
}
.catas-faq__item.is-open { border-color: var(--yellow); }
.catas-faq__q {
  width: 100%; padding: 22px 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  color: var(--dark); background: none; border: none; text-align: left;
}
.catas-faq__toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--dark);
  line-height: 1;
}
.catas-faq__item.is-open .catas-faq__toggle { transform: rotate(45deg); background: var(--yellow); }
.catas-faq__a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  font-size: 14px; line-height: 1.7; color: var(--dark-muted);
}
.catas-faq__a-inner { padding: 16px 28px 24px; }
.catas-faq__item.is-open .catas-faq__a { max-height: 400px; }

@media (min-width: 768px) {
  .catas-faq__inner { padding: 80px var(--pad-x); }
}


/* ══════════════════════════════════════════
   19. MODAL: Cata Abierta
   ══════════════════════════════════════════ */

/* Overlay */
.cata-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 1; transition: opacity 0.3s;
}
.cata-modal[aria-hidden="true"] {
  opacity: 0; pointer-events: none;
}

/* Dialog box */
.cata-modal__inner {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 540px; max-height: 92vh;
  overflow: hidden; display: flex; flex-direction: column;
  transform: translateY(0) scale(1);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cata-modal[aria-hidden="true"] .cata-modal__inner {
  transform: translateY(20px) scale(0.98);
}

/* Header */
.cata-modal__header {
  padding: 22px 24px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  flex-shrink: 0;
}
.cata-modal__eyebrow {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 5px;
}
.cata-modal__title {
  font-family: var(--font-heading); font-weight: 800; font-size: 21px;
  letter-spacing: -0.01em; color: var(--dark); line-height: 1.1;
}
.cata-modal__close {
  padding: 0;
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border); background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--dark);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cata-modal__close:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.cata-modal__close svg { width: 16px; height: 16px; }

/* Body (scrollable) */
.cata-modal__body {
  flex: 1; overflow-y: auto; padding: 24px;
}
.cata-modal__step-label {
  display: block;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}

/* Step: personas hint */
.cata-modal__stepper-hint {
  font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.5;
}

/* Step: error */
.cata-modal__error-msg {
  font-size: 15px; color: #b82c2c; line-height: 1.6;
  background: #fde8e8; border-radius: 10px; padding: 16px 20px;
  margin-bottom: 20px;
}

/* Step: cargando */
.cata-modal__cargando-msg {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-top: 20px; text-align: center;
}
.cata-modal__spinner {
  width: 40px; height: 40px; margin: 40px auto 0;
  border: 3px solid var(--border);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: cata-spin 0.75s linear infinite;
}
@keyframes cata-spin { to { transform: rotate(360deg); } }

[data-step="cargando"] { text-align: center; padding-bottom: 40px; }

/* Footer */
.cata-modal__footer {
  padding: 18px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--cream); flex-shrink: 0;
}
.cata-modal__summary { display: flex; flex-direction: column; }
.cata-modal__summary-label {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.cata-modal__summary-total {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em; color: var(--dark);
}
.cata-modal__footer-actions {
  display: flex; align-items: center; gap: 10px;
}
.cata-modal__back-btn {
  padding: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--dark);
  transition: background 0.15s, border-color 0.15s; flex-shrink: 0;
}
.cata-modal__back-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.cata-modal__back-btn svg { width: 16px; height: 16px; }

/* ── Date grid ──────────────────────────── */
.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}
.date-card {
  border: 1.5px solid var(--border); background: #fff; border-radius: 10px;
  padding: 12px 10px; cursor: pointer;
  text-align: center; transition: border-color 0.15s, background 0.15s;
  display: flex; flex-direction: column; gap: 2px;
}
.date-card:hover { border-color: var(--dark); }
.date-card.selected { background: var(--dark); border-color: var(--dark); }
.date-day-name {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.date-card.selected .date-day-name { color: var(--yellow); }
.date-day-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em; color: var(--dark);
}
.date-card.selected .date-day-num { color: #fff; }
.date-month {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.date-card.selected .date-month { color: rgba(255,255,255,0.7); }
.date-spots {
  font-family: var(--font-heading); font-size: 9px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #22c55e; margin-top: 4px;
}
.date-spots--few { color: #f59e0b; }
.date-card.selected .date-spots { color: var(--yellow); }

/* ── Time pills ─────────────────────────── */
.time-row { display: flex; gap: 8px; flex-wrap: wrap; }
.time-pill {
  padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 999px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  background: #fff; color: var(--dark); cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.time-pill:hover { border-color: var(--dark); }
.time-pill.selected { background: var(--dark); border-color: var(--dark); color: var(--yellow); }

/* ── Stepper ────────────────────────────── */
.stepper {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 999px;
  background: #fff; overflow: hidden;
}
.stepper-btn {
  width: 44px; height: 46px; background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.stepper-btn:hover { background: var(--cream); }
.stepper-btn:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.stepper-val {
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  width: 48px; text-align: center; color: var(--dark);
}

/* ── Contact form fields ────────────────── */
.cata-modal__form .field-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.field-label {
  display: block;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark);
  margin-bottom: 8px;
}
.field-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: var(--cream); outline: none; appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.field-input:focus { border-color: var(--yellow); background: #fff; }

@media (min-width: 480px) {
  .cata-modal__form .field-row { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* ── Confirm button ─────────────────────── */
.confirm-btn {
  padding: 13px 24px; border-radius: 999px;
  background: var(--yellow); color: var(--dark); border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.confirm-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,193,5,0.4); }
.confirm-btn:disabled { opacity: 0.5; pointer-events: none; }
.confirm-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
