/* ========== RESET & VARIABLES ========== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand:      #5366ad;
    --brand-dark: #3d4f96;
    --dark-bg:    #1a1a2e;
    --footer-bg:  #111122;
    --text-light: #e8e8e8;
    --accent:     #c8002c;
    --grey-pill:  #c9c9c9;
    --blue-label: #3366ff;
    --white:      #ffffff;
    --font-head:  'Exo', sans-serif;
    --font-body:  'Playfair Display', serif;
    --font-roboto: "Roboto", sans-serif;
    --max-w:      1200px;
    --header-h:   80px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-head); color: #222; background: #fff; overflow-x: hidden; }
  img  { display: block; max-width: 100%; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }

  /* ========== HEADER ========== */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26,26,46,0.93);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(83,102,173,0.3);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }

  /* ── Botón reserva ── */
.reserva-wrap {
  text-align: center;
  margin: 24px 0 40px;
}

.btn-reserva {
  display: inline-block;
  padding: 14px 40px;
  background-color: #b8860b; /* ajusta al color dorado del resto de la web */
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #b8860b;
  transition: background-color 0.3s, color 0.3s;
}

.btn-reserva:hover {
  background-color: transparent;
  color: #b8860b;
}

  .logo img { height: 55px; width: auto; object-fit: contain; }

  nav ul { display: flex; gap: 4px; }

  nav ul li a {
    color: var(--text-light);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  nav ul li a:hover { color: #fff; }
  nav ul li a:hover::after { transform: scaleX(1); }
  nav ul li.active a { color: var(--brand); }
  nav ul li.active a::after { transform: scaleX(1); }

  /* ========== HAMBURGER ========== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-light); transition: 0.3s; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26,26,46,0.98);
    padding: 16px 0;
    z-index: 998;
    flex-direction: column;
    border-top: 1px solid rgba(83,102,173,0.3);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav li a {
    display: block;
    padding: 12px 30px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav li a:hover { color: var(--brand); padding-left: 40px; }
  .mobile-nav li.active a { color: var(--brand); }

  /* ========== HERO SLIDER con caption ========== */
  .hero {
    position: relative;
    width: 100%;
    margin-top: var(--header-h);
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 21/10;
    position: relative;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(26,26,46,0.25) 0%,
      rgba(26,26,46,0.55) 60%,
      rgba(26,26,46,0.7) 100%);
  }

  .hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-caption h2 {
    font-family: var(--font-roboto);
    font-weight: 900;
    font-size: clamp(28px, 5vw, 62px);
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.6);
    padding: 16px 40px;
  }

  /* ========== MAIN CONTENT WRAPPER ========== */
  .page-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 50px 30px 0;
  }

  /* ========== PRICE PILL / BADGE ========== */
  .menu-pill {
    background: var(--dark-bg);
    border-radius: 15px;
    padding: 22px 30px;
    text-align: center;
    margin-bottom: 18px;
  }

  .menu-pill h1 {
    font-family: var(--font-roboto);
    font-weight: 900;
    font-size: clamp(15px, 3vw, 20px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
  }

  .menu-pill .pill-border {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* ========== SUBTITLE TEXT ========== */
  .menu-subtitle {
    text-align: center;
    margin-bottom: 32px;
  }

  .menu-subtitle p {
    font-family: var(--font-roboto);
    font-size: clamp(22px, 2.2vw, 24px);
    color: #555;
    line-height: 1.8;
    font-weight: 600;
  }

  /* ========== MENU DETAIL CARD ========== */
  .menu-detail {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 50px;
  }

  .menu-detail .detail-label {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-label);
    text-align: center;
    margin: 24px 0 8px;
  }

  .menu-detail .detail-label:first-child { margin-top: 0; }

  .menu-detail p {
    font-size: 20px;
    color: #444;
    text-align: center;
    line-height: 1.9;
    font-family: var(--font-roboto);
  }

  .menu-detail p em { color: #666; font-size: 14px; }
  .menu-detail p strong { color: #222; }

  .menu-detail .price-final {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 22px;
    color: var(--brand);
    text-align: center;
    margin-top: 10px;
  }

  .menu-detail .note-final {
    font-size: 13px;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 6px;
  }

  .menu-detail hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 18px auto;
    width: 60%;
  }

  /* ========== SPACER ========== */
  .spacer { height: 35px; }

  /* ========== IMAGE GRIDS ========== */

  /* 2-col grid */
  .img-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  /* 3-col grid */
  .img-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin-top: 5px;
  }

  /* shared cell styles */
  .img-cell {
    overflow: hidden;
    position: relative;
  }

  .img-cell img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .img-cell:hover img { transform: scale(1.05); }

  .img-gallery-wrap {
    margin-bottom: 60px;
  }

  /* ========== DIVIDER ========== */
  .divider { height: 1px; background: #e8e8e8; }

  /* ========== FOOTER INFO GRID ========== */
  .footer-info {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0;
  }

  .footer-info .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-col h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 13px;
    color: #aaa;
    line-height: 2;
  }

  .footer-col a:hover { color: var(--brand); }
  .footer-col .closed { color: var(--accent); font-weight: 700; }
  /* ========== SOCKET ========== */
  .socket {
    background: var(--footer-bg);
    padding: 18px 30px;
    text-align: center;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
  }

  /* ========== WHATSAPP BUTTON (footer) ========== */
  .footer-col-whatsapp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .whatsapp-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #b8860b;
    color: #fff !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 2px solid #b8860b;
    line-height: 1;
    transition: background 0.3s, color 0.3s, transform 0.2s;
  }
  .whatsapp-btn:hover { background: transparent; color: #b8860b !important; transform: translateY(-2px); }
  .whatsapp-btn svg { flex-shrink: 0; width: 16px; height: 16px; }

  @media (max-width: 900px) {
    .footer-col-whatsapp { justify-content: center; }
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }

    .hero-image { aspect-ratio: 4/3; }
    .hero-caption h2 { font-size: clamp(20px, 6vw, 36px); padding: 12px 22px; }

    .img-grid-2 { grid-template-columns: 1fr; }
    .img-grid-3 { grid-template-columns: 1fr 1fr; }

    .menu-detail { padding: 24px 20px; }
    .footer-info .container { grid-template-columns: 1fr 1fr; gap: 28px; }
    .page-content { padding: 30px 20px 0; }
  }

  @media (max-width: 550px) {
    .img-grid-3 { grid-template-columns: 1fr; }
    .footer-info .container {
      grid-template-columns: 1fr;
      text-align: center;
      flex-direction: column;
      align-items: center;
    }
    .footer-col { width: 100%; }
    .footer-col-whatsapp { justify-content: center; }
    .hero-image { aspect-ratio: 3/2; }
  }

  /* ── FIX: botón reserva visible en móvil ── */
@media (max-width: 768px) {

  .reserva-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    margin: 20px auto;
    padding-bottom: 10px;
  }

  .btn-reserva {
    display: inline-block;
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
 
}

/* ========== COOKIESCRIPT - BOTÓN ACEPTAR TODO ========== */
#cookiescript_accept,
.cookiescript_accept {
  background: #b8860b !important;
  border-color: #b8860b !important;
  color: #fff !important;
}

#cookiescript_accept:hover,
.cookiescript_accept:hover {
  background: transparent !important;
  color: #b8860b !important;
}