/* ══════════════════════════════════════════════════
   GOA OF INDIA — PREMIUM REDESIGN
   Warm Luxury · Tandoori Soul · 2026
   ══════════════════════════════════════════════════ */

/* --- TOKENS ----------------------------------- */
:root {
  /* Core palette — warm, not cold */
  --ink: #0D0906;
  --ink-2: #180F09;
  --surface: #1C120B;
  --surface-2: #251810;
  --surface-3: #2E1E13;
  --border: rgba(255, 200, 120, 0.08);
  --border-warm: rgba(255, 200, 120, 0.16);

  /* Brand colors */
  --saffron: #FF9933;
  --saffron-2: #E8832A;
  --saffron-glow: rgba(255, 153, 51, 0.18);
  --gold: #D4AF37;
  --gold-bright: #F0CC55;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --amber: #F0A030;

  /* Text */
  --text: #FFFFFF;
  /* near-white warm — was #F5ECD7 */
  --text-2: #EDE3D5;
  /* clear secondary — was #C8B49A */
  --text-muted: #CCBFB0;
  /* readable muted — was #8A7260 */
  --text-dim: #A09080;
  /* subtle dim — was #5A4A3A */

  /* Accents */
  --green-soft: #6DBF88;
  --red-soft: #D97060;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.6);

  /* Nav height */
  --nav-h: 100px;

  /* Ease */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--ink);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Rotating Indian heritage background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-image, url('./img/sanchi_bg.png'));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.22;
  transition: background-image 1s ease;
}

/* Heritage site caption — bottom-left corner */
.bg-caption {
  position: fixed;
  bottom: 14px;
  left: 16px;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  pointer-events: none;
  max-width: 280px;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 540px;
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(13, 9, 6, 0.55) 0%,
      rgba(13, 9, 6, 0.35) 40%,
      rgba(13, 9, 6, 0.72) 80%,
      rgba(13, 9, 6, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeUp 1.2s var(--ease) both;
  animation-delay: 0.2s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-since {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 12vw, 96px);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-bright);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 40px;
  opacity: 0.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 200, 120, 0.35);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 153, 51, 0.12);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.hero-cta:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--saffron-glow);
}

.hero-cta svg {
  transition: transform 0.3s var(--ease);
}

.hero-cta:hover svg {
  transform: translateY(3px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleY(1.1);
  }
}

/* ══════════════════════════════════════════════════
   STICKY NAV (Main Site Integration)
   ══════════════════════════════════════════════════ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0D0906;
  /* Solid dark background like screenshot */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* very subtle */
  /* Remove blur for perfect solid match */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

@media (min-width: 860px) {
  .nav-inner {
    padding: 16px 36px;
  }
}

/* Brand Text Logo */
.nav-main-brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-goa,
.brand-india {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #D4AF37;
  /* The exact gold from the screenshot */
  font-weight: 300;
  /* Thinner weight for elegance */
}

.brand-of {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #998c76;
  /* slightly muted gold/grey */
  font-style: italic;
  font-weight: 300;
}

/* Desktop Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  display: none;
}

@media (min-width: 860px) {
  .nav-links {
    gap: 28px;
  }

  .nav-link {
    display: inline;
  }
}

@media (min-width: 860px) {
  .nav-links {
    width: auto;
    margin-top: 0;
    padding-bottom: 0;
    overflow-x: visible;
    gap: 28px;
  }
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  /* Lighter font weight */
  color: #a39c91;
  /* Greyish tan for inactive links */
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #D4AF37;
  /* Active/Hover uses the main gold */
}

.nav-btn-reserve {
  font-size: 13px;
  font-weight: 400;
  color: #D4AF37;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  /* Subtler gold border */
  border-radius: 4px;
  padding: 8px 18px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  background: transparent;
}

.nav-btn-reserve:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: #D4AF37;
}

/* Right Actions (Table + Lang) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.table-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--saffron);
  background: rgba(255, 153, 51, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 999px;
  padding: 2px 10px;
  letter-spacing: 1px;
}

/* Language switch flag ONLY */
.lang-switch-flag {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
}

