/* ==================================================================
   Alser Cafe — Premium digital menu stylesheet
   Aesthetic: High-end Viennese Bistro & Cocktail Lounge.
   Palette: Rich espresso black, warm cashmere cream, brass-gold accents.
   ================================================================== */

:root {
  /* Color Palette */
  --bg-dark:       #110f0e;  /* Deep dark espresso black */
  --bg-dark-2:     #181513;  /* Slightly lighter dark for cards/footers */
  --bg-light:      #fcfbf7;  /* Cashmere soft off-white paper */
  --bg-light-2:    #f5f2e8;  /* Deeper cream wash for section dividers */
  --card:          #ffffff;  /* Card background */
  
  --ink:           #24211e;  /* Warm near-black text */
  --ink-soft:      #5c564f;  /* Muted dark grey for descriptions */
  --ink-faint:     #968e85;  /* Allergen codes & fine print */
  
  --gold:          #c5a880;  /* Refined brass gold */
  --gold-dark:     #ab8e67;  /* Darker brass gold for hover */
  --gold-tint:     #fbf9f3;  /* Faint gold overlay tint */
  --gold-glow:     rgba(197, 168, 128, 0.15);
  
  --line:          #e5e1d5;  /* Thin divider on light background */
  --line-dark:     #2b2724;  /* Thin divider on dark background */

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-premium: 0 16px 40px rgba(36, 33, 30, 0.05);
  --shadow-soft:    0 4px 16px rgba(36, 33, 30, 0.02);
  --shadow-header:  0 8px 30px rgba(18, 16, 14, 0.12);
  --shadow-gold:    0 6px 20px rgba(197, 168, 128, 0.18);

  --header-h: 124px; /* Sticky header height for scroll-spy offset */
}

/* Base Styles & Resets */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bg-light);
  /* Textured look using CSS gradients for a high-end feel */
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(197, 168, 128, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(197, 168, 128, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

strong {
  font-weight: 700;
  color: var(--gold-dark);
}

/* ------------------------------------------------------------------ */
/* Welcome Preloader Gate                                             */
/* ------------------------------------------------------------------ */
.welcome-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.welcome-gate-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 30%, #1e1915 0%, #110f0e 100%);
  background-size: cover;
}

.welcome-gate-bg::before {
  content: "";
  position: absolute;
  top: 25%; left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
}

.welcome-gate-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 44px 36px;
  background: rgba(24, 21, 19, 0.88);
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 80px rgba(197, 168, 128, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  color: var(--bg-light);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-logo-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 99px;
  padding: 5px 16px;
  margin-bottom: 24px;
  background: rgba(197, 168, 128, 0.03);
}

.welcome-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #ffffff;
}

.welcome-subtitle {
  font-size: 0.84rem;
  color: #a8a29e;
  margin: 0 0 36px;
  line-height: 1.5;
}

.welcome-lang-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.welcome-lang-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e7e5e4;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.welcome-lang-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
}

.welcome-lang-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.welcome-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #b39772 100%);
  border: 0;
  color: var(--bg-dark);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 15px 24px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 168, 128, 0.3);
  filter: brightness(1.04);
}

.welcome-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #8c857f;
  margin-top: 16px;
}

.status-spinner {
  width: 12px; height: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: welcome-spin 0.8s linear infinite;
}

.welcome-status.is-ready .status-spinner {
  display: none;
}

.welcome-status.is-ready {
  color: var(--gold);
  font-weight: 600;
}

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

.welcome-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-gate.is-hidden .welcome-gate-content {
  transform: translateY(-20px);
}

/* ------------------------------------------------------------------ */
/* Language Switch Nudge                                              */
/* ------------------------------------------------------------------ */
.lang-nudge {
  display: block;
  width: 100%;
  border: 0;
  padding: 11px 16px;
  background: var(--bg-dark);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.lang-nudge:hover {
  background: #1c1815;
  color: #ffffff;
}

.lang-nudge[hidden] {
  display: none;
}

/* ------------------------------------------------------------------ */
/* Sleek Dark Header (Differentiator from Gleiswirt's light header)   */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 15, 14, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--gold);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 720px;
  margin: 0 auto;
}

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

.brand-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 8px;
}

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

.brand-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #ffffff;
}

.brand-tagline {
  margin: 2px 0 0;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Dark Theme Language Toggle */
.lang-toggle {
  flex: none;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 0;
  background: transparent;
  color: #a8a29e;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  padding: 5px 11px;
  min-height: 28px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

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

/* Category Navigation (Horizontal scrollable pill menu) */
.cat-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 20px 10px;
  max-width: 720px;
  margin: 0 auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
}

.cat-nav::-webkit-scrollbar {
  display: none;
}

.cat-link {
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #e7e5e4;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  padding: 6px 12px;
  min-height: 30px;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cat-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cat-link.active {
  background: #ffffff;
  color: var(--bg-dark);
  border-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

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

.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  padding: 28px 20px;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

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

.about-badge {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.about-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--bg-dark);
}

.about-subtitle {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-gallery {
  margin-bottom: 16px;
}

.about-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.about-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

.about-photo-wrap:hover .about-img {
  transform: scale(1.02);
}

.about-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 20px 12px 8px;
}

.about-content {
  background: var(--bg-light-2);
  border-radius: 10px;
  padding: 14px 18px;
}

.about-text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ------------------------------------------------------------------ */
/* Menu Structure & Categories                                        */
/* ------------------------------------------------------------------ */
.menu {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 16px 40px;
}

.category {
  scroll-margin-top: var(--header-h);
  margin: 0 0 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

/* Centered Typographic Header (Differentiator from solid blocks) */
.cat-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border-bottom: 0;
  padding: 32px 20px 16px;
}

.cat-icon {
  display: none; /* Hide icon box for a cleaner typographic layout */
}

.cat-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--bg-dark);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

/* Tiny Gold Accent Line below Category Title */
.cat-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 1.5px;
  background: var(--gold);
}

