/* ── DESIGN SYSTEM & GLOBAL STYLES ── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  /* Palette */
  --chianti:       #8B1C2A;
  --chianti-light: #A72839;
  --chianti-dark:  #4A121A;
  --gold:          #C5A059;
  --gold-light:    #E8D8B0;
  --cream:         #FAF7F2;
  --parchment:     #F3EBE0;
  --ink:           #121212;
  --ink-light:     #1E1E1E;
  --slate:         #6B7280;
  --white:         #FFFFFF;
  
  /* Shadow & Blur Tokens */
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md:     0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg:     0 20px 45px rgba(0, 0, 0, 0.1);
  --shadow-glow:   0 8px 25px rgba(197, 160, 89, 0.15);
  --glass-bg:      rgba(255, 255, 255, 0.03);
  --glass-border:  rgba(255, 255, 255, 0.08);

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

html { 
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: none;  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream); /* Restored original cream background */
  color: var(--ink); /* Restored original ink text color */
  overflow-x: hidden;
  width: 100%;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ink);
}

p {
  color: var(--slate);
}

/* Floating Background blobs */
.blob-container {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  pointer-events: none; 
  z-index: 0;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.blob-gold {
  background: var(--gold);
  top: 15%;
  left: -15%;
}

.blob-chianti {
  background: var(--chianti);
  bottom: 25%;
  right: -15%;
}

/* Common Section Layouts */
section { 
  padding: 8rem max(4rem, calc((100% - 1240px) / 2)); 
  position: relative;
  width: 100%;
  z-index: 2;
  box-sizing: border-box;
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: .78rem; 
  letter-spacing: .25em; 
  text-transform: uppercase;
  color: var(--chianti); 
  font-weight: 750; 
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800; 
  line-height: 1.15;
  color: var(--ink);
}

.section-title em { 
  color: var(--chianti); 
  font-style: italic; 
  font-weight: 400;
}

/* Premium Buttons */
.btn-primary {
  background: var(--chianti); 
  color: var(--white);
  padding: 1.1rem 2.4rem; 
  border: 1px solid var(--chianti); 
  cursor: pointer;
  font-family: 'Inter', sans-serif; 
  font-size: .85rem;
  letter-spacing: .12em; 
  text-transform: uppercase; 
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(139, 28, 42, 0.25);
}

.btn-primary:hover { 
  background: var(--chianti-light); 
  border-color: var(--chianti-light);
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px rgba(139, 28, 42, 0.4);
}

.btn-outline {
  color: var(--gold); 
  border: 1px solid var(--gold);
  background: transparent;
  padding: 1.1rem 2.4rem; 
  font-family: 'Inter', sans-serif;
  font-size: .85rem; 
  letter-spacing: .12em; 
  text-transform: uppercase;
  font-weight: 700; 
  text-decoration: none;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-outline:hover { 
  background: var(--gold); 
  color: var(--ink); 
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

/* Homepage Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding: 6rem 4rem 4rem;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

/* Page Hero layout template */
.page-hero {
  background: var(--ink);
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: grayscale(30%);
  z-index: 1;
}

.page-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-top: 1rem;
}

.page-hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 1.5rem;
  font-weight: 300;
}

/* dropped capital for storytelling */
.dropped-capital p::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  padding-right: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

/* ── DYNAMIC DISH VARIANT ACCORDIONS ── */
.menu-versions-container {
  margin-top: 1.25rem;
  width: 100%;
}

.btn-versions-toggle {
  background: transparent;
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--gold);
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-versions-toggle:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 6px 15px rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
}

.menu-versions-drawer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition:
    grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s ease;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.03);
  border: 1px dashed transparent;
}

.menu-versions-drawer > .menu-versions-list {
  overflow: hidden;
  min-height: 0;
}

.menu-versions-drawer.open {
  grid-template-rows: 1fr;
  margin-top: 0.85rem;
  padding: 1.2rem;
  border-color: rgba(197, 160, 89, 0.2);
}