/* Hamburger Button */
.hamburger {
  background: transparent;
  border: none;
  color: #D4AF37;
  cursor: pointer;
  padding: 4px;
  display: flex;
}

@media (min-width: 860px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0D0906;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 153, 51, 0.2);
  gap: 20px;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 860px) {
  .mobile-menu {
    display: none !important;
  }
}

.nav-link-mobile {
  font-size: 16px;
  font-weight: 500;
  color: #D4AF37;
  text-decoration: none;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════
   OUR STORY
   ══════════════════════════════════════════════════ */
.story-section {
  padding: 100px 24px;
  background: transparent;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold-bright);
  font-weight: 300;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.story-rule {
  width: 48px;
  height: 2px;
  background: var(--saffron);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Category strip (Sticky Nav) */
.filter-strip-wrap {
  position: sticky;
  top: var(--nav-height, 58px);
  z-index: 90;
  background: rgba(13, 9, 6, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 200, 120, 0.1);
  padding: 10px 16px 10px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Row 1: Full-width search bar */
.search-row {
  width: 100%;
}

.search-row .search-pill {
  width: 100%;
  border-radius: 999px;
}

.search-row .search-input {
  width: 100%;
  flex: 1;
  cursor: text;
}

.search-row .search-input::placeholder {
  color: var(--text-dim);
}

.search-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.search-pill:focus-within {
  background: rgba(255, 153, 51, 0.05);
  border-color: var(--saffron);
}

.search-icon {
  position: absolute;
  left: 14px;
  font-size: 14px;
  color: var(--text-dim);
  pointer-events: none;
  transition: color 0.3s var(--ease);
}

.search-pill:focus-within .search-icon {
  color: var(--saffron);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 16px 10px 38px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: text;
  outline: none;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--text-dim);
}

.search-input:focus {
  outline: none;
}

.filter-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 153, 51, 0.1);
  margin-bottom: 20px;
}

.filter-strip::-webkit-scrollbar {
  display: none;
}

.fs-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 120, 0.2);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.fs-pill:hover {
  color: var(--text);
  border-color: rgba(255, 200, 120, 0.3);
}

.fs-pill.active {
  background: var(--saffron);
  border: 1px solid var(--saffron);
  color: #000;
  font-weight: 600;
  box-shadow: none;
}

/* ── General Menu Notice Banner ── */
.menu-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 860px;
  margin: 12px auto 0;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.menu-notice-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   MENU FEED
   ══════════════════════════════════════════════════ */
.menu-feed {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 120px;
}

/* ── Category Navigation ── */
.category-nav-strip {
  width: 100%;
}

.category-nav-scroll {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-nav-scroll::-webkit-scrollbar {
  display: none;
}

.cat-nav-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 200, 120, 0.2);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.cat-nav-link:hover,
.cat-nav-link:active,
.cat-nav-link.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(255, 153, 51, 0.4);
  color: var(--text);
  box-shadow: none;
}

/* ── Mobile: compact horizontal scroll strip ── */
@media (max-width: 768px) {
  .filter-strip-wrap {
    padding: 10px 10px;
  }

  .category-nav-scroll {
    gap: 8px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .cat-nav-link {
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 12px;
    gap: 5px;
  }

  .cat-nav-link .icon {
    font-size: 14px;
  }

  .search-pill {
    flex-basis: 100%;
    margin-bottom: 4px;
  }
}

/* ── Category Section ── */
.category-section {
  padding: 0 0 8px;
  scroll-margin-top: 160px;
  /* Offset so sticky nav doesn't cover header when jumping */
}

.category-header {
  position: relative;
  padding: 44px 28px 20px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.cat-icon {
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 153, 51, 0.4));
}

.cat-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.1;
}

.cat-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  opacity: 0.7;
}

.cat-rule {
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(to right, var(--saffron), transparent 70%);
  opacity: 0.35;
}

.cat-count {
  font-size: 11px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 0;
  padding: 12px 0 0;
}

/* ── Dish Card ── */
.dish-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease);
  cursor: default;
  position: relative;
}

