/* ==================================================================
   The Taj — Digital Menu Stylesheet
   Theme: Dark Luxury Indian Restaurant & Bar
   Colors: Charcoal Matte Black, Royal Gold, Crimson Red, Cream White
   Typography: Playfair Display (Serif) & Inter (Sans-Serif)
   ================================================================== */

:root {
  /* Dark Luxury Palette */
  --bg-dark:       #0e0c0b;  /* deep charcoal matte black     */
  --bg-panel:      #161413;  /* surface color for cards        */
  --bg-panel-h:    #1f1c1a;  /* slightly lighter for hover     */
  --gold:          #d4af37;  /* royal gold primary             */
  --gold-dark:     #b38728;  /* deeper gold for shadows/borders*/
  --gold-glow:     rgba(212, 175, 55, 0.15);
  --gold-border:   rgba(212, 175, 55, 0.22);
  
  --crimson:       #c83e2d;  /* vibrant accent crimson         */
  --crimson-dark:  #9e2a1e;  
  --crimson-tint:  rgba(200, 62, 45, 0.18);
  
  --cream:         #f5ebd6;  /* warm cream text                */
  --cream-soft:    #c2b7a3;  /* muted description text         */
  --cream-faint:   #8c806f;  /* allergen codes, fine print     */
  --line:          rgba(194, 183, 163, 0.12); /* divider lines*/
  
  /* Shadows sitting naturally in dark luxury theme */
  --shadow-soft:   0 4px 16px rgba(0, 0, 0, 0.65);
  --shadow-gold:   0 8px 32px rgba(212, 175, 55, 0.12);
  --shadow-glow:   0 0 24px rgba(212, 175, 55, 0.08);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --header-h: 132px; /* approximate sticky header height */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  background-color: var(--bg-dark);
  /* Luxury glowing radial effects & subtle patterns */
  background-image:
    radial-gradient(circle at 10% -10%, rgba(200, 62, 45, 0.12), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(212, 175, 55, 0.08), transparent 45%),
    radial-gradient(circle at 50% 60%, rgba(212, 175, 55, 0.04), transparent 50%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* ------------------------------------------------------------------ */
/* Language Nudge Banner                                              */
/* ------------------------------------------------------------------ */
.lang-nudge {
  display: block;
  width: 100%;
  border: 0;
  padding: 11px 16px;
  padding-top: max(11px, env(safe-area-inset-top));
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid var(--gold);
}
.lang-nudge:active { filter: brightness(0.92); }
.lang-nudge[hidden] { display: none; }

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 12, 11, 0.82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--gold-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  padding-top: max(14px, env(safe-area-inset-top));
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }

.logo {
  flex: none;
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.45));
}

.brand-text { min-width: 0; }

.brand-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.brand-tagline {
  margin: 3px 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cream-soft);
  letter-spacing: 0.08em;
  max-width: 42ch;
  text-transform: uppercase;
}

/* Language toggle */
.lang-toggle {
  flex: none;
  display: inline-flex;
  background: rgba(22, 20, 19, 0.85);
  border: 1.5px solid var(--gold-border);
  border-radius: 999px;
  padding: 3.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.lang-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.76rem;
  padding: 7px 9px;
  min-height: 32px;
  min-width: 32px;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.lang-btn:active { transform: scale(0.94); }
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0e0c0b;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.45);
}

@media (max-width: 420px) {
  .lang-code { display: none; }
  .lang-btn { padding: 6px 7px; }
}

