/* ============================================================
   RUBY SUSHI — Main Site CSS (MVC)
   Design: Premium Dark Elegant (Charcoal/White/Red)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Backgrounds */
  --bg:            #050505;
  --bg-2:          #0B0B0C;
  --bg-card:       #101011;
  --bg-card-hover: #161617;
  --menu-bg:       #050505;
  --menu-panel:    #0A0A0B;
  --menu-surface:  #101011;
  --menu-surface-2:#141415;
  
  /* ── Brand accent (Ruby Red - Sang trọng, không chói) */
  --accent:        #D3122A; 
  --accent-2:      #B20E22;
  --accent-glow:   rgba(211, 18, 42, 0.12);
  
  /* ── Text colours (Light/White on Dark) */
  --white:         #F0F0F0;   /* Primary text — trắng kem, không chói */
  --white-70:      rgba(240, 240, 240, 0.70);
  --white-60:      rgba(240, 240, 240, 0.60);
  --white-50:      rgba(240, 240, 240, 0.50);
  --white-40:      rgba(240, 240, 240, 0.45);
  --white-15:      rgba(240, 240, 240, 0.12);
  --white-08:      rgba(240, 240, 240, 0.06);
  --divider:       rgba(240, 240, 240, 0.10);
  
  /* ── True white – text trên button / badge */
  --true-white:    #FFFFFF;
  
  /* ── Dark surface – dùng cho form input, social bg */
  --surface:       #323234;
  
  /* EN & HU fonts */
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-head-hu:  'Montserrat', sans-serif;
  --font-body-hu:  'Inter', sans-serif;
  --font-script:   'Great Vibes', cursive;
  --gold:          #C4A574;
  
  --max-w:         1160px;
  --nav-h:         72px;
  --radius:        4px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── LANGUAGE-SPECIFIC FONTS ─────────────────────────────── */
html[lang="en"] body { font-family: 'Inter', sans-serif; }
html[lang="hu"] body { font-family: var(--font-body-hu); }

h1, h2, h3, h4,
.logo-text, .footer-logo-text, .hero-title, .home-hero-title,
.section-heading, .cta-title, .stat-number, .item-name,
.section-title, .booking-form-title, .booking-info-title,
.value-title, .team-name, .featured-card-name, .about-badge-number,
.booking-success h3 {
  font-family: var(--font-head);
}

.nav-link, .nav-cta, .cat-btn, .btn-primary, .btn-outline, .btn-booking,
.footer-heading, .legend-title, .item-price, .featured-card-price,
.form-label, .form-input, .form-select, .form-textarea, .allergen-tag,
.hero-eyebrow, .home-hero-eyebrow, .section-label, .footer-tagline, .footer-btn {
  font-family: var(--font-body);
}

html {
  background-color: var(--bg);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(245,245,245,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,245,245,0.30); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  overflow: hidden;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#site-header.nav-open { overflow: visible; }
#site-header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 1px 0 var(--divider);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: clamp(34px, 5vw, 44px); width: auto; max-width: 96px; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex; align-items: center; gap: 2px;
}
.logo-text span { color: var(--accent); }
.logo-text-fallback { display: none; }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover  { color: var(--white); background: var(--white-08); }
.nav-link.active { color: var(--accent); font-weight: 600; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 9px 18px;
  border: 1px solid rgba(211, 18, 42, 0.3);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--true-white);
  border-color: var(--accent);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Language Switcher ───────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.lang-sep { color: var(--white-15); font-size: 11px; margin: 0 2px; }
.lang-btn .fi { display: block; width: 28px; height: 20px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(10,10,10,0.1); }
.lang-btn { display: flex; align-items: center; justify-content: center; padding: 5px 7px; border-radius: 6px; border: 1px solid transparent; opacity: 0.45; transition: all 0.2s; }
.lang-btn:hover { opacity: 0.85; background: var(--white-08); transform: scale(1.12); }
.lang-btn.active { opacity: 1; border-color: rgba(211, 18, 42, 0.3); background: rgba(211, 18, 42, 0.05); transform: scale(1.05); }

.lang-switcher--mobile { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--divider); }
.lang-switcher--desktop { display: flex; }

/* ============================================================
   PAGE HERO (Generic)
   ============================================================ */
.page-hero {
  position: relative;
  height: 340px;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 70%, var(--bg) 100%),
    url('https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/rakosi_background.jpg') center 42%/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  margin-top: var(--nav-h);
}

.hero-content { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; width: 100%; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.hero-title { font-size: clamp(40px, 6vw, 64px); font-weight: 300; letter-spacing: -0.01em; line-height: 1; color: var(--white); margin-bottom: 14px; }
.hero-title.rolunk-script { font-size: clamp(56px, 10vw, 88px); font-weight: 400; letter-spacing: 0.02em; color: var(--gold); line-height: 1.15; }
.hero-subtitle { font-size: 14px; color: var(--white-70); letter-spacing: 0.02em; }

/* ============================================================
   HOME PAGE — FULL HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
  margin-top: 0;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.48) 45%, rgba(13,13,13,0.62) 100%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 32px 56px;
  width: 100%;
  text-align: center;
}

.home-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.home-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); opacity: 0.9; }
.home-hero-title { font-size: clamp(28px, 5.2vw, 52px); font-weight: 700; letter-spacing: 0.045em; line-height: 1.2; color: var(--white); margin: 0 auto 18px; text-transform: uppercase; max-width: 820px; }
.home-hero-title em { font-style: normal; color: var(--accent); font-weight: 700; }
.home-hero-desc { font-size: 17px; line-height: 1.7; color: var(--white-70); font-weight: 400; max-width: 540px; margin: 0 auto 40px; }

.home-hero .hero-actions { justify-content: center; }

.home-hero .btn-outline {
  border-color: rgba(245, 245, 245, 0.35);
  color: var(--white);
  font-weight: 600;
}
.home-hero .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(245, 245, 245, 0.08);
}
.home-hero .hero-scroll { color: rgba(245, 245, 245, 0.45); }
.home-hero .hero-scroll-line { background: linear-gradient(to bottom, rgba(245, 245, 245, 0.40), transparent); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px;
  background: var(--accent); color: var(--true-white);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); transition: all 0.2s var(--ease);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(211, 18, 42, 0.25); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border: 1px solid var(--white-40); color: var(--white-70);
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); background: var(--white-08); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-40); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  animation: heroScrollBounce 2s infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--white-40), transparent); }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ── Rólunk intro (Art of Sushi–style script heading) ────── */
.rolunk-intro {
  padding: 0 0 40px;
  background: var(--bg);
}
.rolunk-intro-photo {
  max-width: var(--max-w);
  margin: 0 auto 24px;
  padding: 24px 32px 0;
  overflow: hidden;
}
.rolunk-intro-photo img {
  display: block;
  width: 100%;
  height: clamp(200px, 28vw, 360px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.rolunk-intro-content {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.rolunk-script {
  font-family: var(--font-script);
  font-size: clamp(56px, 11vw, 92px);
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.rolunk-intro .rolunk-script { margin-bottom: 12px; }
.rolunk-intro-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white-70);
}
.rolunk-intro-text p + p { margin-top: 12px; }
.btn-rolunk-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 13px 40px;
  background: var(--gold);
  color: var(--true-white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-rolunk-more:hover {
  background: #b89563;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196, 165, 116, 0.28);
  color: var(--true-white);
}

.rolunk-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.rolunk-detail-overlay[hidden] { display: none; }
.rolunk-detail-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 640px);
  max-height: min(86vh, 780px);
  overflow: hidden;
  background: #0e0e0f;
  border: 1px solid rgba(196, 165, 116, 0.28);
  border-radius: 14px;
  padding: 40px 32px 24px;
  text-align: center;
  box-shadow: 0 28px 64px rgba(0,0,0,0.5);
}
.rolunk-detail-panel .rolunk-script {
  flex-shrink: 0;
  font-size: clamp(34px, 7vw, 46px);
  line-height: 1.2;
  margin-bottom: 8px;
  max-width: 100%;
}
.rolunk-detail-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white-70);
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.rolunk-detail-close:hover {
  background: var(--white-08);
  color: var(--white);
}
.rolunk-detail-lead {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 16px;
}
.rolunk-detail-text {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-head);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--white-70);
  text-align: left;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 165, 116, 0.35) transparent;
}
.rolunk-detail-text::-webkit-scrollbar { width: 4px; }
.rolunk-detail-text::-webkit-scrollbar-thumb {
  background: rgba(196, 165, 116, 0.35);
  border-radius: 4px;
}
.rolunk-detail-text p + p { margin-top: 14px; }
.rolunk-detail-signoff {
  margin-top: 22px !important;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  text-align: center;
}
.rolunk-detail-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.rolunk-detail-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white-08);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rolunk-detail-photos img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
body.rolunk-detail-open { overflow: hidden; }