.menu-versions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.menu-versions-list li {
  font-size: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(197, 160, 89, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-versions-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.version-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
}

.version-desc {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.5;
}

.version-price {
  font-family: 'Playfair Display', serif;
  font-weight: 750;
  color: var(--chianti);
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

/* ── PREMIUM MENU CATEGORY FILTER BUTTONS ── */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.filter-btn {
  background: rgba(18, 18, 18, 0.03);
  border: 1.5px solid rgba(197, 160, 89, 0.25);
  color: var(--slate);
  padding: 0.7rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 30px; /* Pill shape */
  outline: none;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(197, 160, 89, 0.04);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

/* ── MENU CARD GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem; 
  align-items: start;
}

.menu-card {
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 10px 30px rgba(18, 18, 18, 0.02), 
    0 1px 3px rgba(0, 0, 0, 0.01),
    inset 0 0 40px rgba(243, 235, 224, 0.15); /* light luxury paper texture */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 22px 50px rgba(139, 28, 42, 0.04), 
    0 12px 28px rgba(197, 160, 89, 0.07),
    0 0 0 3px rgba(197, 160, 89, 0.1); /* gold luxury outer ring */
  border-color: var(--gold);
}

.menu-img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.4) 0%, transparent 40%);
  opacity: 0.8;
  pointer-events: none;
  transition: all 0.3s ease;
}

.menu-card:hover .menu-img-container::after {
  opacity: 0.6;
}

.menu-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-img-container img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.menu-card-title {
  font-size: 1.3rem; 
  font-weight: 750;
  color: var(--ink); 
  line-height: 1.3;
  transition: color 0.4s ease;
}

.menu-card:hover .menu-card-title {
  color: var(--chianti);
}

.menu-card-desc {
  font-size: .88rem; 
  color: var(--slate); 
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  padding-top: 1.25rem;
}

.menu-tag {
  background: rgba(197, 160, 89, 0.05); 
  color: var(--gold);
  border: 1px solid rgba(197, 160, 89, 0.22);
  font-size: .62rem; 
  letter-spacing: .15em;
  text-transform: uppercase; 
  padding: .35rem .85rem;
  font-weight: 750;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-tag {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

.menu-price {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--chianti);
  font-size: 1.25rem;
  transition: color 0.4s ease;
}

.menu-card:hover .menu-price {
  color: var(--chianti-light);
}

.menu-card.hidden {
  display: none !important;
}

/* ── GLUTEN FREE BANNER & NOTE ── */
.gf-banner {
  background: var(--parchment);
  padding: 4rem 6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem; 
  align-items: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.gf-banner::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(197, 160, 89, 0.4);
  pointer-events: none;
}

.gf-icon {
  background: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.gf-text-title {
  font-size: 1.5rem; 
  font-weight: 700; 
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.gf-text-body {
  font-size: .95rem; 
  color: var(--slate); 
  line-height: 1.7;
}

.menu-gf-note {
  text-align: center;
  background: var(--parchment);
  border: 1px dashed var(--gold);
  padding: 1.25rem 2rem;
  border-radius: 6px;
  max-width: 650px;
  margin: 0 auto 3.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chianti);
  box-shadow: var(--shadow-sm);
}

/* ── REVIEWS CHAT-BUBBLE SLIDER ── */
.reviews-section {
  background: var(--ink);
  overflow: hidden;
  padding: 6rem max(4rem, calc((100% - 1240px) / 2));
}

.reviews-slider-container {
  position: relative;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  gap: 2.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide for Firefox */
  -ms-overflow-style: none; /* Hide for IE/Edge */
  padding: 1.5rem 0.5rem;
  scroll-behavior: smooth;
}

.reviews-slider-track::-webkit-scrollbar {
  display: none; /* Hide for Chrome/Safari */
}

.review-card-bubble {
  flex: 0 0 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card-bubble:hover {
  transform: translateY(-5px);
}

.review-bubble-content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 230px;
}

.review-stars-gold {
  color: #FFB100;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.review-bubble-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.review-bubble-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.review-readmore {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: auto;
  display: inline-block;
}

.review-readmore:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Comment Bubble Tail */
.review-bubble-tail {
  position: absolute;
  bottom: 64px; /* Sits right above the user avatar spacing */
  left: 2.2rem;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.04); /* Match bubble bg */
  z-index: 2;
}

.review-bubble-tail::after {
  content: '';
  position: absolute;
  top: -11px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.08); /* Match bubble border */
  z-index: -1;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-left: 0.5rem;
}