/* Category navigation */
.cat-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 26px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 26px), transparent);
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-link {
  flex: none;
  border: 1px solid var(--gold-border);
  background: rgba(22, 20, 19, 0.6);
  color: var(--cream-soft);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 15px;
  min-height: 36px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-link:active { transform: scale(0.95); }
.cat-link.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0e0c0b;
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------------ */
/* Menu Sections                                                      */
/* ------------------------------------------------------------------ */
/* Menu Filter Bar */
.menu-filter-container {
  max-width: 800px;
  margin: 16px auto 12px;
  padding: 0 14px;
}
.menu-filter-bar {
  display: flex;
  background: rgba(22, 20, 19, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 4px;
  justify-content: space-between;
  gap: 6px;
  box-shadow: var(--shadow-soft);
}
.filter-btn {
  flex: 1;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 8px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.filter-btn:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0e0c0b;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

@media(max-width: 400px) {
  .filter-btn {
    font-size: 0.74rem;
    padding: 8px 4px;
    gap: 4px;
  }
}

.menu {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 14px 48px;
}

.category {
  scroll-margin-top: var(--header-h);
  margin: 0 0 32px;
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  transition: border-color 0.3s;
}

/* Alternating red/gold styling for category blocks */
.category--red {
  border-color: rgba(200, 62, 45, 0.35);
  box-shadow: var(--shadow-soft), 0 0 24px rgba(200, 62, 45, 0.05);
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 15px 20px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid var(--gold-border);
}
.category--red .cat-header {
  background: linear-gradient(90deg, rgba(200, 62, 45, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(200, 62, 45, 0.35);
}

.cat-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
  color: var(--gold);
}
.category--red .cat-icon {
  background: rgba(200, 62, 45, 0.15);
  box-shadow: inset 0 0 0 1px rgba(200, 62, 45, 0.25);
  color: var(--crimson);
}

.cat-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.category--red .cat-title {
  color: #ff6e5e;
}

.category > .compact-block {
  margin: 16px;
}

/* Two-column menu grid on larger viewport, 1-col on mobile */
.dish-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
  padding: 16px;
}

@media (min-width: 600px) {
  .dish-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Dish card */
.dish {
  display: flex;
  flex-direction: column;
  background: rgba(30, 26, 24, 0.45);
  border: 1px solid rgba(194, 183, 163, 0.08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-soft), var(--shadow-gold);
}
.category--red .dish:hover {
  border-color: rgba(200, 62, 45, 0.4);
  box-shadow: var(--shadow-soft), 0 8px 24px rgba(200, 62, 45, 0.15);
}

/* Vertical 3:4 aspect ratio photo frame */
.dish-thumb {
  --thumb-mat: 10px;
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: var(--thumb-mat);
  background: #191614;
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.category--red .dish-thumb img {
  border-color: rgba(200, 62, 45, 0.35);
}

.dish:hover .dish-thumb img {
  transform: scale(1.04);
}

/* Glassmorphic Zoom Badge */
.dish-zoom-badge {
  position: absolute;
  bottom: calc(var(--thumb-mat) + 6px);
  right: calc(var(--thumb-mat) + 6px);
  background: rgba(14, 12, 11, 0.85);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 2;
  transition: all 0.2s;
}
.dish:hover .dish-zoom-badge {
  background: var(--gold);
  color: #0e0c0b;
  transform: scale(1.05);
}

/* Prep-time Badge */
.dish-time-badge {
  position: absolute;
  top: calc(var(--thumb-mat) + 6px);
  right: calc(var(--thumb-mat) + 6px);
  z-index: 1;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(14, 12, 11, 0.75);
  backdrop-filter: blur(4px);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Prep-time chip for text-only dishes */
.time-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream-soft);
}

.dish-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dish-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.dish-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.3;
}

.dish-price {
  flex: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.dish-price::after { content: " €"; font-size: 0.78em; font-weight: 600; }

.dish-desc {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--cream-soft);
  line-height: 1.45;
  flex: 1;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

/* Dietary Tag Pill Styling */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.tag--vegan      { background: rgba(74, 133, 62, 0.16); color: #8ad679; border: 1px solid rgba(74, 133, 62, 0.3); }
.tag--vegetarian { background: rgba(140, 166, 68, 0.16); color: #d6f27b; border: 1px solid rgba(140, 166, 68, 0.3); }
.tag--spicy      { background: var(--crimson-tint); color: #ff867a; border: 1px solid rgba(200, 62, 45, 0.35); }
.tag--very_spicy { background: rgba(200, 62, 45, 0.28); color: #ff523d; border: 1px solid rgba(200, 62, 45, 0.6); }

.serves {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.allergen-codes {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--cream-faint);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ------------------------------------------------------------------ */
/* Compact Category (Beilagen)                                       */
/* ------------------------------------------------------------------ */
.compact-block {
  background: rgba(30, 26, 24, 0.3);
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.compact-banner {
  display: flex;
  flex-direction: column;
}
.compact-banner .dish-thumb {
  width: 100%;
  aspect-ratio: 16 / 7;
  padding: 0;
  border-radius: 0;
  background: #110f0e;
}
.compact-banner .dish-thumb img {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--gold-border);
}

.compact-banner span.cb-text {
  font-size: 0.8rem;
  color: var(--cream-soft);
  font-style: italic;
  padding: 10px 14px;
  border-bottom: 1px dashed var(--line);
  background: rgba(0,0,0,0.2);
}

.compact-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px dashed var(--line);
}
.compact-item:last-child { border-bottom: 0; }
.compact-item .ci-main { flex: 1; min-width: 0; }
.compact-item .ci-name { font-family: var(--serif); font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.compact-item .ci-desc { font-size: 0.78rem; color: var(--cream-soft); margin-top: 3px; line-height: 1.35; }
.compact-item .ci-codes { font-size: 0.66rem; color: var(--cream-faint); letter-spacing: 0.08em; margin-top: 3px; }
.compact-item .ci-price {
  flex: none;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.compact-item .ci-price::after { content: " €"; font-size: 0.78em; font-weight: 600; }

/* ------------------------------------------------------------------ */
/* About Us Section                                                   */
/* ------------------------------------------------------------------ */
.about-section {
  max-width: 800px;
  margin: 24px auto 32px;
  padding: 0 14px;
  scroll-margin-top: var(--header-h);
}

.about-card {
  background: linear-gradient(145deg, #161413 0%, #0e0c0b 100%);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-gold);
  padding: 28px 20px 24px;
  position: relative;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson) 100%);
}

.about-header-bar {
  text-align: center;
  margin-bottom: 24px;
}

.about-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid var(--gold-border);
}

.about-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.15;
}

.about-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream-soft);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .about-gallery { grid-template-columns: 1fr; }
}

.about-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  border: 1.5px solid var(--gold-border);
  background: #110f0e;
}

.about-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: zoom-in;
}
.about-photo-wrap:hover .about-img {
  transform: scale(1.05);
}

.about-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(14, 12, 11, 0.95) 0%, transparent 100%);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 16px 10px 8px;
}

.about-content {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--line);
}
.about-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--cream-soft);
}
.about-text strong {
  color: var(--gold);
  font-weight: 600;
}

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.site-footer {
  background: #110f0e;
  border-top: 1px solid var(--gold-border);
  color: var(--cream-soft);
  text-align: center;
  margin-top: 16px;
}