/* ============================================================
   SECTIONS & LAYOUT
   ============================================================ */
.section-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-heading { font-size: clamp(28px, 4vw, 42px); font-weight: 300; letter-spacing: -0.01em; color: var(--white); margin-bottom: 16px; }
.section-desc-text { font-size: 14px; color: var(--white-70); line-height: 1.8; max-width: 520px; }

/* ── Home Stats Bar ──────────────────────────────────────── */
.stats-bar { background: var(--bg-card); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: 48px 0; }
.stats-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-size: 40px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; font-weight: 500; color: var(--white-40); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Featured Dishes ─────────────────────────────────────── */
.featured-section { padding: 96px 0; }
.featured-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.link-arrow { font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; text-transform: uppercase; }
.link-arrow:hover { gap: 10px; }

/* ── Home Gallery ────────────────────────────────────────── */
.home-gallery { padding: 40px 0 48px; overflow: hidden; }
.home-gallery-head { max-width: 640px; margin: 0 auto 24px; text-align: center; }
.home-gallery-head .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.home-gallery-head .section-label::before,
.home-gallery-head .section-label::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.home-gallery-head .section-heading { margin-bottom: 12px; }
.home-gallery-head .section-desc-text { margin: 0 auto; max-width: 560px; }

.home-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 68vw);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin-inline: -32px;
  padding-inline: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-gallery-strip::-webkit-scrollbar { display: none; }

.home-gallery-item {
  margin: 0;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  min-width: 0;
  cursor: zoom-in;
  background: var(--bg-card);
}
.home-gallery-item img {
  width: 100%;
  height: min(200px, 26vh);
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.home-gallery-item:hover img { transform: scale(1.04); }

@media (min-width: 640px) {
  .home-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
    gap: 16px;
  }
  .home-gallery-item img { height: min(210px, 26vh); }
}

@media (min-width: 992px) {
  .home-gallery-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 16px;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 0;
    padding-bottom: 0;
  }
  .home-gallery-item img { height: min(220px, 26vh); }
}

.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.featured-card {
  position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(5,5,5,0.36), rgba(16,16,17,0.58)), url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/background.jpg") center / cover no-repeat;
  border: 1px solid rgba(240,240,240,0.08);
  cursor: pointer; transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.featured-card:hover { transform: translateY(-6px); border-color: rgba(240,240,240,0.16); box-shadow: 0 16px 32px rgba(0,0,0,0.34); }
.featured-card:hover .featured-card-img { transform: scale(1.05); }
.featured-card-img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform 0.6s var(--ease); position: absolute; inset: 0; filter: drop-shadow(0 18px 24px rgba(0,0,0,0.34)); }
.featured-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.08) 78%);
}
.featured-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.featured-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--true-white); background: var(--accent); padding: 4px 8px; border-radius: 2px; margin-bottom: 12px; display: inline-block; }
.featured-card-name { font-size: 18px; font-weight: 500; color: var(--true-white); margin-bottom: 6px; }
.featured-card-desc { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.featured-card-price { font-size: 16px; font-weight: 700; color: var(--true-white); margin-top: 12px; }

/* ── Experience Section ──────────────────────────────────── */
.experience-section { padding: 96px 0; background: var(--bg-2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.experience-image-wrap { position: relative; }
.experience-image-main {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  display: block;
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
  transition: transform 0.6s var(--ease);
}
.experience-image-wrap:hover .experience-image-main { transform: scale(1.015); }
/* Badge overlay replacing accent image */
.experience-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(5,5,5,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(211,18,42,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 4px rgba(211,18,42,0.08);
  text-align: center;
}
.exp-badge-icon { font-size: 28px; line-height: 1; }
.exp-badge-text { font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-70); line-height: 1.4; }
.experience-features { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.experience-feature { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--divider); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; background: var(--bg-card); color: var(--white); }
.feature-text h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: var(--white-70); line-height: 1.6; }

/* ── All You Can Eat (homepage) ──────────────────────────── */
.ayce-section {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}
.ayce-section-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.88) 55%, var(--bg) 100%),
    url('https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/rakosi_background.jpg');
  background-size: cover;
  background-position: center 42%;
  pointer-events: none;
}
.ayce-inner { position: relative; z-index: 1; min-width: 0; }
.ayce-head { text-align: center; max-width: 640px; margin: 0 auto 24px; }
.ayce-head .section-label {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.ayce-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-70);
  margin: 0 auto;
  max-width: 560px;
  overflow-wrap: break-word;
}
.ayce-photo {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-card);
}
.ayce-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(180px, 38vw, 400px);
  object-fit: cover;
  object-position: center 42%;
}
.ayce-price-list {
  list-style: none;
  max-width: 100%;
  margin: 0;
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.38);
}
.ayce-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(240, 240, 240, 0.06);
}
.ayce-price-list li:last-child { border-bottom: none; }
.ayce-price-period { font-size: 14px; color: var(--white-70); line-height: 1.5; }
.ayce-price-value { font-size: 15px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.ayce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.ayce-more {
  max-width: 760px;
  margin: 0 auto 20px;
  width: 100%;
}
.ayce-more-panel {
  background: rgba(14, 14, 15, 0.72);
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 12px;
  padding: 22px 22px 26px;
  text-align: left;
}
.ayce-more-panel .section-label { margin-bottom: 8px; }
.ayce-more-panel .ayce-detail-title { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 12px; text-align: left; }
.ayce-more-panel .ayce-detail-lead { margin-bottom: 8px; text-align: left; }
.ayce-more-panel .ayce-detail-h:first-of-type { margin-top: 18px; }

.ayce-detail-panel {
  max-width: 760px;
  max-height: min(92vh, 920px);
  text-align: left;
}
.ayce-detail-panel .section-label { text-align: center; margin-bottom: 8px; }
.ayce-detail-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 16px;
}
.ayce-detail-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-70);
  text-align: center;
  margin-bottom: 28px;
}
.ayce-detail-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 10px;
}
.ayce-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ayce-detail-list li {
  position: relative;
  padding: 6px 0 6px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-70);
}
.ayce-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.ayce-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.ayce-alacarte-btn {
  flex-direction: column;
  gap: 2px;
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.ayce-alacarte-btn small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

/* ── Homepage booking CTA ────────────────────────────────── */
.home-book-section {
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
  text-align: center;
}
.home-book-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.88) 70%, var(--bg) 100%),
    url('https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/tong.jpg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.home-book-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.home-book-inner .hero-actions {
  width: 100%;
  max-width: 480px;
  justify-content: center;
}
/* ── Story mosaic (Art of Sushi-style closing block) ─────── */
.story-mosaic {
  background: #ffffff;
  color: #1a1a1a;
}
.story-mosaic-copy {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 28px 28px;
  text-align: center;
}
.story-mosaic-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #111111;
  margin: 0 0 14px;
}
.story-mosaic-copy p {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0 0 10px;
}
.story-mosaic-copy p:last-child { margin-bottom: 0; }
.story-mosaic-copy strong {
  font-weight: 700;
  color: #0a0a0a;
}
.story-mosaic-signoff {
  margin-top: 12px !important;
  font-weight: 600;
  font-style: italic;
  color: #111111;
}
.story-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.story-mosaic-item {
  margin: 0;
  overflow: hidden;
  background: #111;
  line-height: 0;
  position: relative;
  min-width: 0;
  border-radius: 0;
}
.story-mosaic-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}
.story-mosaic-item:hover img { transform: scale(1.04); }
.story-mosaic-item--a,
.story-mosaic-item--b {
  aspect-ratio: 4 / 5;
}
.story-mosaic-item--c {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}
@media (min-width: 900px) {
  .story-mosaic-item--a,
  .story-mosaic-item--b { aspect-ratio: 1 / 1; }
  .story-mosaic-item--c { aspect-ratio: 21 / 9; }
}

