/* ===== BRAND TOKENS ===== */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #8B6914;
  --gold-dim:    rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.22);

  --bg:          #000000;
  --surface:     #111111;
  --surface-2:   #1a1a1a;
  --surface-3:   #222222;

  --text:        #F5F0E8;
  --text-muted:  #9C9080;

  --radius:      12px;
  --radius-sm:   6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NOISE TEXTURE ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem 1.5rem 2.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.10) 0%, transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--gold-border);
}

.header-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.site-logo-frame {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    #E8C97A 0%,
    #b49234 40%,
    #1f1704 100%
  );
}

.site-logo {
  display: block;
  width: min(300px, 78vw);
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.site-tagline {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== WEEKLY MENU ===== */
.weekly-section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%),
    var(--surface);
  border-bottom: 1px solid var(--gold-border);
}

.weekly-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.weekly-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.weekly-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.weekly-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.weekly-card-body {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.weekly-cat-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.weekly-dish-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.weekly-dish-item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 2rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.weekly-dish-item:last-child { border-bottom: none; }

.weekly-dish-name {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
}

.weekly-dish-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.weekly-promo {
  border-top: 1px solid var(--gold-border);
  padding: 1.5rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  align-items: center;
}

.weekly-promo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.weekly-promo-desc {
  font-size: 1rem;
  color: var(--text);
}

.weekly-promo-note {
  font-size: 0.9rem;
  color: var(--text-muted, rgba(255,255,255,0.55));
}

@media (max-width: 650px) {
  .weekly-section { padding: 2.5rem 1rem 3rem; }
  .weekly-title { font-size: 1.4rem; }
  .weekly-header { margin-bottom: 1.75rem; }
  .weekly-card-body { padding: 1.75rem 1.25rem; gap: 1.5rem; }
  .weekly-dish-name { font-size: 0.9rem; }
  .weekly-dish-price { font-size: 0.88rem; }
  .weekly-promo { padding: 1.25rem 1.25rem 1.5rem; }
}

/* ===== CATEGORY NAV ===== */
.category-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}

.category-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease;
}

.category-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.category-btn:active { transform: scale(0.96); }

.category-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.category-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
}

/* ===== MENU SECTION ===== */
.menu-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

/* ===== CATEGORY BLOCK ===== */
.category-section { margin-bottom: 3rem; }

.category-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.5), transparent);
}

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* ===== MENU CARD ===== */
.menu-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 4px 20px rgba(201, 168, 76, 0.07);
}

.menu-card:active { transform: translateY(-2px); }

.menu-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.card-img-wrap {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  background: var(--surface-2);
}

.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.card-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 1;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-sm);
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-price {
  margin-top: auto;
  padding-top: 0.7rem;
}

.card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ===== DRINKS SECTION ===== */
.drinks-section {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 2rem 2rem 4rem;
}

.drinks-columns {
  max-width: 1000px;
  margin: 0 auto;
  columns: 2;
  column-gap: 3.5rem;
}

.drinks-block {
  break-inside: avoid;
  margin-bottom: 2.2rem;
}

.drinks-block-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold-border);
}

.drinks-list {
  list-style: none;
}

.drinks-list--two-col {
  columns: 2;
  column-gap: 3rem;
}

.drinks-list--two-col .drinks-item {
  break-inside: avoid;
}

@media (max-width: 600px) {
  .drinks-list--two-col { columns: 1; }
}

.drinks-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name price"
    "sub  .";
  align-items: baseline;
  column-gap: 0.75rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drinks-item:last-child {
  border-bottom: none;
}

.drinks-name {
  grid-area: name;
  font-size: 0.85rem;
  color: var(--text);
}

.drinks-sub {
  grid-area: sub;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.1rem;
}

.drinks-dots { display: none; }

.drinks-price {
  grid-area: price;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 650px) {
  .drinks-columns { columns: 1; }
  .drinks-section { padding: 2rem 1.2rem 3rem; }
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== POPUP ===== */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.93);
  z-index: 300;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  width: min(520px, calc(100vw - 2rem));
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(201, 168, 76, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

.popup.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.popup-img-wrap {
  position: relative;
  padding-top: 52%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: var(--surface-2);
}

.popup-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, transparent 55%);
}