.review-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1.5px solid rgba(197, 160, 89, 0.35);
  box-shadow: var(--shadow-sm);
}

.review-user-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-user-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.review-user-meta {
  font-size: 0.75rem;
  color: var(--slate);
}

.review-user-meta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.review-user-meta a:hover {
  text-decoration: underline;
}

/* Arrows Navigation */
.reviews-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.3);
  fill: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.reviews-arrow svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  transition: fill 0.2s ease;
}

.reviews-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.reviews-arrow:hover svg {
  fill: var(--ink);
}

.reviews-arrow.prev-btn {
  left: -1.2rem;
}

.reviews-arrow.next-btn {
  right: -1.2rem;
}

/* ── APPLE STYLE WELCOME LANGUAGE OVERLAY ── */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-overlay.hidden {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

.welcome-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4.5rem 3.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  text-decoration: none;
}

.welcome-logo span {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
}

.welcome-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.welcome-subtitle-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.welcome-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 250px;
}

.btn-lang {
  background: transparent;
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  color: var(--white);
  padding: 0.95rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  outline: none;
}

.btn-lang:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.25);
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100%;
}

/* ── LAYOUT GRID CLASSES FOR RESPONSIVENESS ── */
.about-teaser {
  background: var(--ink-light);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  overflow: hidden;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.storia-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.storia-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.storia-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
}

.storia-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.storia-img-wrapper:hover img {
  transform: scale(1.05);
}