.cta-title { font-size: clamp(32px, 5vw, 56px); font-weight: 300; letter-spacing: -0.01em; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.cta-title em { font-style: normal; color: var(--accent); font-weight: 400; }
.cta-desc { font-size: 15px; color: var(--white-70); margin-bottom: 40px; max-width: 480px; line-height: 1.7; }

/* ── CTA Section (About page) ────────────────────────────── */
.cta-section { padding: 96px 0; background: var(--bg-2); border-top: 1px solid var(--divider); text-align: center; }
.cta-section .section-wrap { display: flex; flex-direction: column; align-items: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 70%, var(--bg) 100%),
    url('https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/rakosi_background.jpg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.about-story { padding: 96px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-content .rolunk-script { text-align: left; font-size: clamp(48px, 7vw, 76px); margin-bottom: 12px; }
.about-story-content .rolunk-detail-lead { text-align: left; margin: 0 0 8px; }
.about-story-text { font-size: 15px; color: var(--white-70); line-height: 1.9; margin-top: 24px; }
.about-story-text + .about-story-text { margin-top: 16px; }
.about-story-image { position: relative; overflow: hidden; }
.about-story-img-main {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
}
.about-story-img-badge {
  position: absolute; bottom: -24px; left: -24px; width: 140px; height: 140px;
  border-radius: 50%; background: var(--bg-card); border: 1px solid var(--divider);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35); gap: 2px;
}
.about-badge-number { font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; }
.about-badge-text { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-70); }

/* ── Values ──────────────────────────────────────────────── */
.values-section { padding: 96px 0; background: var(--bg-2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.value-card { background: var(--bg-card); border-radius: 8px; padding: 40px 32px; border: 1px solid var(--divider); transition: all 0.3s var(--ease); box-shadow: 0 4px 12px rgba(10,10,10,0.02); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(10,10,10,0.06); border-color: rgba(10,10,10,0.15); }
.value-icon { font-size: 36px; margin-bottom: 24px; }
.value-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--white-70); line-height: 1.7; }

/* ── About — All You Can Eat ─────────────────────────────── */
.about-ayce { padding: 96px 0; }
.about-ayce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-ayce-content .ayce-detail-title { text-align: left; margin-bottom: 12px; }
.about-ayce-content .ayce-detail-lead { text-align: left; margin-bottom: 8px; }
.about-ayce-content .ayce-detail-h:first-of-type { margin-top: 18px; }
.about-ayce-image {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about-ayce-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
}