.dish-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--saffron);
  opacity: 0;
  transition: all 0.25s var(--ease);
  border-radius: 0 2px 2px 0;
}

.dish-card:hover {
  background: rgba(255, 200, 100, 0.03);
}

.dish-card:hover::after {
  width: 3px;
  opacity: 1;
}

.dish-card.in-feast {
  background: rgba(255, 153, 51, 0.04);
}

.dish-card.in-feast::after {
  width: 3px;
  opacity: 1;
}

/* Left */
.card-info {
  flex: 1;
  min-width: 0;
}

.card-name-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 5px;
}

.card-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.1px;
}

.card-id {
  color: var(--saffron);
  font-weight: 400;
  margin-right: 4px;
  opacity: 0.8;
  font-size: 14px;
}

.d-badge {
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}

.card-allergens {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: -2px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.spice {
  font-size: 10px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.15s;
}

.card-desc.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  color: var(--text-2);
}

.card-more {
  font-size: 11px;
  color: var(--saffron);
  cursor: pointer;
  display: none;
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.card-more:hover {
  opacity: 0.75;
}

.card-more.visible {
  display: inline-block;
}

/* Right */
.card-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 1px;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Add button */
.btn-add {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 153, 51, 0.3);
  background: rgba(255, 153, 51, 0.06);
  color: var(--saffron);
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s var(--ease);
  flex-shrink: 0;
  font-family: inherit;
  line-height: 1;
}

.btn-add:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 16px var(--saffron-glow);
}

.btn-add.added {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #000;
  font-size: 13px;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════
   SKELETON
   ══════════════════════════════════════════════════ */
@keyframes shimmer {
  0% {
    background-position: -600px 0;
  }

  100% {
    background-position: 600px 0;
  }
}

.skel-cat,
.skel-card {
  border-radius: var(--r-sm);
  background: linear-gradient(90deg,
      var(--surface) 25%,
      var(--surface-2) 50%,
      var(--surface) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite;
  margin: 0 28px;
}

.skeleton-wrap {
  padding-top: 40px;
}

.skel-cat {
  height: 40px;
  margin-bottom: 16px;
  width: 45%;
}

.skel-cat--sm {
  width: 35%;
  margin-top: 32px;
}

.skel-card {
  height: 70px;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 100px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-glyph {
  font-size: 32px;
  color: var(--saffron);
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.08);
  }
}

.empty-state p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════
   CART FAB
   ══════════════════════════════════════════════════ */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 153, 51, 0.25);
  background: var(--surface);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 153, 51, 0.1);
  transition: all 0.25s var(--ease);
  animation: fabPop 0.35s var(--ease) both;
}

@keyframes fabPop {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cart-fab:hover {
  background: var(--surface-3);
  border-color: var(--saffron);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7), 0 0 24px var(--saffron-glow);
  transform: translateY(-2px);
}

/* Dimmed state when feast is empty — always visible but unobtrusive */
.cart-fab.fab-empty {
  opacity: 0.45;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cart-fab.fab-empty:hover {
  opacity: 0.75;
  border-color: rgba(255, 153, 51, 0.2);
}

.fab-icon {
  font-size: 18px;
}

.fab-badge {
  background: var(--saffron);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
  letter-spacing: 0;
}

.fab-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.5px;
}

/* Waiter ghost — tiny, unobtrusive */
.waiter-ghost {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-warm);
  background: rgba(28, 18, 11, 0.9);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease);
  color: inherit;
  font-family: inherit;
}

.waiter-ghost:hover {
  border-color: var(--saffron);
  background: rgba(255, 153, 51, 0.08);
  box-shadow: 0 0 16px var(--saffron-glow);
  transform: scale(1.08);
}