.footer-banner-wrapper {
  width: 100%;
  background: #0e0c0b;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--gold-border);
  padding: 10px 0;
}
.footer-banner {
  display: block;
  max-height: 90px;
  width: auto;
}

.footer-content {
  padding: 24px 20px calc(28px + env(safe-area-inset-bottom));
}

.insta {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.04);
  transition: all 0.2s;
}
.insta:hover {
  background: var(--gold);
  color: #0e0c0b;
}

.footer-reviews {
  margin-bottom: 24px;
}
.reviews-title {
  font-size: 0.82rem;
  color: var(--cream-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.reviews-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media(min-width: 480px) {
  .reviews-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  min-height: 40px;
  background: rgba(22, 20, 19, 0.9);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.2s;
  width: 250px;
}
.review-btn:active { transform: scale(0.97); }
.review-btn:hover {
  background: var(--gold);
  color: #0e0c0b;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.footer-made { margin: 2px 0; font-size: 0.84rem; color: var(--cream); }
.footer-address { margin: 2px 0 20px; font-size: 0.78rem; color: var(--cream-faint); }

/* Allergen legend */
.allergens {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: rgba(22, 20, 19, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 4px 14px;
  box-shadow: var(--shadow-soft);
}
.allergens summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  padding: 11px 2px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--gold);
}
.allergens summary::-webkit-details-marker { display: none; }
.allergens .chevron { transition: transform 0.2s; color: var(--gold-dark); }
.allergens[open] .chevron { transform: rotate(180deg); }
.allergen-hint { margin: 0 0 8px; font-size: 0.74rem; color: var(--cream-soft); }
.allergen-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 12px;
}
@media (min-width: 400px) {
  .allergen-list { grid-template-columns: 1fr 1fr; }
}
.allergen-list li { font-size: 0.78rem; color: var(--cream-soft); display: flex; align-items: center; }
.allergen-list b {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  margin-right: 8px;
  border-radius: 4px;
  background: var(--gold);
  color: #0e0c0b;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-note {
  margin: 18px 0 0;
  font-size: 0.7rem;
  color: var(--cream-faint);
}

/* ------------------------------------------------------------------ */
/* Welcome Preloader Screen                                           */
/* ------------------------------------------------------------------ */
.welcome-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0e0c0b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}
.welcome-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-gate-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.08), transparent 60%),
    radial-gradient(circle at 10% 10%, rgba(200, 62, 45, 0.05), transparent 45%);
  z-index: 1;
}