/* ── Team ────────────────────────────────────────────────── */
.team-section { padding: 96px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.team-card { text-align: center; transition: transform 0.3s var(--ease); }
.team-card:hover { transform: translateY(-4px); }
.team-photo-wrap { position: relative; margin-bottom: 24px; display: inline-block; width: 100%; }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; filter: grayscale(20%); transition: filter 0.4s; }
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-name { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.team-bio { font-size: 14px; color: var(--white-70); line-height: 1.7; }

/* ── Gallery Strip ───────────────────────────────────────── */
.gallery-strip { padding: 0 0 96px; }
.gallery-strip-inner { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.gallery-thumb { aspect-ratio: 1; overflow: hidden; cursor: zoom-in; background: linear-gradient(135deg, rgba(5,5,5,0.68), rgba(16,16,17,0.84)), url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/background.jpg") center / cover no-repeat; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), filter 0.3s; filter: brightness(0.9); }
.gallery-thumb:hover img { transform: scale(1.08); filter: brightness(1); }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-hero {
  background-image:
    linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 70%, var(--bg) 100%),
    url('https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/rakosi_background.jpg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.booking-section { padding: 80px 0 120px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }

/* Booking Info sidebar */
.booking-info-title { font-size: 22px; font-weight: 300; color: var(--white); margin-bottom: 32px; }
.booking-info-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.booking-info-item { display: flex; gap: 16px; align-items: flex-start; }
.booking-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.booking-info-text h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.booking-info-text p { font-size: 14px; color: var(--white-70); line-height: 1.6; }
.booking-divider { width: 100%; height: 1px; background: var(--divider); margin: 32px 0; }
.booking-hours h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.booking-hours-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-hours-item { display: flex; justify-content: space-between; font-size: 14px; color: var(--white); padding-bottom: 12px; border-bottom: 1px solid var(--divider); }
.booking-hours-item:last-child { border-bottom: none; }
.booking-hours-item span:last-child { color: var(--white-70); font-weight: 500; }
.booking-note-box { margin-top: 32px; background: var(--bg-2); border: 1px solid var(--divider); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 18px 20px; }
.booking-note-box p { font-size: 13px; color: var(--white-70); line-height: 1.7; }

/* Booking Form */
.booking-form-wrap { background: var(--bg-card); border: 1px solid var(--divider); border-radius: 8px; padding: 48px 40px; width: 100%; box-shadow: 0 12px 36px rgba(10,10,10,0.04); }
.booking-form-title { font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.booking-form-subtitle { font-size: 14px; color: var(--white-70); margin-bottom: 36px; line-height: 1.6; }

.booking-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--white); text-transform: uppercase; }

.form-input, .form-select, .form-textarea {
  background: var(--surface); border: 1px solid rgba(245,245,245,0.12); border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: 14px; padding: 14px 16px;
  transition: all 0.2s; outline: none; width: 100%; box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 3px rgba(211,18,42,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-40); }
.form-select {
  cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(245,245,245,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-select option { background: #1C1C1C; color: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-notice { font-size: 12.5px; color: var(--white-70); line-height: 1.6; background: rgba(10,10,10,0.03); border: 1px solid var(--divider); border-radius: var(--radius); padding: 16px; }

.btn-booking {
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 32px;
  background: var(--accent); color: var(--true-white); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--radius); cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.btn-booking:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(211, 18, 42, 0.25); }
.btn-booking:disabled { cursor: wait; opacity: 0.7; transform: none; box-shadow: none; }

.booking-loading-overlay { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(13,13,13,0.90); backdrop-filter: blur(8px); }
.booking-loading-overlay.show { display: flex; }
.booking-loading-box { display: flex; flex-direction: column; align-items: center; gap: 16px; width: min(100%, 320px); padding: 32px 24px; background: var(--bg-card); border: 1px solid var(--divider); border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,0.4); text-align: center; }
.booking-loading-spinner { width: 44px; height: 44px; border: 3px solid rgba(245,245,245,0.10); border-top-color: var(--accent); border-radius: 50%; animation: booking-spin 0.8s linear infinite; }
.booking-loading-box p { color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
@keyframes booking-spin { to { transform: rotate(360deg); } }

.booking-success { display: none; text-align: center; padding: 48px 0; }
.booking-success.show { display: block; }
.booking-success-icon { font-size: 64px; margin-bottom: 24px; }
.booking-success h3 { font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 16px; }
.booking-success p { font-size: 15px; color: var(--white-70); line-height: 1.7; }

/* ============================================================
   MENU LAYOUT — STICKY VERTICAL CATEGORY SIDEBAR + CONTENT
   ============================================================ */
.menu-layout { max-width: var(--max-w); margin: 0 auto; padding: 0 32px 80px; display: flex; align-items: flex-start; gap: 40px; background: var(--menu-bg); }

.category-sidebar { position: sticky; top: var(--nav-h); flex: 0 0 220px; width: 220px; align-self: flex-start; max-height: calc(100vh - var(--nav-h)); overflow-y: auto; overscroll-behavior: contain; padding: 32px 0; z-index: 50; scrollbar-width: none; border-right: 1px solid rgba(245,245,245,0.06); background: var(--menu-bg); }
.category-sidebar::-webkit-scrollbar { width: 0; height: 0; }

.category-nav { display: flex; flex-direction: column; padding-right: 18px; }
.cat-btn { display: flex; align-items: center; width: 100%; min-height: 48px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.07em; color: var(--white-60); text-decoration: none; padding: 14px 18px 14px 22px; border-radius: 0 8px 8px 0; text-transform: uppercase; line-height: 1.35; position: relative; transition: color 0.22s var(--ease), background 0.22s var(--ease), text-shadow 0.22s var(--ease); }
.cat-btn::before { content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 2px; border-radius: 999px; background: var(--accent); opacity: 0; transform: scaleY(0.45); transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.cat-btn::after { content: ''; position: absolute; left: 22px; right: 4px; bottom: 0; height: 1px; background: linear-gradient(90deg, rgba(245,245,245,0.08), rgba(245,245,245,0)); }
.cat-btn:last-child::after { display: none; }
.cat-btn:hover { color: var(--white); background: linear-gradient(90deg, rgba(240,240,240,0.055), rgba(240,240,240,0)); }
.cat-btn.active { color: var(--true-white); background: linear-gradient(90deg, rgba(211,18,42,0.18), rgba(211,18,42,0.04), rgba(211,18,42,0)); text-shadow: 0 0 18px rgba(211,18,42,0.28); }
.cat-btn.active::before { opacity: 1; transform: scaleY(1); box-shadow: 0 0 16px rgba(211,18,42,0.55); }
.menu-main { flex: 1 1 auto; min-width: 0; }

/* ============================================================
   MENU CONTENT
   ============================================================ */
.menu-loading { padding: 80px 0; text-align: center; color: var(--white-40); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
#menu-main { flex: 1 1 auto; min-width: 0; }
.menu-section { display: block; scroll-margin-top: calc(var(--nav-h) + 64px); }
.menu-section + .menu-section { margin-top: 32px; }
.section-header { padding: 64px 0 40px; border-bottom: 1px solid var(--divider); margin-bottom: 40px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-title { font-size: 32px; font-weight: 300; letter-spacing: 0.02em; color: var(--white); }
.section-desc { font-size: 14px; color: var(--white-70); line-height: 1.6; text-align: right; max-width: 380px; }

.items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; align-items: stretch; }
.menu-item { display: flex; flex-direction: column; height: 100%; background: linear-gradient(180deg, var(--menu-surface-2), var(--menu-surface)); border-radius: 8px; border: 1px solid rgba(240,240,240,0.07); box-shadow: 0 4px 18px rgba(0,0,0,0.28); overflow: hidden; transition: all 0.3s var(--ease); position: relative; max-width: 100%; cursor: pointer; }
.menu-item:hover { transform: translateY(-4px); border-color: rgba(240,240,240,0.16); box-shadow: 0 12px 28px rgba(0,0,0,0.35); background: linear-gradient(180deg, #181819, var(--menu-surface)); }
.menu-item:hover .item-image img { transform: scale(1.05); }

.item-image { aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, rgba(5,5,5,0.68), rgba(16,16,17,0.84)), url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/background.jpg") center / cover no-repeat; position: relative; max-height: 280px; }
.item-image.is-loading::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.04) 42%, transparent 72%); transform: translateX(-100%); animation: imageShimmer 1.25s ease-in-out infinite; }
.item-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease); }
.item-image.no-img { background: linear-gradient(135deg, rgba(5,5,5,0.72), rgba(16,16,17,0.88)), url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/background.jpg") center / cover no-repeat; display: flex; align-items: center; justify-content: center; }
.item-image.no-img::before { content: '🍣'; font-size: 56px; opacity: 0.15; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
/* Drinks & Desserts — no dark wood background, use transparent bg */
.item-image.no-dark-bg { background: transparent; }
.item-image.no-dark-bg img { object-fit: cover; }
@keyframes imageShimmer { to { transform: translateX(100%); } }

.item-body { padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1 1 auto; min-height: 260px; background: transparent; }
.item-name { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.item-portion { color: var(--white-40); font-size: 11px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-top: -2px; }
.item-desc { font-size: 13px; color: var(--white-70); line-height: 1.6; margin-top: 4px; }
.item-read-more { display: inline-flex; align-items: center; gap: 2px; color: var(--accent); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-left: 6px; white-space: nowrap; transition: color 0.2s; }
.item-read-more:hover { color: var(--accent-2); }
.item-read-more svg { margin-top: -1px; }
.item-meta { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 10px 12px; margin-top: auto; }
.item-labels { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 7px; max-width: 72%; margin: 0; padding: 7px 12px; border: 1px solid rgba(211,18,42,0.42); border-radius: 999px; background: rgba(126,18,30,0.82); box-shadow: 0 6px 18px rgba(126,18,30,0.18); }
.item-labels:empty { display: none; }
.allergen-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-2); border: 1px solid var(--divider); border-radius: 4px; padding: 4px 8px; font-size: 11px; font-weight: 500; color: var(--white-70); transition: all 0.2s; cursor: default; }
.allergen-tag:hover { background: rgba(245,245,245,0.08); border-color: rgba(245,245,245,0.15); color: var(--white); }
.item-labels .allergen-tag { gap: 0; min-width: 0; min-height: 0; justify-content: center; padding: 0; background: transparent; border: 0; border-radius: 0; color: #FFF7F7; text-shadow: 0 1px 3px rgba(0,0,0,0.38); box-shadow: none; }
.item-labels .allergen-tag:hover { background: transparent; border-color: transparent; color: var(--true-white); }
.allergen-icon { font-size: 12px; line-height: 1; }
.allergen-code { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: rgba(211, 18, 42, 0.1); border-radius: 3px; font-size: 9px; font-weight: 700; color: var(--accent); line-height: 1; }
.item-labels .allergen-code { display: none; }
.item-labels .allergen-label { display: none; }

.item-price { flex: 1 1 auto; min-width: 0; font-size: 16px; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; }

.featured-badge { position: absolute; top: 16px; left: 16px; z-index: 10; display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: var(--true-white); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; box-shadow: 0 4px 12px rgba(211, 18, 42, 0.3); }

/* ── Allergen legend ──────────────────────────────────────── */
.allergen-legend { margin-top: 80px; border-top: 1px solid var(--divider); padding-top: 40px; }
.legend-inner { display: flex; flex-direction: column; gap: 16px; }
.legend-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.legend-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.legend-note { font-size: 13px; color: var(--white-70); font-style: italic; line-height: 1.6; margin-top: 8px; }

/* ── Item labels — clickable allergen icons ───────────────── */
.item-labels { cursor: pointer; }
.item-labels:hover { background: rgba(155,18,36,0.92) !important; border-color: rgba(211,18,42,0.65) !important; box-shadow: 0 6px 22px rgba(126,18,30,0.32) !important; transition: all 0.2s; }

/* ── Allergen Modal Popup ─────────────────────────────────── */
.allergen-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 4, 4, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: allergenFadeIn 0.25s ease;
}
.allergen-modal-overlay.open { display: flex; }
@keyframes allergenFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.allergen-modal {
  position: relative;
  background: linear-gradient(160deg, #1a1214 0%, #160e10 60%, #1c1214 100%);
  border: 1px solid rgba(211, 18, 42, 0.22);
  border-radius: 14px;
  padding: 36px 36px 28px;
  width: min(100%, 520px);
  box-shadow:
    0 0 0 1px rgba(211,18,42,0.08),
    0 24px 64px rgba(0,0,0,0.65),
    0 8px 24px rgba(0,0,0,0.4);
  animation: allergenSlideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes allergenSlideUp {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.allergen-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,245,0.12);
  background: rgba(245,245,245,0.06);
  color: var(--white-70);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.allergen-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

.allergen-modal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.allergen-modal-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.allergen-modal-title {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.allergen-modal-subtitle {
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 24px;
  line-height: 1.5;
}

.allergen-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.allergen-modal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(245,245,245,0.07);
  background: rgba(245,245,245,0.03);
  transition: all 0.2s;
}
.allergen-modal-row.highlighted {
  border-color: rgba(211, 18, 42, 0.45);
  background: rgba(211, 18, 42, 0.10);
  box-shadow: 0 0 0 1px rgba(211,18,42,0.12), 0 4px 12px rgba(211,18,42,0.08);
}

.allergen-modal-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  transition: transform 0.2s;
}
.allergen-modal-row.highlighted .allergen-modal-icon {
  transform: scale(1.18);
}

.allergen-modal-info { min-width: 0; }
.allergen-modal-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.allergen-modal-name-hu {
  font-size: 11px;
  color: var(--white-40);
  font-weight: 400;
  margin-top: 1px;
}
.allergen-modal-row.highlighted .allergen-modal-name { color: var(--true-white); }

.allergen-modal-divider {
  height: 1px;
  background: var(--divider);
  margin-bottom: 16px;
}

.allergen-modal-note {
  font-size: 12px;
  color: var(--white-40);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 480px) {
  .allergen-modal { padding: 28px 20px 22px; }
  .allergen-modal-grid { grid-template-columns: 1fr; gap: 6px; }
  .allergen-modal-title { font-size: 18px; }
}

/* ── Sushi sub-group headings (Maki-Nigiri / Don-Fu-Gu / Sult-Sash) ── */
.subgroup-block { margin-bottom: 48px; }
.subgroup-block:last-child { margin-bottom: 0; }
.subgroup-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(211, 18, 42, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
}
.subgroup-title::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.menu-section.has-subgroups .items-grid { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--bg-2); border-top: 1px solid var(--divider); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 80px 32px 56px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.footer-logo-img { width: 72px; height: auto; max-width: 100%; object-fit: contain; }
.footer-logo-text { font-size: 22px; font-weight: 700; letter-spacing: 0.05em; color: var(--white); }
.footer-logo-text span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--white-70); line-height: 1.8; }
.footer-heading { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.footer-col p { font-size: 14px; color: var(--white-70); margin-bottom: 8px; line-height: 1.7; transition: color 0.2s; overflow-wrap: anywhere; }
.footer-col p a { overflow-wrap: anywhere; word-break: break-word; }
.footer-col p a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--divider); border-radius: 50%; font-size: 12px; font-weight: 600; color: var(--white-70); transition: all 0.2s; background: var(--surface); }
.social-link svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.social-link:hover { border-color: var(--accent); color: var(--true-white); background: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(211, 18, 42, 0.2); }
.footer-btn { display: inline-block; margin-top: 20px; padding: 12px 24px; border: 1px solid var(--accent); color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius); transition: all 0.2s; }
.footer-btn:hover { background: var(--accent); color: var(--true-white); box-shadow: 0 4px 12px rgba(211, 18, 42, 0.2); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 24px 32px; border-top: 1px solid var(--divider); font-size: 12px; color: var(--white-40); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--white-40); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }
.location-map { width: 100%; background: var(--bg-2); border-top: 1px solid var(--divider); overflow: hidden; line-height: 0; }
.location-map iframe { display: block; width: 100%; height: clamp(320px, 45vw, 500px); min-height: 320px; border: 0; filter: grayscale(10%); }

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.product-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(5, 3, 3, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: prodModalFadeIn 0.22s ease;
}
.product-modal-overlay.open { display: flex; }
@keyframes prodModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.product-modal {
  position: relative;
  background: linear-gradient(165deg, #141214 0%, #110e10 55%, #151213 100%);
  border: 1px solid rgba(211, 18, 42, 0.18);
  border-radius: 16px;
  width: min(100%, 440px);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  box-shadow:
    0 0 0 1px rgba(211,18,42,0.06),
    0 32px 80px rgba(0,0,0,0.7),
    0 12px 32px rgba(0,0,0,0.45);
  animation: prodModalSlideUp 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(245,245,245,0.1) transparent;
}
.product-modal::-webkit-scrollbar { width: 4px; }
.product-modal::-webkit-scrollbar-track { background: transparent; }
.product-modal::-webkit-scrollbar-thumb { background: rgba(245,245,245,0.1); border-radius: 4px; }

@keyframes prodModalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button */
.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,245,0.12);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  color: var(--white-70);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.product-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

/* Image section */
.product-modal-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5,5,5,0.68), rgba(16,16,17,0.84)),
    url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/background.jpg") center / cover no-repeat;
  border-radius: 16px 16px 0 0;
}
.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
  cursor: zoom-in;
}
.product-modal-image.no-dark-bg {
  background: transparent;
}
.product-modal-image.no-dark-bg img {
  object-fit: cover;
}

