/* --- VARIABILI GLOBALI E RESET --- */
:root {
  --orange: #ff7a00;
  --dark: #222;
  --mid: #444;
  --light: #ffffff;
  --muted: #9aa0a6;
  --bg: #0f0f0f;
  --dark-bg: #111;
  --medium-bg: #1c1c1c;
  --light-text: #f0f0f0;
  --medium-text: #cccccc;
  --border-color: #333;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* FIX STICKY FOOTER: Flex column permette al footer di stare sempre in basso */
body {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--light);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main espandibile per spingere giù il footer */
main {
  flex: 1;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  opacity: .9;
}

/* --- ELEMENTI COMUNI (BOTTONI, BADGE, ETC) --- */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  padding: .9rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
}

.btn--sm {
  padding: .55rem .9rem;
  font-size: .95rem;
}

.btn--lg {
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
}

.btn--orange {
  background: var(--orange);
  color: #000;
}

.btn--gray {
  background: #444;
  color: #000000;
}

/* Prezzi e Badge (da feste.html) */
.price-tag {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin: 10px 0;
  display: block;
}

.price-sub {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 400;
}

.package-badge {
  display: inline-block;
  background: #333;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.badge-best {
  background: var(--orange);
  color: #000;
  font-weight: 700;
}

/* --- HEADER E NAVIGAZIONE --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
  padding: 20px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 700;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

/* --- SEZIONI GENERICHE E HERO --- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .65));
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 6rem 0;
}

.hero__title {
  font: 800 clamp(2rem, 4vw, 3.2rem) Montserrat, sans-serif;
  margin: 0 0 .6rem;
}

.hero__subtitle {
  color: #e9e9e9;
  margin: 0 auto 1.4rem auto;
  font-size: 1.2rem;
  max-width: 60ch;
}

.hero__image {
  width: 80%;
  height: 50%;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.05);
}

.section {
  padding: 3.5rem 0;
  background: var(--bg);
}

.section--dark {
  background: #121212;
}

.section__title {
  font: 800 clamp(1.5rem, 3vw, 2.2rem) Montserrat, sans-serif;
  margin: 0 0 1.2rem;
  color: #fff;
}

.muted {
  color: var(--muted);
}

.testo-centrato {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.section-divider { 
  width: 50%; 
  max-width: 600px; 
  height: 3px; 
  background-color: var(--orange); 
  margin: 5rem auto; 
  box-shadow: 0 0 20px 5px rgba(255, 122, 0, 0.7); 
}

/* --- TABELLE MENU (Feste) --- */
.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}

.menu-table th, .menu-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #333;
  vertical-align: top;
}

.menu-table th {
  background-color: #252525;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.menu-table tr:last-child td {
  border-bottom: none;
}

.menu-price {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* --- FORM DI PRENOTAZIONE (Booking) --- */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background-color: var(--medium-bg); /* #1c1c1c */
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #333;
  margin-top: 2rem;
}

.full-width { grid-column: 1 / -1; }