.popup-body {
  padding: 1.4rem 1.6rem 2rem;
}

.popup-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.popup-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.popup-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.popup-allergen-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.popup-price {
  margin-top: 1.1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.popup-close:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
}

.popup-close:active { transform: scale(0.92); }

/* ===== GALLERY ===== */
.gallery-section {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--gold-border);
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.gallery-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Marquee strip */
.gallery-strip-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.gallery-row-outer {
  overflow: hidden;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-row-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  will-change: transform;
}

.gallery-tile {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gallery-tile-img {
  position: relative;
  height: 185px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
}

.gallery-tile-img img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.gallery-tile:hover .gallery-tile-img img {
  transform: scale(1.05);
}

.gallery-tile-caption {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.3rem 0.1rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Play icon */
.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gallery-play-icon svg {
  width: 18px;
  height: 18px;
  fill: #000;
  margin-left: 3px;
}

/* "Összes kép" button */
.gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}
.gallery-more-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-more-btn:hover { background: var(--gold); color: #000; }

/* "Összes kép" full-screen overlay */
.gallery-all-overlay {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(0,0,0,0.94);
  overflow-y: auto;
  padding: 1.25rem 1rem 2rem;
}
.gallery-all-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}
.gallery-all-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery-all-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.gallery-all-close:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.gallery-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-all-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--surface-2);
}
.gallery-all-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-all-thumb:hover img { transform: scale(1.06); }

@media (max-width: 600px) {
  .gallery-tile-img { height: 125px; }
  .gallery-all-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: min(90vw, 1000px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  outline: none;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close:hover { background: rgba(201,168,76,0.25); border-color: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.lightbox-prev:active,
.lightbox-next:active { transform: translateY(-50%) scale(0.94); }

/* ===== INFO SECTION ===== */
.info-section {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 3rem 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.info-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.5), transparent);
}

/* Hours list */
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hours-row.closed .hours-day,
.hours-row.closed .hours-time {
  color: var(--text-muted);
  opacity: 0.5;
}

.hours-row.today {
  background: rgba(212,175,55,0.08);
  border-radius: 6px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.hours-row.today .hours-day {
  color: var(--gold-light);
}

.hours-day {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.hours-time {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.hours-kitchen {
  display: flex;
  justify-content: space-between;
  padding: 0.15rem 0 0.35rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hours-kitchen-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.hours-kitchen-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Map */
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) brightness(0.9);
}

.map-address {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-address a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease;
}
.map-address a:hover { color: var(--gold-light); }

@media (max-width: 700px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--gold-border);
}

.social-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--gold-border);
  color: var(--text);
  background: var(--surface);
  transition: transform 0.15s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.social-btn:active { transform: translateY(0); }

.social-btn--facebook:hover { background: rgba(24, 119, 242, 0.12); border-color: #1877f2; }
.social-btn--instagram:hover { background: rgba(225, 48, 108, 0.12); border-color: #e1306c; }
.social-btn--tiktok:hover { background: rgba(255, 255, 255, 0.07); border-color: #fff; }

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--gold-border);
  background: #121212;
}

.footer-logo {
  width: 90px;
  height: auto;
  border-radius: 4px;
  opacity: 0.85;
}

.footer-divider {
  width: 160px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
  margin: 1.2rem 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-info a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-info a:hover { color: var(--gold-light); }

.footer-copy {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  opacity: 0.5;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .site-header { padding: 2.5rem 1rem 1.8rem; }
  .site-logo { width: 210px; }
  .menu-section { padding: 1.8rem 1rem 4rem; }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 0.9rem;
  }

  .card-name { font-size: 0.92rem; }
  .card-body { padding: 0.8rem 0.85rem 1rem; }

  .popup { border-radius: 12px; }
  .popup-name { font-size: 1.3rem; }
  .popup-body { padding: 1.1rem 1.2rem 1.6rem; }

  .category-nav { padding: 0.7rem 1rem; gap: 0.4rem; }
}