/* Featured badge inside modal */
.product-modal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: var(--true-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(211, 18, 42, 0.3);
}

/* Body content */
.product-modal-body {
  padding: 24px 28px 28px;
}

.product-modal-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 6px;
}

.product-modal-sku {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 12px;
}

.product-modal-portion {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white-50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 20px;
}

.product-modal-desc {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-modal-desc:empty { display: none; margin: 0; }

/* Price row */
.product-modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
  margin-bottom: 18px;
}

.product-modal-price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.product-modal-price.featured {
  text-shadow: 0 0 20px rgba(211, 18, 42, 0.3);
}

.product-modal-price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}

/* Allergen section in modal */
.product-modal-allergens-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-modal-allergens-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.product-modal-allergens-title:empty { display: none; }

.product-modal-allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-modal-allergens:empty { display: none; }

.product-modal-allergens .allergen-tag {
  background: rgba(245,245,245,0.04);
  border: 1px solid rgba(245,245,245,0.10);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11.5px;
  gap: 6px;
}
.product-modal-allergens .allergen-tag .allergen-icon { display: inline; font-size: 13px; }
.product-modal-allergens .allergen-tag .allergen-code {
  display: inline-flex;
  width: 18px;
  height: 18px;
  background: rgba(211, 18, 42, 0.12);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
}
.product-modal-allergens .allergen-tag .allergen-label {
  display: inline;
  font-size: 11px;
  color: var(--white-70);
}