/* ══════════════════════════════════════════════════
   MODAL SHEET
   ══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: transparent;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  transition: background 0.3s ease;
}

.modal-overlay.open {
  background: rgba(7, 4, 2, 0.82);
  pointer-events: all;
}

.modal-sheet {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.34, 1.38, 0.64, 1);
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.modal-overlay.open .modal-sheet {
  transform: translateY(0);
}

.modal-drag-bar {
  width: 32px;
  height: 3px;
  background: var(--border-warm);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-hd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.5px;
}

.modal-x {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-warm);
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  font-family: inherit;
}

.modal-x:hover {
  border-color: var(--saffron);
  color: var(--text);
  background: var(--surface-3);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.feast-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.feast-row:last-child {
  border-bottom: none;
}

.feast-row:hover {
  background: rgba(255, 200, 100, 0.02);
}

.feast-row-info {
  flex: 1;
  min-width: 0;
}

.feast-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}

.feast-unit {
  font-size: 12px;
  color: var(--text-muted);
}

.feast-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-right: 12px;
}

.feast-qty-ctrl {
  display: flex;
  align-items: center;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 32px;
  flex-shrink: 0;
}

.btn-qty {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
}

.btn-qty:hover {
  color: var(--saffron);
}

.qty-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  min-width: 20px;
  text-align: center;
}

.btn-rm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-warm);
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s var(--ease);
  font-family: inherit;
  flex-shrink: 0;
}

.btn-rm:hover {
  background: rgba(200, 60, 60, 0.12);
  border-color: rgba(200, 60, 60, 0.3);
  color: var(--red-soft);
}

/* ── SMART PAIRINGS STRIP ────────────────────────── */
.pairings-area {
  padding: 16px 24px 24px;
  background: var(--surface-2);
  border-top: 1px dashed rgba(255, 153, 51, 0.15);
}

.pairings-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--saffron);
  margin-bottom: 12px;
  font-weight: 500;
}

.pairings-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.pairings-scroll::-webkit-scrollbar {
  display: none;
  /* Safari/Chrome */
}

.pair-card {
  flex: 0 0 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pair-name {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pair-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.pair-price {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-pair-add {
  min-width: 32px;
  height: 28px;
  border-radius: 14px;
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pair-add:hover {
  background: var(--saffron);
  color: #000;
  border-color: var(--saffron);
}

.modal-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--border-warm);
  flex-shrink: 0;
  background: var(--surface-2);
}

.modal-ft-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-ft-count {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.modal-ft-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-bright);
}

.btn-place-order {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-xl);
  border: none;
  background: var(--saffron);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.btn-place-order:hover {
  background: #FFAA55;
  box-shadow: 0 6px 24px var(--saffron-glow);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--surface-3);
  color: var(--text);
  padding: 10px 22px;
  border-radius: var(--r-xl);
  font-size: 13px;
  font-weight: 500;
  max-width: 88vw;
  text-align: center;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-warm);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .dish-card {
    padding: 20px 36px;
  }

  .category-header {
    padding: 50px 36px 22px;
  }

  .cat-rule {
    left: 36px;
    right: 36px;
  }

  .skel-cat,
  .skel-card {
    margin: 0 36px;
  }
}

/* ══════════════════════════════════════════════════
   SOCIAL PROOF
   ══════════════════════════════════════════════════ */