/* ── EXPANDED MENU CARD LAYOUT FOR VARIANT DRAWERS ── */
@media (min-width: 661px) {
  .menu-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .menu-card.expanded-layout {
    grid-column: 1 / -1 !important; /* full width */
    display: grid !important;
    grid-template-columns: 320px 1fr !important;
    gap: 0 !important;
    max-width: 100% !important;
    box-shadow: 
      0 30px 70px rgba(18, 18, 18, 0.07), 
      0 12px 30px rgba(197, 160, 89, 0.04) !important;
    border-color: var(--gold) !important;
  }

  .menu-card.expanded-layout.no-image {
    grid-template-columns: 1fr !important;
  }
  
  .menu-card.expanded-layout .menu-img-container {
    height: 100% !important;
    min-height: 350px !important;
    border-radius: 8px 0 0 8px !important;
  }
  
  .menu-card.expanded-layout .menu-card-body {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 2.2rem !important;
    padding: 2.5rem !important;
    align-items: start !important;
  }
  
  .menu-card.expanded-layout .menu-card-header {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-bottom: 0 !important;
  }
  
  .menu-card.expanded-layout .menu-card-desc {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
  }
  
  .menu-card.expanded-layout .menu-footer {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
  }
  
  .menu-card.expanded-layout .menu-versions-container {
    grid-column: 2 !important;
    grid-row: 1 / span 3 !important;
    margin-top: 0 !important;
  }

  .menu-card.expanded-layout .menu-versions-list {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-rows: repeat(3, auto) !important;
    gap: 0.85rem 2.5rem !important;
  }

  .menu-card.expanded-layout .menu-versions-list li:nth-child(3) {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .menu-card.expanded-layout .menu-versions-drawer.open {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
  }
}

/* Photo exposure adjustment for flash-overexposed menu photos */
.img-dish-burger-scomposto-chianina {
  filter: brightness(0.72) contrast(1.22) saturate(1.08) !important;
}

/* ── HERO SPECIAL CARD TITLE ── */
.hero-special-title {
  color: var(--white) !important;
}

/* ── INTERACTIVE 3D FLIPPING GOLD QUALITY SEAL EMBLEM ── */
.emblem-container-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.emblem-3d-wrapper {
  width: 280px;
  height: 280px;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.emblem-3d-card {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  transition: transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.25), -webkit-transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  will-change: transform;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.emblem-3d-card:active {
  -webkit-transform: scale(0.96);
  transform: scale(0.96);
}

.emblem-3d-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emblem-3d-front {
  background: radial-gradient(circle, #242424 20%, #121212 90%);
  box-shadow: 0 0 35px rgba(197, 160, 89, 0.25), inset 0 0 20px rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.emblem-3d-back {
  background: radial-gradient(circle, #242424 20%, #121212 90%);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  box-shadow: 0 0 35px rgba(197, 160, 89, 0.25), inset 0 0 20px rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.emblem-gold-seal {
  width: 92%;
  height: 92%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emblem-gold-seal svg {
  width: 100%;
  height: 100%;
  display: block;
}

.emblem-prompt-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 0.75rem;
}

.emblem-click-prompt {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5DA8A !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  display: inline-block;
  text-align: center;
  -webkit-animation: prompt-gold-pulse 2s infinite ease-in-out;
  animation: prompt-gold-pulse 2s infinite ease-in-out;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

@media (hover: hover) and (pointer: fine) {
  .emblem-click-prompt:hover {
    color: #FFFFFF !important;
  }
}

@-webkit-keyframes prompt-gold-pulse {
  0%, 100% {
    opacity: 0.55;
    -webkit-transform: scale(0.96) translateZ(0);
    transform: scale(0.96) translateZ(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.04) translateZ(0);
    transform: scale(1.04) translateZ(0);
  }
}

@keyframes prompt-gold-pulse {
  0%, 100% {
    opacity: 0.55;
    -webkit-transform: scale(0.96) translateZ(0);
    transform: scale(0.96) translateZ(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.04) translateZ(0);
    transform: scale(1.04) translateZ(0);
  }
}

@media (max-width: 480px) {
  .emblem-3d-wrapper {
    width: 220px;
    height: 220px;
  }
}

/* Specific adjustment for deconstructed burger photo */
.img-dish-burger-scomposto-chianina {
  filter: brightness(1.28) contrast(1.03) saturate(1.04);
}

/* ── COMBINED WELCOME & COOKIE MODAL STYLING ── */
.welcome-box {
  max-width: 540px !important;
  width: 90% !important;
  padding: 2.2rem 2rem !important;
}

.welcome-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  text-align: left;
}

.welcome-buttons .btn-lang {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.welcome-buttons .btn-lang.active,
.welcome-buttons .btn-lang:hover {
  background: rgba(197, 160, 89, 0.25);
  border-color: var(--gold-light);
  color: #FFF;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.welcome-cookie-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1rem;
  text-align: left;
}

.welcome-cookie-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.welcome-cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-option-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}

.cookie-option-label input[type="radio"] {
  accent-color: var(--gold);
  width: 17px;
  height: 17px;
  margin-top: 1px;
  cursor: pointer;
}

.welcome-confirm-btn {
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

/* In-Map Placeholder Styling */
.map-placeholder-box {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1e1e1e, #121212);
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}

.map-placeholder-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.map-placeholder-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.map-placeholder-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.map-placeholder-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.82rem !important;
  border-radius: 20px !important;
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-legal-sep {
  color: rgba(197, 160, 89, 0.4);
}

.cookie-link {
  color: var(--gold-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--white);
}