.welcome-gate-content {
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.welcome-logo-wrapper {
  margin-bottom: 24px;
}
.welcome-logo {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.45));
  animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3)); }
  100% { transform: scale(1.03); filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.55)); }
}

.welcome-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--gold);
  margin: 0 0 12px;
  line-height: 1.25;
}

.welcome-subtitle {
  font-size: 0.85rem;
  color: var(--cream-soft);
  margin: 0 0 32px;
  line-height: 1.45;
}

.welcome-lang-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

.welcome-lang-btn {
  border: 1px solid var(--gold-border);
  background: rgba(22, 20, 19, 0.6);
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.welcome-lang-btn:hover {
  background: rgba(212, 175, 55, 0.08);
}
.welcome-lang-btn.is-active {
  background: var(--gold);
  color: #0e0c0b;
  border-color: var(--gold);
  font-weight: 700;
}

.welcome-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 0;
  border-radius: 99px;
  color: #0e0c0b;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.45);
}
.welcome-cta-btn:active {
  transform: translateY(0);
}

.welcome-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--cream-faint);
}

.status-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid var(--cream-faint);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.welcome-status.is-ready .status-spinner {
  display: none;
}
.welcome-status.is-ready {
  color: var(--gold);
  font-weight: 600;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ------------------------------------------------------------------ */
/* Fullscreen Lightbox Modal                                         */
/* ------------------------------------------------------------------ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  padding-top: calc(16px + env(safe-area-inset-top));
}
.lightbox-modal.is-open { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 500px;
  width: 100%;
  background: #141211;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.3);
}

.lightbox-back-btn {
  background: transparent;
  border: 0;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
}
.lightbox-back-btn:hover { color: var(--gold); }

.lightbox-close {
  background: transparent;
  border: 0;
  color: var(--cream-soft);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 4px 8px;
}
.lightbox-close:hover { color: var(--crimson); }

.lightbox-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #090808;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-media img.is-zoomed {
  cursor: move;
}

/* Detail Zoom Pill Hint */
.lightbox-zoom-hint {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 12, 11, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  z-index: 10;
  transition: all 0.3s;
}
.lightbox-zoom-hint.is-zoomed {
  background: var(--crimson);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.lightbox-info {
  padding: 16px;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lightbox-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
}

.lightbox-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
}