.social-proof {
  background: linear-gradient(180deg, var(--bg) 0%, #15110e 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(circle at top, rgba(255, 153, 51, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.social-proof-inner {
  width: 100%;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social-proof .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 32px;
  padding: 0 24px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(255, 153, 51, 0.2);
}

/* ── Infinite Marquee Ticker ── */
.marquee-wrap {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto 32px;
  mask-image: linear-gradient(to right, transparent, black 5vw, black 95vw, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5vw, black 95vw, transparent);
}

.gallery-marquee {
  margin-bottom: 40px;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  padding-right: 20px;
  /* match the gap for seamless loop */
  min-width: 100%;
  align-items: stretch;
  animation: scroll-marquee 100s linear infinite;
  /* Slowed down from 40s */
}

.gallery-marquee .marquee-track {
  gap: 16px;
  padding-right: 16px;
  animation-duration: 120s;
  /* Slowed down from 50s */
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.review-card {
  flex: 0 0 320px;
  background: rgba(42, 30, 22, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 51, 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 400px;
  }
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(255, 153, 51, 0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
}

.review-card .stars {
  color: #FBBC04;
  font-size: 16px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(251, 188, 4, 0.3);
}

.review-card .review-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  flex-grow: 1;
}

.gallery-item {
  flex: 0 0 300px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

@media (min-width: 768px) {
  .gallery-item {
    flex: 0 0 400px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 153, 51, 0.3);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  margin-bottom: 20px;
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-bright);
}

.btn-google .g-icon {
  font-weight: 700;
  color: #4285F4;
}

/* ══════════════════════════════════════════════════
   RESERVATION MODAL & FORM
   ══════════════════════════════════════════════════ */
.reserve-modal-sheet {
  max-height: 92vh;
}

.reserve-modal-body {
  padding: 20px 20px 36px !important;
}

/* ── Form layout ── */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rf-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

/* ── Inputs ── */
.rf-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.rf-input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px var(--saffron-glow);
}

.rf-input::placeholder {
  color: var(--text-dim);
}

input[type="date"].rf-input,
input[type="time"].rf-input {
  color-scheme: dark;
}

.rf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpolyline points='1,1 6,6 11,1' fill='none' stroke='%23CCBFB0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.rf-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

/* ── Turnstile ── */
.cf-turnstile {
  margin-top: 2px;
}

/* ── Submit button ── */
.rf-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--saffron);
  color: #1a0800;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, transform 0.12s;
  margin-top: 4px;
}

.rf-submit:hover {
  background: var(--saffron-2);
}

.rf-submit:active {
  transform: scale(0.98);
}

.rf-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ── Feedback messages ── */
.rf-feedback {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  line-height: 1.5;
}

.rf-feedback[hidden] {
  display: none;
}

.rf-success {
  background: rgba(109, 191, 136, 0.1);
  border: 1px solid rgba(109, 191, 136, 0.28);
  color: var(--green-soft);
}

.rf-error {
  background: rgba(217, 112, 96, 0.1);
  border: 1px solid rgba(217, 112, 96, 0.28);
  color: var(--red-soft);
}

.rf-feedback-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Field-level validation ── */
.rf-input--error {
  border-color: var(--red-soft) !important;
  box-shadow: 0 0 0 3px rgba(217, 112, 96, 0.15) !important;
}

.rf-field-error {
  font-size: 0.75rem;
  color: var(--red-soft);
  line-height: 1.4;
  display: none;
}

.rf-field-error.visible {
  display: block;
}

/* ── Allergen Info Button ── */
.allergen-btn-wrap {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  background: rgba(13, 9, 6, 0.4);
}

.btn-allergen-info {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-allergen-info:hover {
  border-color: var(--saffron);
  color: var(--text);
  background: rgba(212, 175, 55, 0.05);
}

/* ══════════════════════════════════════════════════
   ALLERGEN LEGEND (Modal Version)
   ══════════════════════════════════════════════════ */
.allergen-legend-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 5px;
}

.allergen-item {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.allergen-item:last-child {
  border-bottom: none;
}

.allergen-item strong {
  color: var(--saffron);
  font-weight: 600;
  min-width: 30px;
}

/* ══════════════════════════════════════════════════
   CONTACT FOOTER
   ══════════════════════════════════════════════════ */
.contact-footer {
  background: var(--surface-2);
  padding: 60px 24px 100px;
  border-top: 1px solid var(--border-warm);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold-bright);
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.5;
}

.map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: 32px;
  background: var(--surface-3);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .contact-links {
    flex-direction: row;
    justify-content: center;
  }
}

/* ── Desktop: centered wrapping pills ── */
@media (min-width: 769px) {
  .category-nav-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    gap: 10px;
  }
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.5px;
}

.btn-call {
  background: rgba(255, 153, 51, 0.1);
  color: var(--saffron);
  border: 1px solid rgba(255, 153, 51, 0.3);
}

.btn-call:hover {
  background: var(--saffron);
  color: #000;
}

.btn-wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: #25D366;
  color: #000;
}

.btn-mail {
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-mail:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-address {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.footer-impressum {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 24px;
}

.footer-impressum strong {
  color: var(--gold-bright);
}