/* ------------------------------------------------------------------ */
/* Dish Layout Cards Grid (Borderless style, top accent line)       */
/* ------------------------------------------------------------------ */
.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
  padding: 12px 0;
}

@media (max-width: 580px) {
  .dish-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 8px 0;
  }
}

/* Borderless card with clean gold top header */
.dish {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  height: 100%;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--line);
  z-index: 3;
}

.dish:hover::before {
  background: var(--gold);
}

.dish:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(36, 33, 30, 0.07);
}

/* Thumbnail */
.dish-thumb {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-light-2);
  cursor: zoom-in;
}

.dish-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Zoom badge */
.dish-zoom-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(18, 16, 14, 0.7);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
}

.dish:hover .dish-zoom-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Dish details (Pricing moved below title in gold color) */
.dish-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dish-top {
  display: flex;
  flex-direction: column; /* Stack name and price vertically */
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

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

.dish-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-dark); /* Highlight color */
  margin-top: 2px;
}

.dish-price::after {
  content: " €";
  font-size: 0.85em;
  font-weight: 600;
}

.dish-desc {
  margin: 0 0 12px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Crisp rectangular metadata tags (Differentiator from Gleiswirt's pills) */
.dish-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 2.5px 6px;
  border-radius: 3px; /* Clean rectangular shapes */
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tag--vegan {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.tag--vegetarian {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fef3c7;
}

.tag--spicy {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fee2e2;
}

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

.addon {
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-tint);
  border: 1px dashed rgba(197, 168, 128, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
}

/* ------------------------------------------------------------------ */
/* Compact Category Layout (Drinks)                                   */
/* ------------------------------------------------------------------ */
.compact-block {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--line);
}

.compact-banner {
  display: flex;
  padding: 12px 20px;
  background: var(--bg-light-2);
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.compact-banner .cb-text {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-soft);
}

.compact-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bg-light-2);
}

.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(--bg-dark);
}

.compact-item .ci-desc {
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 2px;
  line-height: 1.4;
}

.compact-item .ci-codes {
  font-size: 0.64rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.compact-item .ci-price {
  flex: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-dark);
  white-space: nowrap;
}

.compact-item .ci-price::after {
  content: " €";
  font-size: 0.85em;
  font-weight: 600;
}

/* ------------------------------------------------------------------ */
/* Collapsible Allergens                                              */
/* ------------------------------------------------------------------ */
.allergens {
  max-width: 480px;
  margin: 16px auto;
  text-align: left;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 4px 14px;
}

.allergens summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  padding: 10px 2px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

.allergens summary::-webkit-details-marker {
  display: none;
}

.allergens .chevron {
  transition: transform 0.25s;
  color: var(--gold);
  font-size: 0.8rem;
}

.allergens[open] .chevron {
  transform: rotate(180deg);
}

.allergen-hint {
  margin: 0 0 10px;
  font-size: 0.7rem;
  color: #78716c;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 8px;
}

.allergen-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.allergen-list li {
  font-size: 0.74rem;
  color: #d6d3d1;
  display: flex;
  align-items: center;
}

.allergen-list b {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  margin-right: 8px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.62rem;
  font-weight: 800;
}

/* ------------------------------------------------------------------ */
/* Reviews Section                                                   */
/* ------------------------------------------------------------------ */
.reviews-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
  border-top: 1px solid var(--line);
  padding: 44px 16px 56px;
}

.reviews-container {
  max-width: 680px;
  margin: 0 auto;
}

.reviews-section-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-top: 0;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.review-author {
  font-weight: 700;
  color: var(--bg-dark);
}

.review-source {
  color: var(--ink-faint);
  font-size: 0.7rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-quote {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold);
  color: #d6d3d1;
  text-align: center;
}

.footer-content {
  padding: 40px 24px calc(40px + env(safe-area-inset-bottom));
  max-width: 600px;
  margin: 0 auto;
}

.reviews-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #ffffff;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 11px 22px;
  min-height: 44px;
  background: var(--gold);
  color: var(--bg-dark);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.15);
  transition: all 0.2s;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
  background: #dbbe95;
}

.review-btn:active {
  transform: translateY(0);
}

.footer-made {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-address {
  margin: 0 0 24px;
  font-size: 0.74rem;
  color: #78716c;
}

.footer-note {
  margin: 24px 0 0;
  font-size: 0.64rem;
  color: #57534e;
}

/* ------------------------------------------------------------------ */
/* Fullscreen Lightbox Modal                                         */
/* ------------------------------------------------------------------ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  padding-top: max(20px, env(safe-area-inset-top));
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.lightbox-back-btn {
  background: transparent;
  border: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.lightbox-back-btn:hover {
  background: rgba(197, 168, 128, 0.1);
}

.lightbox-close {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.lightbox-media {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 16px 0;
}

.lightbox-media img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
}

.lightbox-media img.is-zoomed {
  cursor: move;
}

.lightbox-zoom-hint {
  position: absolute;
  bottom: 16px;
  background: rgba(18, 16, 14, 0.8);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox-zoom-hint.is-zoomed {
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

.lightbox-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.lightbox-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.lightbox-price::after {
  content: " €";
  font-size: 0.85em;
  font-weight: 600;
}