.form-header-banner {
  background-color: var(--orange);
  color: #000;
  padding: 15px;
  text-align: center;
  font-weight: 800;
  border-radius: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.form-chapter-title {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 5px;
  text-transform: uppercase;
}

.booking-form .muted { 
  text-align: left !important; 
}

.section-subtitle {
  font-size: 0.95rem; 
  color: var(--orange); 
  font-weight: 600; 
  margin: 0;
  border: none;
  padding: 0;
}

.subtitle-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Input Fields */
.booking-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.booking-form label.field-label {
  display: block; 
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form input[type="number"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: #2a2a2a;
  color: var(--light-text);
  font-size: 1rem;
}

/* Radio & Checkbox Custom Alignment */
.radio-group, .privacy-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  text-align: left;
  width: 100%;
}

.radio-group input, .privacy-check input {
  margin: 0;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.radio-group label, .privacy-check label {
  margin: 0;
  width: auto;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  line-height: 1.4;
}

/* Pacchetti e Upgrade */
.package-option {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.package-option:hover { border-color: #555; }

.package-desc {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 8px;
  margin-left: 35px; /* Allineato al testo del radio (20px input + 15px gap) */
  display: block;
  line-height: 1.4;
}

.upgrade-box {
  margin-top: 15px;
  margin-left: 0;
  padding: 15px;
  background: rgba(255, 122, 0, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  display: none;
  width: 100%;
}
.upgrade-visible { display: block; }

/* Pulsanti Info & Modali */
.info-btn {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.info-btn:hover {
  background: var(--orange);
  color: #000;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: #1c1c1c;
  border: 1px solid var(--orange);
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 10px; right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-title {
  color: var(--orange);
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}
.modal-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}
.modal-list li:last-child { border: none; }
.modal-list b { color: #fff; display: block; margin-bottom: 4px; font-weight: 700;}


/* --- FOOTER --- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  margin-top: 2rem;
  padding: 40px 20px 20px 20px;
  width: 100%; /* Sticky footer fix */
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 2rem 0;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-inline: auto;
}

.site-footer h3 {
  margin: .2rem 0 1rem;
  color: #fff;
  font: 400 1.05rem Montserrat, sans-serif;
}

.site-footer p {
  margin: .3rem 0;
  color: #d0d0d0;
}

.site-footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-base {
  border-top: 1px solid #1a1a1a;
  padding: 1rem 0;
  text-align: center;
  color: #b8b8b8;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-base p {
    color: #fff;
    font-weight: 400;
    margin: 0;
}

/* --- COMPONENTI RIUTILIZZABILI (Accordion, Swiper, etc.) --- */
.section-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.accordion-header {
    cursor: pointer;
    position: relative;
    padding-right: 2.5rem;
}
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease-out;
}
.accordion-header.active::after {
    content: '−';
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 1.5rem;
}
.accordion-content.active {
    height: auto;
    max-height: 9999px; 
    overflow: visible; 
    padding: 1rem 1.5rem;
}
.accordion-content p {
    margin: 0;
    padding-bottom: 0.5rem;
}
.accordion-content ul {
    list-style-type: disc;
    padding-left: 20px;
}
.accordion-content ul li {
    margin-bottom: 0.5rem;
    white-space: normal;
    overflow-wrap: break-word;
}
.accordion-content b {
    font-weight: 700;
    color: var(--orange);
}

/* Swiper */
.swiper {
  --swiper-theme-color: var(--orange);
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pswp__img { 
  object-fit: contain !important; 
}

/* Orari */
.opening-hours {
  background-color: #1a1a1a;
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 5rem 0;
}
.hours-list {
  max-width: 500px;
  margin: 0 auto;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hours-item:last-child {
  border-bottom: none;
}
.hours-item .day {
  font-weight: bold;
  text-transform: uppercase;
}
.hours-item .time {
  color: orange;
  font-weight: bold;
}
.current-day { 
  font-weight: bold; 
  color: var(--orange); 
}

/* Homepage Cards */
.locations-section {
  padding: 4rem 0;
  background-color: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  text-align: center;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 60px;
}
.location-card {
  background-color: #1c1c1c;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
}
.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.card-content {
  padding: 1.5rem;
}
.location-card h3 {
  margin: 0 0 0.8rem;
  font: 700 1.3rem Montserrat, sans-serif;
  color: #ffffff;
}
.custom-list-item {
  list-style: none;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}
.custom-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff7a00'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Grid Know */
.grid--know { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 2.5rem; 
  align-items: center; 
}
.content--know { 
  text-align: center; 
}


/* --- MEDIA QUERIES --- */

/* Mobile */
@media (max-width: 768px) {
    .burger { display: block; }
    .main-nav { 
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        right: 0; 
        background-color: rgba(17, 17, 17, 0.98); 
        backdrop-filter: blur(8px); 
        width: 100%; 
        flex-direction: column; 
    }
    .main-nav a { 
        padding: 1.2rem; 
        text-align: center; 
        border-bottom: 1px solid #333; 
        width: 100%;
        font-size: 1.1rem; 
    }
    .main-nav a:last-child { border-bottom: none; }
    .nav-wrap.nav-active .main-nav { display: flex; }
    .main-nav .btn {
      display: block;
      width: auto; 
      margin: 1rem 2rem; 
      padding: 1rem;
    }
    
    .opening-hours .section__title { text-align: center; } 
    .hours-list { 
        display: flex; 
        flex-direction: column; 
        gap: 0.5rem; 
        align-items: center; 
    } 
    .hours-item { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }

    /* Form Booking su Mobile */
    .booking-form { grid-template-columns: 1fr; }

    /* Tabelle Responsive su Mobile (Card View) */
    .menu-table, .menu-table tbody, .menu-table tr, .menu-table td {
        display: block;
        width: 100%;
    }
    .menu-table thead { display: none; }
    .menu-table tr {
        margin-bottom: 1.5rem;
        background-color: #1c1c1c;
        border: 1px solid #333;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .menu-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #2a2a2a;
        position: relative;
    }
    .menu-table td:last-child { border-bottom: none; }
    .menu-table td:first-child {
        background-color: #2a2a2a;
        color: var(--orange);
        font-size: 1.1rem;
        font-weight: 800;
        text-transform: uppercase;
        border-bottom: 2px solid var(--orange);
    }
    /* Pseudo-etichette per le card */
    .menu-table td:nth-of-type(2)::before {
        content: "Cosa include:";
        display: block;
        font-size: 0.75rem;
        color: #888;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    .menu-table td:nth-of-type(3)::before {
        content: "Prezzo:";
        display: inline-block;
        font-size: 0.85rem;
        color: #888;
        margin-right: 8px;
    }
    .menu-table td:nth-of-type(4)::before {
        content: "Ideale per:";
        display: block;
        font-size: 0.75rem;
        color: #888;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    .menu-price { font-size: 1.2rem; }
    .bar-grid-mobile {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px !important;
    }
}

/* Desktop */
@media (min-width: 992px) { 
  .grid--know { grid-template-columns: 1fr 1fr; }
  .grid--know.reversed { grid-template-columns: 2fr 3fr; }
  .content--know { text-align: left; } 
}

/* --- VARIANTI COLORE CARDS --- */

/* 1. CARD LATERALE SINISTRA (FLEXI) - Resa più piccola */
.card-blue {
    border: 2px solid #818181 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Rimpicciolisce la card al 90% */
    transform: scale(0.9); 
    transform-origin: center right; /* Si aggancia verso il centro */
    z-index: 1;
}
.card-blue h3, 
.card-blue .price-tag, 
.card-blue strong {
    color: #818181 !important;
}
.card-blue .package-badge {
    background-color: #818181;
    color: #000;
    font-weight: 700;
}

/* 2. CARD CENTRALE (ALL-INCLUSIVE) - Più grande e bordo spesso */
.card-orange {
    /* Bordo aumentato da 2px a 6px */
    border: 6px solid #ff7a00 !important; 
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.25);
    /* Ingrandisce la card al 110% */
    transform: scale(1.1); 
    z-index: 10; /* Assicura che stia sopra le altre */
    position: relative;
}
.card-orange h3, 
.card-orange .price-tag, 
.card-orange strong {
    color: #ff7a00 !important;
}
.card-orange .package-badge {
    background-color: #ff7a00;
    color: #000;
    font-weight: 700;
}

/* 3. CARD LATERALE DESTRA (XXL) - Resa più piccola */
.card-purple {
    border: 2px solid #f9d400 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Rimpicciolisce la card al 90% */
    transform: scale(0.9);
    transform-origin: center left; /* Si aggancia verso il centro */
    z-index: 1;
}
.card-purple h3, 
.card-purple .price-tag, 
.card-purple strong {
    color: #f9d400 !important;
}
.card-purple .package-badge {
    background-color: #f9d400;
    color: #000;
    font-weight: 700;
}

/* --- RESET PER MOBILE --- */
/* Fondamentale: su schermi piccoli togliamo l'effetto scala altrimenti si rompe l'impaginazione */
@media (max-width: 992px) {
    .card-blue, 
    .card-orange, 
    .card-purple {
        transform: none !important; /* Nessuno zoom */
        margin-bottom: 20px;
    }
    
    .card-orange {
        border-width: 4px !important; /* Bordo leggermente meno spesso su mobile ma visibile */
    }
}

/* --- FOOD SWIPER (CAROSELLO KIT) --- */
.food-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px; /* Spazio per la paginazione */
}

.food-slide {
    background-position: center;
    background-size: cover;
    width: 300px; /* Larghezza fissa per l'effetto coverflow */
    height: 420px;
    background-color: #1c1c1c;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

/* Immagine di sfondo/top */
.food-card-image {
    width: 100%;
    height: 100%; /* Occupa tutta la card */
    background-size: cover;
    background-position: center;
    position: relative;
    /* Immagine di fallback se non caricata */
    background-color: #2a2a2a; 
}

/* Overlay sfumato per leggere il testo sopra l'immagine */
.food-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0.8) 40%, transparent 100%);
}

/* Contenuto testuale */
.food-card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    text-align: left;
}

.food-cat {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.food-slide h3 {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.2;
}

.food-desc {
    font-size: 0.9rem;
    color: #ccc;
    margin: 5px 0 15px 0;
    line-height: 1.4;
    min-height: 40px; /* Per allineare i prezzi */
}

.food-price {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
    background: var(--orange);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
}

/* Paginazione Swiper */
.swiper-pagination-bullet {
    background: #666;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--orange);
    opacity: 1;
}

/* Responsive per mobile */
@media (max-width: 480px) {
    .food-slide {
        width: 260px;
        height: 380px;
    }
}

/* --- NUOVO STILE MENU BAR --- */

/* Contenitore principale (cornice esterna) */
.bar-menu-container {
    background: #151515;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Ombra profonda */
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Effetto decorativo in alto (striscia arancione) */
.bar-menu-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff4d00);
}

/* Griglia responsive */
.bar-grid {
    display: grid;
    /* Adatta le colonne automaticamente: su PC ne mette 2, su mobile 1 */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 15px;
}

/* Singola voce di menu */
.bar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: default;
}

/* Effetto hover sulla voce */
.bar-item:hover {
    background-color: #2a2a2a;
    transform: translateX(5px); /* Si sposta leggermente a destra */
    border-color: #555;
    border-left: 4px solid var(--orange); /* Accento arancione a sinistra */
}

/* Testi */
.bar-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bar-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.bar-detail {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Prezzo */
.bar-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange);
    margin-left: 15px;
    white-space: nowrap; /* Impedisce al prezzo di andare a capo */
}

/* Adattamento per schermi molto piccoli */
@media (max-width: 400px) {
    .bar-grid {
        grid-template-columns: 1fr;
    }
    .bar-menu-container {
        padding: 15px;
    }
}

/* Rimuove i pallini della lista e i margini di default */
.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Ogni riga della lista diventa un contenitore orizzontale */
.modal-list li {
    display: flex;             /* Affianca immagine e testo */
    align-items: center;       /* Centra verticalmente l'immagine rispetto al testo */
    margin-bottom: 20px;       /* Spazio sotto ogni voce */
    padding-bottom: 20px;      /* Spazio interno */
    border-bottom: 1px solid #333; /* Riga separatrice sottile (opzionale, toglila se non piace) */
}

/* Rimuove la riga separatrice dall'ultimo elemento */
.modal-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Stile dell'immagine a sinistra */
.modal-item-img {
    width: 80px;              /* Larghezza fissa */
    height: 80px;             /* Altezza fissa */
    flex-shrink: 0;           /* Impedisce all'immagine di schiacciarsi */
    margin-right: 15px;       /* Spazio tra immagine e testo */
    object-fit: cover;        /* Adatta l'immagine riempiendo il quadrato */
    border-radius: 8px;       /* Leggero stondamento angoli (opzionale) */
    border: none;             /* NESSUN BORDO come richiesto */
    background-color: #333;   /* Colore di sfondo temporaneo se l'immagine non c'è */
}

/* Contenitore del testo per gestirlo ordinatamente */
.modal-item-text {
    flex: 1; /* Prende tutto lo spazio rimanente */
}

/* Stile per i titoli in grassetto (es. Aperitivo Mestrino) */
.modal-item-text b {
    color: var(--orange); /* Usa il colore arancione del brand */
    font-size: 1.1rem;
    display: block;       /* Mette il titolo su una riga separata */
    margin-bottom: 4px;
}