/* ── Product Modal — Mobile (Popup) ──────────── */
@media (max-width: 640px) {
  .product-modal-overlay {
    padding: 16px;
  }

  .product-modal {
    width: 100%;
    max-height: 85vh;
  }

  .product-modal-image {
    max-height: 240px;
  }

  .product-modal-body {
    padding: 20px;
  }

  .product-modal-name { font-size: 18px; }
  .product-modal-price { font-size: 20px; }
  .product-modal-desc { font-size: 13px; }

  .product-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
/* -- Wood-tone background: tông gỗ tối sang trọng (dark walnut/rosewood) -- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12000;
  /* Nền gỗ tối: gradient nhiều lớp mô phỏng vân gỗ walnut ấm */
  background:
    /* overlay tối nhẹ để ảnh nổi bật */
    linear-gradient(160deg, rgba(10,6,4,0.55) 0%, rgba(10,6,4,0.30) 50%, rgba(10,6,4,0.55) 100%),
    /* vân gỗ ngang — ánh sáng và bóng tối xen kẽ */
    repeating-linear-gradient(
      175deg,
      transparent 0px,
      rgba(255,220,170,0.03) 2px,
      transparent 4px,
      rgba(0,0,0,0.08) 6px,
      transparent 9px,
      rgba(255,210,150,0.025) 12px,
      transparent 16px,
      rgba(0,0,0,0.05) 20px,
      transparent 26px
    ),
    /* vân gỗ xiên — tạo chiều sâu */
    repeating-linear-gradient(
      85deg,
      transparent 0px,
      rgba(180,120,60,0.06) 3px,
      transparent 6px,
      rgba(100,55,20,0.09) 10px,
      transparent 14px,
      rgba(200,140,70,0.04) 18px,
      transparent 24px
    ),
    /* màu nền gỗ tối cơ bản (dark rosewood/walnut) */
    linear-gradient(135deg, #1A0F08 0%, #2C1A0E 25%, #231208 50%, #2E1A0C 75%, #1C0F07 100%);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  cursor: default;
  animation: lightboxIn 0.35s var(--ease);
  /* viền vàng gỗ nhẹ + bóng đổ sâu để ảnh nổi lên */
  box-shadow:
    0 0 0 1px rgba(200, 150, 80, 0.25),
    0 2px 8px rgba(0,0,0,0.4),
    0 16px 56px rgba(0,0,0,0.7),
    0 40px 80px rgba(0,0,0,0.4);
}
@keyframes lightboxIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,80,0.25);
  background: rgba(30,15,5,0.7);
  color: rgba(230,200,160,0.9);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(211,18,42,0.35);
}
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(230, 200, 155, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ============================================================
   SCROLL REVEAL UTILITY
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
  .menu-layout { gap: 28px; }
  .category-sidebar { flex-basis: 184px; width: 184px; }
  .cat-btn { padding: 13px 14px; font-size: 12.5px; }
  .items-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .item-image { max-height: 240px; }
  .item-body { min-height: 260px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; padding: 64px 32px 48px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 48px 0 32px; }
  .section-desc { text-align: left; max-width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience-image-main { aspect-ratio: 16/9; border-radius: 10px; object-position: center center; }
  .experience-image-badge { width: 96px; height: 96px; bottom: 16px; left: 16px; }
  .exp-badge-icon { font-size: 22px; }
  .exp-badge-text { font-size: 8.5px; }
  .ayce-photo img { height: clamp(200px, 36vw, 340px); }
  .ayce-actions,
  .home-book-inner .hero-actions { flex-direction: column; width: 100%; max-width: 480px; margin-left: auto; margin-right: auto; }
  .ayce-actions .btn-primary,
  .ayce-actions .btn-outline,
  .home-book-inner .btn-primary,
  .home-book-inner .btn-outline { width: 100%; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .story-mosaic-copy { padding: 32px 24px 20px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-story-image { order: -1; }
  .about-ayce-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-ayce-image { order: -1; position: static; }
  .about-story-img-main { aspect-ratio: 16/9; max-height: 360px; object-position: center 42%; }
  .about-ayce-img { aspect-ratio: 16/9; max-height: 360px; object-position: center 42%; }
  .about-story-img-badge { bottom: -16px; left: -12px; width: 110px; height: 110px; }
  .booking-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .logo-img { height: 36px; max-width: 80px; }
  
  .main-nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 16px 16px 24px; border-bottom: 1px solid var(--divider); gap: 8px;
    transform: translateY(-110%); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0s linear 0.4s;
    z-index: 999; box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0s linear 0s; }
  .nav-link { padding: 14px 16px; font-size: 15px; border-radius: 6px; background: var(--menu-surface); text-align: center; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; padding: 14px; font-size: 14px; }

  .hamburger { display: flex; width: 48px; height: 48px; padding: 8px; }
  .hamburger span { width: 24px; height: 2px; }

  .lang-switcher--desktop { display: none; }
  .lang-switcher--mobile { display: flex; justify-content: center; gap: 16px; margin-top: 16px; padding-top: 16px; }

  .btn-primary, .btn-outline { width: 100%; justify-content: center; min-height: 52px; font-size: 14px; }

  .home-hero { min-height: 0; }
  .home-hero::before {
    background: linear-gradient(to bottom, rgba(13,13,13,0.62) 0%, rgba(13,13,13,0.48) 45%, rgba(13,13,13,0.72) 100%);
  }
  .home-hero-inner {
    padding: calc(var(--nav-h) + 20px) 24px 28px;
    text-align: center;
  }
  .home-hero-title {
    font-size: clamp(21px, 6.4vw, 30px);
    letter-spacing: 0.03em;
    margin: 0 auto 12px;
  }
  .home-hero-desc {
    font-size: 14px;
    margin: 0 auto 22px;
  }
  .hero-actions { flex-direction: column; gap: 12px; justify-content: center; align-items: center; }
  .home-hero #hero-book-btn {
    width: auto;
    min-height: 42px;
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: 0.06em;
    gap: 6px;
  }
  .hero-scroll { display: none; }

  .stats-bar { padding: 40px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 0 20px; }
  .stat-number { font-size: 32px; }

  .featured-section, .experience-section, .cta-section, .values-section, .team-section, .about-story, .about-ayce, .gallery-strip, .booking-section { padding: 48px 0; }
  .home-gallery { padding: 24px 0 32px; }
  .ayce-section { padding: 32px 0; }
  .home-book-section { padding: 32px 0 24px; }
  .story-mosaic-copy { padding: 28px 18px 16px; }
  .story-mosaic-copy h2 { font-size: 17px; margin-bottom: 12px; }
  .story-mosaic-copy p { font-size: 13.5px; line-height: 1.6; margin-bottom: 8px; }
  .story-mosaic-signoff { margin-top: 10px !important; }
  .rolunk-intro { padding: 0 0 24px; }
  .rolunk-intro-photo { padding: 16px 20px 0; margin-bottom: 16px; }
  .rolunk-intro-photo img { height: clamp(180px, 42vw, 240px); }
  .rolunk-intro .rolunk-script { font-size: 52px; margin-bottom: 8px; }
  .rolunk-intro-text { font-size: 14px; line-height: 1.65; }
  .rolunk-intro-text p + p { margin-top: 10px; }
  .btn-rolunk-more { margin-top: 16px; }
  .rolunk-detail-panel { padding: 36px 18px 20px; max-height: min(88vh, 720px); }
  .rolunk-detail-photos { gap: 8px; margin-top: 16px; }
  .rolunk-detail-panel .rolunk-script { font-size: 38px; margin-bottom: 6px; }
  .rolunk-script { font-size: 64px; }
  .section-wrap { padding: 0 20px; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-heading { font-size: clamp(26px, 8vw, 36px); }
  .home-gallery-head { margin-bottom: 16px; }
  .home-gallery-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 68vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-bottom: 8px;
    gap: 12px;
  }
  .home-gallery-item img { height: min(200px, 26vh); }

  .ayce-head .section-label { font-size: 15px; }
  .ayce-photo { margin-bottom: 16px; }
  .ayce-photo img { height: clamp(160px, 48vw, 240px); }
  .ayce-price-list li { gap: 10px; padding: 12px 14px; }
  .ayce-price-period { font-size: 12.5px; line-height: 1.4; white-space: nowrap; }
  .ayce-price-value { font-size: 13px; white-space: nowrap; }
  .ayce-more { margin-bottom: 16px; width: 100%; }
  .ayce-more-panel { padding: 18px 16px 20px; }
  .ayce-more-panel .ayce-detail-title { font-size: 20px; }
  .ayce-more-panel .ayce-detail-lead { font-size: 14px; }
  .ayce-actions { flex-direction: column; width: 100%; }
  .ayce-actions .btn-primary,
  .ayce-actions .btn-outline { width: 100%; }
  .home-book-inner .hero-actions { max-width: none; }
  #cta-call-btn { letter-spacing: 0.04em; font-size: 13px; white-space: normal; }

  /* Experience & About story images — panoramic on mobile */
  .experience-image-main { aspect-ratio: 16/9; border-radius: 10px; object-position: center center; }
  .experience-image-badge { width: 80px; height: 80px; bottom: 12px; left: 12px; gap: 4px; }
  .exp-badge-icon { font-size: 18px; }
  .exp-badge-text { font-size: 7.5px; }
  .about-story-img-main { aspect-ratio: 16/9; max-height: 280px; object-position: center 42%; border-radius: 10px; }
  .about-story-img-badge { display: none; }
  .about-ayce-img { aspect-ratio: 16/9; max-height: 280px; object-position: center 42%; border-radius: 10px; }

  .featured-grid, .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-card, .featured-card:first-child { aspect-ratio: 4/3; }
  
  .team-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; gap: 20px; }
  .gallery-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 3px; }

  .page-hero { height: 240px; padding-bottom: 32px; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(32px, 9vw, 42px); }

  /* Slim vertical category rail pinned on the left, content scrolls beside it */
  .menu-layout { padding: 0 0 56px; gap: 0; align-items: stretch; background: var(--menu-bg); }
  .category-sidebar { flex: 0 0 82px; width: 82px; padding: 8px 0; top: var(--nav-h); max-height: calc(100vh - var(--nav-h)); background: var(--menu-bg); border-right: 1px solid rgba(240,240,240,0.055); box-shadow: none; }
  .category-nav { gap: 0; padding: 0; }
  .cat-btn { flex-direction: column; justify-content: center; text-align: center; font-size: 8.8px; font-weight: 700; letter-spacing: 0.055em; padding: 13px 8px 13px 11px; border-radius: 0; min-height: 64px; height: 64px; line-height: 1.28; color: var(--white-50); overflow: hidden; }
  .cat-btn::before { top: 14px; bottom: 14px; width: 2px; }
  .cat-btn::after { left: 12px; right: 12px; background: linear-gradient(90deg, rgba(245,245,245,0), rgba(245,245,245,0.09), rgba(245,245,245,0)); }
  .cat-btn:hover { background: linear-gradient(90deg, rgba(240,240,240,0.045), rgba(240,240,240,0)); }
  .cat-btn.active { color: var(--true-white); background: linear-gradient(90deg, rgba(211,18,42,0.22), rgba(211,18,42,0.05), rgba(211,18,42,0)); box-shadow: none; }

  .menu-main { min-width: 0; background: var(--menu-bg); }
  #menu-main { padding: 0 12px 56px; }
  .section-header { padding: 22px 0 16px; margin-bottom: 18px; }
  .section-title { font-size: 21px; }

  /* Mobile menu reads as one continuous dark list instead of separate patches. */
  .items-grid { grid-template-columns: 1fr; gap: 10px; }
  .menu-item { flex-direction: row; min-height: 168px; height: auto; border-radius: 0; border: 0; border-bottom: 1px solid rgba(240,240,240,0.14); background: transparent; box-shadow: none; }
  .menu-item:first-child { border-top: 1px solid rgba(240,240,240,0.10); }
  .menu-item:hover { background: rgba(240,240,240,0.025); box-shadow: none; }
  .item-image { width: 120px; min-width: 120px; height: auto; align-self: stretch; aspect-ratio: auto; border-radius: 0; background: linear-gradient(135deg, rgba(5,5,5,0.70), rgba(12,12,13,0.86)), url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/background.jpg") center / cover no-repeat; }
  .item-body { flex: 1 1 auto; min-height: 0; padding: 14px 14px; gap: 6px; background: transparent; }
  .item-name { font-size: 14px; -webkit-line-clamp: 3; }
  .item-desc { font-size: 12px; margin-top: 0; }
  .item-meta { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: auto; }
  .item-price { font-size: 15px; }
  .item-labels { max-width: 100%; gap: 6px; padding: 6px 10px; }
  .item-labels .allergen-tag { font-size: 10px; }
  .item-labels .allergen-icon { display: inline; }
  .allergen-tag { font-size: 10px; padding: 3px 6px; }
  .featured-badge { display: none; }

  .booking-form-wrap { padding: 32px 20px; border-radius: 0; border-left: none; border-right: none; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-input, .form-select, .form-textarea { font-size: 16px; padding: 16px; min-height: 52px; }
  .btn-booking { min-height: 56px; font-size: 15px; width: 100%; margin-top: 16px; }

  .footer-inner { grid-template-columns: 1fr; padding: 48px 20px 32px; gap: 32px; }
  .footer-logo-img { width: 64px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)); }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px 20px; }
}

