﻿:root {
  --bg: #050507;
  --bg-soft: #111218;
  --card-bg: #16171f;
  --text-main: #f9f5ee;
  --text-muted: #c1b6ae;
  --accent: #8b1b2b;
  --accent-soft: #6f7380;
  --accent-gold: #e0b76a;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.85);
  --max-width: 1140px;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1b20 0, #050507 58%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Idiomas */
.text-en {
  display: none;
}

body.lang-en .text-es {
  display: none;
}

body.lang-en .text-en {
  display: inline;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(5, 3, 7, 0.96), rgba(5, 3, 7, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 1.5rem 0.5rem;
  align-items: center;
}

.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo-img {
  width: 320px;
  max-width: 80vw;
  height: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1rem;
  padding: 0.2rem 0 0.6rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  position: relative;
}

.nav a:hover {
  color: var(--accent-gold);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-soft));
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.lang-btn {
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
}

.lang-btn.active {
  color: var(--accent-gold);
  font-weight: 500;
}

/* BOTONES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease,
    transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #8b1b2b, #b02f3b);
  color: #fffaf4;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.8);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* SECCIONES GENERALES */

.section {
  padding: 4.5rem 0;
}

.section-bg-soft {
  background: radial-gradient(circle at top, #171821 0, #050507 60%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 26rem;
}

.card {
  background: radial-gradient(circle at top left, #1a1b24 0, #050507 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

/* HERO */

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  color: #fdf9f4;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.78)),
    url("../img/interior-hero.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(200, 155, 60, 0.16), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.overline {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3.2vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 30rem;
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

/* EXPERIENCIA */

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.experience-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.experience-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.experience-bullets span {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.3);
}

/* Slider de imÃ¡genes de experiencia */
.experience-media {
  position: relative;
}

.experience-img {
  width: 100%;
  max-width: 480px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: opacity 0.6s ease;
  margin-inline: auto;
}



.experience-img.is-fading {
  opacity: 0;
}

/* CARTA */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.menu-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.menu-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-grid-links .menu-link {
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.menu-grid-links .menu-link:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 168, 72, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

/* RESERVAS */

.reservations {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.reservations-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0.8rem 0 1rem;
}

.reservations-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.reservations-list li {
  margin-bottom: 0.45rem;
  position: relative;
  padding-left: 1.4rem;
}

.reservations-list li::before {
  content: "â€¢";
  position: absolute;
  left: 0.3rem;
  top: 0.1rem;
  color: var(--accent-gold);
}

.reservations-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.reservations-box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #1a1b24 0, #050507 60%);
  padding: 1.4rem 1.3rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.reservations-box p {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.reservations-hours {
  margin-top: 0.8rem;
}

/* Bloque de horarios de apertura */
.opening-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0.8rem;
  font-size: 0.85rem;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.14rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.opening-hours .day {
  font-weight: 500;
}

.opening-hours .hours {
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .opening-hours li {
    flex-direction: column;
    align-items: flex-start;
  }

  .opening-hours .hours {
    text-align: left;
    white-space: normal;
  }
}

/* CONTACTO */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-intro {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0.8rem 0 1.2rem;
}

.contact-item {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.contact-label {
  font-weight: 500;
  color: var(--text-main);
  margin-right: 0.25rem;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 220px;
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* MODALES */

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  /* Allow scroll from top */
  justify-content: center;
  z-index: 80;
  overflow-y: auto;
  /* Page scroll */
  padding: 1rem 0;
}

.modal--visible {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at top left, #1a1b24 0, #050307 80%);
  color: var(--text-main);
  border-radius: 16px;
  /* Smaller radius */
  padding: 1.2rem;
  /* Much smaller padding */
  max-width: 380px;
  /* Much narrower width */
  width: 90%;
  /* Center in scrollable container */
  margin: auto;

  /* Halo & Border Effect */
  border: 1px solid rgba(255, 255, 255, 0.25);
  /* More marked border */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    /* Subtle inner rim */
    0 0 30px rgba(224, 183, 106, 0.15),
    /* Gold Illuminated Halo */
    0 20px 60px rgba(0, 0, 0, 0.6);
  /* Deep Drop Shadow */
}

.modal-dialog-menu {
  max-width: 720px;
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  /* Smaller title */
  margin-bottom: 0.8rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-form {
  font-size: 0.95rem;
}

.modal-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.modal-form-row.two-cols {
  flex-direction: row;
  gap: 0.9rem;
}

.modal-form-row.two-cols label {
  flex: 1;
}

/* --- Inputs Compact --- */
.modal-form label {
  gap: 0.15rem;
  /* Tighter labels */
  font-size: 0.9rem;
}

.modal-form input,
.modal-form textarea,
.modal-form select,
.form-input-trigger {
  width: 100%;
  /* Fix overflow */
  box-sizing: border-box;
  /* Include padding in width */
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.4rem 0.7rem;
  /* Very compact */
  font-size: 0.85rem;
  font-family: inherit;
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-main);
  text-align: left;
  /* Align trigger text */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-input-trigger span.has-value {
  color: var(--accent-gold);
  font-weight: 500;
}

.modal-form textarea {
  border-radius: 12px;
  resize: none;
  /* Disable manual resize */
  min-height: 0;
  height: 2.4rem;
  /* Initial tiny height (single line) */
  transition: height 0.3s ease;
  /* Smooth expansion */
  overflow: hidden;
}

.modal-form textarea:focus {
  height: 6rem;
  /* Expanded height on click */
  overflow-y: auto;
}

.phone-group {
  display: flex;
  gap: 0.5rem;
}

.phone-prefix {
  width: 80px !important;
  /* Fixed width for prefix */
  text-align: center !important;
}

.modal-form-actions {
  display: flex;
  flex-direction: row !important;
  /* Force Row */
  flex-wrap: nowrap !important;
  /* No wrapping */
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  width: 100%;
  /* Ensure fits */
}

/* Ensure nothing overflows */
.modal-dialog * {
  max-width: 100%;
}

.modal-form-actions button.btn {
  width: auto !important;
  /* Override mobile 100% */
  flex: 1;
  /* Equal width */
  padding: 0.5rem 0.4rem;
  /* Compact padding */
  font-size: 0.8rem;
}

.modal-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
  display: block;
  /* RESTORED */
}

.modal-disclaimer {
  font-size: 0.6rem;
  /* Tiny */
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 0.3rem;
  text-align: center;
  line-height: 1.2;
}

/* DiseÃ±o del modal del menÃº */
.menu-modal-heading {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.menu-modal-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.menu-modal-column {
  font-size: 0.95rem;
}

.menu-group-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.5rem;
  row-gap: 0.1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.menu-item-main {
  font-weight: 500;
}

.menu-item-sub {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-item-price {
  font-weight: 500;
  white-space: nowrap;
}

.menu-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}


.menu-full-link {
  margin-top: 1.4rem;
  text-align: center;
}

.menu-full-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 245, 238, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: #f9f5ee;
  font-size: 0.9rem;
  text-decoration: none;
  gap: 0.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.menu-full-link a:hover {
  border-color: rgba(224, 183, 106, 0.9);
  background: radial-gradient(circle at top, rgba(224, 183, 106, 0.18), rgba(0, 0, 0, 0.95));
}

@media (max-width: 640px) {
  .menu-full-link a {
    width: 100%;
  }
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.8rem 0 2.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #050307;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .experience,
  .reservations,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-dialog {
    padding-inline: 1.2rem;
  }

  .modal-form-row.two-cols {
    flex-direction: column;
  }
}

.modal-warning {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}


.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at top, rgba(224, 183, 106, 0.18), rgba(0, 0, 0, 0.9));
  transition: transform 0.15s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 183, 106, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.social-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #f9f5ee;
  stroke-width: 1.6;
}

.social-icon rect,
.social-icon circle,
.social-icon path {
  fill: #f9f5ee;
  stroke: none;
}


.nav-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.2rem 0;
  margin-top: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #f9f5ee;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .header-inner {
    align-items: stretch;
  }

  .header-top {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding-top: 0.4rem;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}


input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
  cursor: pointer;
}


.contact-intro-social {
  margin-top: 0.5rem;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.contact-social-links a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-social-links a:hover {
  opacity: 0.9;
}


.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  background: #ffffff;
  color: #000000;
  outline: none;
}


.social-link--instagram {
  border: none;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-link--facebook {
  border: none;
  background: #1877F2;
}

.social-link--instagram .social-icon rect,
.social-link--instagram .social-icon circle,
.social-link--instagram .social-icon path,
.social-link--facebook .social-icon rect,
.social-link--facebook .social-icon circle,
.social-link--facebook .social-icon path {
  fill: #ffffff;
  stroke: none;
}


.menu-modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.4rem;
  margin-right: -0.2rem;
}


.modal-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.modal-disclaimer a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.section-reviews {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 55%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.review-card {
  display: block;
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: #f9f5ee;
}


.review-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.review-stars {
  letter-spacing: 0.12em;
  color: #f6c453;
  font-size: 0.95rem;
}

.review-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.9rem;
  color: #f9f5ee;
}

.reviews-cta {
  margin-top: 1.6rem;
  text-align: center;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


.btn-fixed-reserve {
  position: fixed;
  inset-inline: 1.1rem;
  bottom: 0.9rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e0b76a, #f3d39b);
  color: #1b130a;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  z-index: 50;
}

@media (max-width: 768px) {
  .btn-fixed-reserve {
    display: inline-flex;
  }
}

.btn-fixed-reserve .text-en {
  margin-left: 0.25rem;
}


.modal-feedback-actions {
  justify-content: center;
  margin-top: 0.8rem;
}


.menu-modal-link {
  margin-top: 1.6rem;
  text-align: center;
}

.menu-modal-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 245, 238, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: #f9f5ee;
  font-size: 0.9rem;
  text-decoration: none;
  gap: 0.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.menu-modal-link a:hover {
  border-color: rgba(224, 183, 106, 0.9);
  background: radial-gradient(circle at top, rgba(224, 183, 106, 0.18), rgba(0, 0, 0, 0.95));
}

@media (max-width: 640px) {
  .menu-modal-link a {
    width: 100%;
  }
}


.review-card:hover {
  border-color: rgba(224, 183, 106, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}


.section-legal {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.02), transparent 55%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-legal .section-title {
  margin-bottom: 1.2rem;
}

.legal-text {
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #d6cec6;
}

.legal-text a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .section-legal {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}


.modal-legal-body {
  max-height: 60vh;
  overflow-y: auto;
  font-size: 0.9rem;
  color: #d6cec6;
  display: grid;
  gap: 0.6rem;
  padding-right: 0.4rem;
  margin-right: -0.2rem;
}

.modal-legal-body a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.menu-full-cta {
  margin-top: 1.8rem;
  text-align: center;
}

.menu-full-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 245, 238, 0.4);
  background: rgba(0, 0, 0, 0.7);
  color: #f9f5ee;
  font-size: 0.95rem;
  text-decoration: none;
  gap: 0.35rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8);
}

.menu-full-cta a:hover {
  border-color: rgba(224, 183, 106, 0.9);
  background: radial-gradient(circle at top, rgba(224, 183, 106, 0.18), rgba(0, 0, 0, 0.95));
}

@media (max-width: 640px) {
  .menu-full-cta a {
    width: 100%;
  }
}

.btn-chat-telegram {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 60;
}

.telegram-icon {
  width: 100%;
  height: 100%;
}

.telegram-icon circle {
  fill: #229ED9;
}

.telegram-icon path {
  fill: #ffffff;
}

.btn-chat-telegram:hover .telegram-icon circle {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .btn-chat-telegram {
    bottom: 4.4rem;
    /* para no pisar el botÃ³n de reservar */
  }
}

.btn-call {
  background: #1DB954;
  color: #ffffff;
  border: none;
}

.btn-call:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .site-header .header-right .btn[data-open-reservation="true"] {
    display: none;
  }
}

/* Telegram chat widget temporarily disabled */
.btn-chat-telegram {
  display: none !important;
}

@media (min-width: 769px) {
  .hero-ctas .btn-call {
    display: none;
  }
}

/* --- Public Calendar Styles (Extra Compact) --- */
.public-calendar {
  background: #fdfdfd;
  border-radius: 6px;
  /* Hidden State by default */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  border: none;
  margin-bottom: 0;
  transform: translateY(-5px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  /* Natural Ease */
}

.public-calendar.is-visible {
  max-height: 400px;
  /* Arbitrary large enough value */
  opacity: 1;
  padding: 0.3rem;
  border: 1px solid #ddd;
  margin-bottom: 0.6rem;
  transform: translateY(0);
}

.public-calendar .calendar-header {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #333;
  font-size: 0.85rem;
}

.public-calendar button {
  background: #eee;
  border: none;
  padding: 0.15rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.75rem;
}

.public-calendar button:hover {
  background: #ddd;
}

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

.calendar-day {
  aspect-ratio: 1;
  /* Square format */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 3px;
  font-size: 0.8rem;
  transition: all 0.2s;
  color: #333;
}

.calendar-day:hover:not(.is-blocked):not(.is-past) {
  background: #e0b76a;
  color: white;
}

.calendar-day.is-selected {
  background: #e0b76a;
  color: white;
  font-weight: bold;
  border: 2px solid #b88e3e;
}

.calendar-day.is-blocked {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.calendar-day.is-past {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

.calendar-weekdays-header div {
  color: #666;
  font-weight: 500;
}