@media (max-width: 390px) {
  .header-inner { padding: 0 16px; }
  .home-hero-inner { padding: calc(var(--nav-h) + 16px) 16px 24px; }
  .home-hero-title { font-size: 20px; }
  .section-wrap { padding: 0 16px; }
  .home-gallery-strip { margin-inline: -16px; padding-inline: 16px; }
  .ayce-head .section-label { font-size: 14px; }
  .ayce-photo img { height: clamp(150px, 46vw, 200px); }
  .ayce-price-list li { gap: 8px; padding: 11px 12px; }
  .ayce-price-period { font-size: 11.5px; white-space: nowrap; }
  .ayce-price-value { font-size: 12px; }
  #menu-main { padding: 0 10px 56px; }
  .category-sidebar { flex-basis: 74px; width: 74px; }
  .cat-btn { font-size: 8.2px; padding: 12px 6px 12px 9px; min-height: 60px; height: 60px; letter-spacing: 0.045em; }
  .menu-item { min-height: 148px; height: auto; }
  .item-image { width: 104px; min-width: 104px; align-self: stretch; }
  .item-labels { max-width: 100%; padding: 5px 8px; }
  .stats-inner { gap: 20px 12px; padding: 0 16px; }
  .stat-number { font-size: 28px; }
  .booking-form-wrap { padding: 24px 16px; }
  .footer-inner { padding: 40px 16px 32px; }
  .story-mosaic-copy { padding: 24px 16px 14px; }
  .story-mosaic-copy h2 { font-size: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .page-hero { height: 220px; }
}

@media (hover: none) and (pointer: coarse) {
  .featured-card:hover { transform: none; box-shadow: none; }
  .menu-item:hover { transform: none; box-shadow: none; border-color: rgba(240,240,240,0.14); background: transparent; }
  .testimonial-card:hover, .value-card:hover, .team-card:hover { transform: none; box-shadow: 0 4px 12px rgba(10,10,10,0.02); }
  .btn-primary:hover, .btn-booking:hover { transform: none; box-shadow: none; background: var(--accent); }
  .btn-rolunk-more:hover { transform: none; box-shadow: none; background: var(--gold); }
  .btn-outline:hover { transform: none; background: transparent; color: var(--white-70); border-color: var(--white-40); }
  .link-arrow:hover { gap: 6px; }
  .home-gallery-item:hover img { transform: none; }
  .story-mosaic-item:hover img { transform: none; }
  .rolunk-detail-photos img:hover { transform: none; box-shadow: none; }
  a, button { -webkit-tap-highlight-color: rgba(211, 18, 42, 0.1); }
  .lang-btn { min-width: 48px; min-height: 48px; padding: 14px; }
  .social-link { width: 44px; height: 44px; }
  .cat-btn { min-height: 52px; }
  .hamburger { min-width: 48px; min-height: 48px; }
}

/* ── Order Popup ─────────────────────────────────────────── */
.order-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 4, 4, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: popupFadeIn 0.3s ease;
}
.order-popup-overlay.show { display: flex; }
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }

.order-popup-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(211, 18, 42, 0.22);
  border-radius: 12px;
  padding: 40px 32px 32px;
  width: min(100%, 460px);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(211,18,42,0.1);
  animation: popupSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupSlideUp { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

.order-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,245,0.12);
  background: rgba(245,245,245,0.06);
  color: var(--white-70);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.order-popup-close:hover { background: var(--accent); border-color: var(--accent); color: var(--true-white); transform: scale(1.1); }

.order-popup-header h3 { font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 16px; }
.order-popup-body p { font-size: 14.5px; color: var(--white-70); line-height: 1.6; margin-bottom: 24px; }
.order-popup-btn { display: inline-flex; width: 100%; justify-content: center; font-size: 14px; padding: 16px 24px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* ============================================================
   ORDER BUTTONS — Nav, Hero, Floating
   ============================================================ */

/* ── Nav Order Button ─────────────────────────────────────── */
.nav-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--true-white);
  background: var(--accent);
  padding: 9px 16px;
  border-radius: var(--radius);
  margin-left: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.nav-order-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.nav-order-btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(211, 18, 42, 0.35);
  color: var(--true-white);
}
.nav-order-btn svg { flex-shrink: 0; }

/* ── Hero Order Button ────────────────────────────────────── */
.btn-order-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent) 0%, #f01b35 100%);
  color: var(--true-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(211, 18, 42, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-order-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn-order-hero:hover::before { left: 100%; }
.btn-order-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(211, 18, 42, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #e01030 0%, #ff2040 100%);
  color: var(--true-white);
}
.btn-order-hero svg { flex-shrink: 0; }

/* ── Floating Order Button ────────────────────────────────── */
.floating-order-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--true-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(211, 18, 42, 0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: all 0.25s var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.floating-order-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(211, 18, 42, 0.5);
  animation: floatPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(211, 18, 42, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(211, 18, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 18, 42, 0); }
}
.floating-order-btn:hover {
  background: var(--accent-2);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 36px rgba(211, 18, 42, 0.55), 0 4px 12px rgba(0,0,0,0.4);
  color: var(--true-white);
}
.floating-order-label { white-space: nowrap; }
/* ── Mobile responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-order-btn { margin-left: 0; margin-top: 8px; text-align: center; padding: 14px; font-size: 14px; justify-content: center; }
  .btn-order-hero { width: 100%; justify-content: center; min-height: 52px; font-size: 14px; }
  .floating-order-btn { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 12px; gap: 8px; }
}
