/* =============================================================
   Mermerli — Public Site
   Restaurant & Cafe · Antalya Kaleiçi · Premium QR Menu
   ============================================================= */

@import url('tokens.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
input, button, select, textarea {
  font-family: inherit;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-warm); text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--brand-deep);
}
/* Brand-defining elements keep the display serif */
.hero h1,
.hero-tagline,
.brand-link .word-name,
.footer-brand .name { font-family: var(--font-display); }

/* Tabular figures for prices and numeric values */
.product-price,
.product-price-alt,
.stat-card .val,
.product-detail-price,
.product-detail-price-alt strong {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--brand-warm); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 36px);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 36px);
}

.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--brand-deep); color: #fff;
  padding: 8px 16px; z-index: 10000; border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; color: #fff; }

/* =============================================================
   Site Header — fixed, glass over hero
   NOTE: backdrop-filter is on ::before so it doesn't establish a
   containing block for fixed-position descendants (mobile menu, lang FAB).
   ============================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  background: transparent;
  transition: box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
  isolation: isolate;
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: transparent;
  transition: background var(--t-base);
  pointer-events: none;
}
.site-header.scrolled::before {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.site-header.scrolled {
  box-shadow: 0 2px 14px rgba(42,31,20,.06);
  border-bottom-color: var(--cream-edge);
}
.header-inner { display: flex; align-items: center; gap: 16px; width: 100%; }
.brand-link { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand-link img { height: 44px; width: auto; transition: filter var(--t-base); }
.site-header:not(.scrolled) .brand-link img { filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand-link .word {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-link .word-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 2px;
  color: var(--brand-deep);
  transition: color var(--t-base);
}
.site-header:not(.scrolled) .brand-link .word-name { color: #fff; }
.brand-link .word-sub {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--brand-warm); margin-top: 4px;
}
.site-header:not(.scrolled) .brand-link .word-sub { color: rgba(255,255,255,.85); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--brand-deep); transition: all var(--t-base); letter-spacing: .3px;
}
.site-header:not(.scrolled) .main-nav a { color: #fff; }
.main-nav a:hover { background: rgba(169, 116, 63, .12); color: var(--brand-warm); }
.site-header:not(.scrolled) .main-nav a:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.main-nav a.active { color: var(--brand-warm); }

/* === Language dropdown switcher === */
.lang-dropdown {
  position: relative; margin-left: 12px;
}
.lang-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px 7px 9px;
  background: rgba(0,0,0,.04); border-radius: 999px;
  color: var(--ink-soft); cursor: pointer; transition: all var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.site-header:not(.scrolled) .lang-trigger { background: rgba(255,255,255,.16); color: rgba(255,255,255,.95); }
.lang-trigger:hover { background: rgba(169,116,63,.14); color: var(--brand-warm); }
.site-header:not(.scrolled) .lang-trigger:hover { background: rgba(255,255,255,.26); color: #fff; }
.lang-trigger .lang-code {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.lang-trigger .lang-chevron { opacity: .6; transition: transform var(--t-base); }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); opacity: 1; }

.flag-svg {
  display: inline-block; vertical-align: middle;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  flex-shrink: 0;
}

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  list-style: none; margin: 0; padding: 6px;
  min-width: 200px;
  background: var(--paper); border-radius: 14px;
  border: 1px solid var(--cream-edge);
  box-shadow: 0 14px 40px rgba(42,31,20,.18), 0 2px 6px rgba(42,31,20,.06);
  opacity: 0; transform: translateY(-6px) scale(.96); pointer-events: none;
  transition: opacity .18s var(--ease-out), transform .18s var(--ease-out);
  z-index: 200;
}
.lang-dropdown.open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.lang-menu li { list-style: none; }
.lang-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--ink); transition: background var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.lang-option:hover { background: var(--cream); color: var(--brand-deep); }
.lang-option.is-active { background: rgba(169,116,63,.1); color: var(--brand-deep); }
.lang-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.lang-info strong { font-size: 14px; font-weight: 600; line-height: 1.2; }
.lang-info small { font-size: 11px; color: var(--ink-muted); letter-spacing: 1.2px; font-weight: 600; }
.lang-check { color: var(--brand-warm); flex-shrink: 0; }

/* === Mobile: lang switcher becomes a fixed bottom-left FAB === */
@media (max-width: 880px) {
  .lang-dropdown {
    position: fixed;
    left: 14px;
    bottom: calc(14px + var(--safe-bottom));
    z-index: 110;
    margin: 0;
  }
  .lang-trigger {
    background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow)) !important;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(169,116,63,.45), 0 2px 6px rgba(0,0,0,.12);
    transition: transform var(--t-base), box-shadow var(--t-base);
  }
  .lang-trigger:hover, .lang-trigger:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 32px rgba(169,116,63,.55), 0 4px 8px rgba(0,0,0,.14);
    outline: none;
  }
  .lang-trigger .lang-code { font-size: 12.5px; }
  .lang-trigger .lang-chevron { transform: rotate(180deg); }
  .lang-dropdown.open .lang-chevron { transform: rotate(0deg); }

  /* Menu opens UPWARDS on mobile (bottom-positioned dropdown) */
  .lang-menu {
    top: auto;
    bottom: calc(100% + 10px);
    left: 0;
    right: auto;
    min-width: 230px;
    transform: translateY(8px) scale(.96);
  }
  .lang-dropdown.open .lang-menu {
    transform: translateY(0) scale(1);
  }
  .lang-option { padding: 12px 14px; }
  .lang-info strong { font-size: 15px; }
}

.menu-toggle {
  display: none; padding: 10px; color: #fff; font-size: 22px; line-height: 1;
}
.site-header.scrolled .menu-toggle { color: var(--brand-deep); }

@media (max-width: 880px) {
  .menu-toggle { display: inline-block; margin-left: auto; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--ivory);
    flex-direction: column; padding: 30px; gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--t-base), transform var(--t-base);
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { color: var(--brand-deep) !important; padding: 14px 18px; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--cream-edge); }
  .main-nav a:last-child { border-bottom: none; }
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; isolation: isolate;
  overflow: hidden; padding: 100px 24px 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at top right, rgba(197,143,79,.45), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(111,78,44,.5), transparent 60%),
    linear-gradient(135deg, #1a120b 0%, #2A1F14 35%, #6F4E2C 75%, #A9743F 105%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .12;
  background-image:
    radial-gradient(circle at 25% 30%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 75% 60%, #fff 1px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px;
}
.hero-marble {
  position: absolute; inset: 0; z-index: -1; opacity: .06;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M0 100Q50 60 100 100T200 100M0 140Q60 110 110 140T200 140M0 60Q40 30 90 60T200 60' stroke='%23fff' stroke-width='.5' fill='none'/></svg>");
}
.hero-content { position: relative; max-width: 720px; width: 100%; }
.hero-logo {
  width: 138px; height: auto; margin: 0 auto 22px;
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0,0,0,.4));
  animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 14px 0 18px;
  opacity: 0; animation: rise .9s var(--ease-out) forwards .25s;
}
.hero-divider::before, .hero-divider::after {
  content: ''; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.55));
}
.hero-divider::after { background: linear-gradient(90deg, rgba(255,255,255,.55), transparent); }
.hero-divider .ornament { color: var(--brand-glow); font-size: 18px; }

.hero h1 {
  color: #fff;
  font-size: clamp(48px, 8vw, var(--text-4xl));
  font-weight: 500; letter-spacing: 6px; line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  opacity: 0; animation: rise .9s var(--ease-out) forwards .1s;
}
.hero h1 em { font-style: italic; color: var(--brand-glow); font-weight: 600; }
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2.6vw, 22px);
  color: rgba(255,255,255,.92); letter-spacing: 2px;
  margin-bottom: 14px;
  opacity: 0; animation: rise .9s var(--ease-out) forwards .35s;
}
.hero-subtitle {
  max-width: 560px; margin: 0 auto 36px;
  color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.7; font-weight: 400;
  opacity: 0; animation: rise .9s var(--ease-out) forwards .5s;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: rise .9s var(--ease-out) forwards .65s; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: .3px;
  cursor: pointer; transition: all var(--t-base); white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; box-shadow: 0 12px 30px rgba(169, 116, 63, .35);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(169, 116, 63, .55); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-deep { background: var(--brand-deep); color: #fff; }
.btn-deep:hover { background: var(--brand-shadow); color: #fff; transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { stroke: rgba(255,255,255,.7); }
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================================
   Section utilities
   ============================================================= */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}
.section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.section-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--brand-warm); font-weight: 700; margin-bottom: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '——'; opacity: .5; margin: 0 8px; letter-spacing: 0;
}
.section h2 {
  font-size: clamp(28px, 4vw, var(--text-2xl));
  font-weight: 500; letter-spacing: 1px;
}
.section h2 em { font-style: italic; color: var(--brand-warm); font-weight: 600; }
.section-subtitle { color: var(--ink-soft); margin-top: 12px; max-width: 560px; margin-inline: auto; font-size: 15px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   Sticky Category Nav (scroll-spy)
   ============================================================= */
.cat-sticky {
  position: sticky; top: var(--header-h); z-index: 50;
  background: rgba(251, 247, 241, .96);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--cream-edge);
  padding: 12px 0;
}
.cat-tabs {
  display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-inline: clamp(20px, 4vw, 36px); margin: 0 auto;
  max-width: var(--container);
  scrollbar-width: none; -ms-overflow-style: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: 0 0 auto; scroll-snap-align: center;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 999px;
  font-weight: 600; font-size: 13.5px; letter-spacing: .3px;
  color: var(--ink-soft); background: var(--cream);
  transition: all var(--t-base);
}
.cat-tab .ico { font-size: 16px; }
.cat-tab:hover { color: var(--brand-deep); background: var(--cream-edge); }
.cat-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  box-shadow: 0 4px 14px rgba(169,116,63,.32);
}

/* =============================================================
   Search bar (slim)
   ============================================================= */
.menu-toolbar {
  display: flex; gap: 10px; padding: 22px 0 14px;
  align-items: center; flex-wrap: wrap;
}
.search-box {
  flex: 1 1 220px; min-width: 180px; max-width: 360px; position: relative;
}
@media (max-width: 720px) {
  .menu-toolbar { gap: 8px; padding: 16px 0 10px; }
  .search-box { flex: 1 1 100%; max-width: 100%; }
  .menu-toolbar .filter-chips { flex: 1 1 auto; }
  .menu-toolbar .view-toggle { flex: 0 0 auto; }
}
.search-box input {
  width: 100%; padding: 12px 18px 12px 44px;
  border: 1.5px solid var(--cream-edge); border-radius: 999px;
  background: var(--paper); font: inherit; color: var(--ink);
  transition: all var(--t-base);
}
.search-box input:focus { outline: none; border-color: var(--brand-warm); box-shadow: 0 0 0 3px rgba(169,116,63,.15); }
.search-box::before {
  content: ''; position: absolute; left: 16px; top: 50%; width: 18px; height: 18px;
  transform: translateY(-50%); opacity: .5;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236F4E2C' stroke-width='2.4' stroke-linecap='round'><circle cx='11' cy='11' r='8'/><path d='M21 21l-4.3-4.3'/></svg>") no-repeat center / contain;
}

/* Filter chips */
.filter-chips {
  display: flex; gap: 6px; flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 0 2px;
}
.filter-chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .2px;
  color: var(--ink-soft); background: var(--paper);
  border: 1.5px solid var(--cream-edge);
  cursor: pointer; transition: all var(--t-base);
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.chip:hover { color: var(--brand-deep); border-color: var(--brand-warm); }
.chip.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(169,116,63,.3);
}
.chip .badge-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: rgba(0,0,0,.08); color: inherit;
  font-size: 10px; font-weight: 700;
}
.chip.active .badge-count { background: rgba(255,255,255,.25); }
.chip svg { width: 14px; height: 14px; fill: currentColor; }

/* =============================================================
   Menu sections + product cards
   ============================================================= */
.menu-section { padding-top: 56px; scroll-margin-top: calc(var(--header-h) + 80px); }
.menu-section + .menu-section { padding-top: 80px; }

.menu-section-head {
  text-align: center; margin-bottom: 36px;
}
.menu-section-head .ico { font-size: 36px; line-height: 1; display: block; margin-bottom: 8px; opacity: .85; }
.menu-section-head h3 {
  font-size: clamp(22px, 3vw, 28px); font-weight: 600; letter-spacing: -0.01em;
  position: relative; display: inline-block; padding: 0 24px;
  font-family: var(--font-body);
}
.menu-section-head h3::before, .menu-section-head h3::after {
  content: ''; position: absolute; top: 50%; width: clamp(40px, 8vw, 80px); height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-warm));
}
.menu-section-head h3::before { right: 100%; }
.menu-section-head h3::after { left: 100%; background: linear-gradient(90deg, var(--brand-warm), transparent); }
.menu-section-head .description { color: var(--ink-soft); margin-top: 10px; font-style: italic; font-size: 14.5px; }

/* =========  Default = LIST view (compact with small thumbnail)  ========= */
.product-grid {
  display: block;
  background: transparent; border: none; box-shadow: none; border-radius: 0;
  padding: 0 4px;
}

.product-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  grid-template-areas:
    "thumb name  price"
    "thumb desc  desc";
  column-gap: 14px; row-gap: 4px;
  align-items: center;
  padding: 13px 40px 13px 8px;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--cream-edge);
  background: transparent;
  border-radius: 0;
  position: relative;
  cursor: pointer;
  transition: background var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.product-card:last-child { border-bottom: none; }
.product-card:hover, .product-card:focus-visible {
  background: rgba(245, 239, 230, .6);
  outline: none;
}
.product-card:active { background: var(--cream); }

.product-card .product-image-wrap {
  grid-area: thumb;
  width: 56px; height: 56px; aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  align-self: center;
  background: var(--cream);
  flex-shrink: 0;
}
.product-card .product-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-card .product-body { display: contents; }
.product-text { display: contents; }

.product-name {
  grid-area: name;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif !important;
  font-size: 16px; font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  align-self: end;
}

.product-desc {
  grid-area: desc;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif !important;
  font-size: 13.5px; line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  font-style: normal;
  font-weight: 400;
  display: -webkit-box; -webkit-line-clamp: 1; line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
  align-self: start;
}

.product-price-row {
  grid-area: price;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  margin: 0;
  align-self: center;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}
.product-price {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif !important;
  font-size: 17px; font-weight: 700;
  color: var(--brand-warm);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* === Dual price (espresso, türk kahvesi) === */
.product-price-dual {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 1px; line-height: 1.1;
}
.product-price-dual .dual-amounts {
  font-size: 16px; font-weight: 700;
  color: var(--brand-warm);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  white-space: nowrap;
}
.product-price-dual .dual-sep {
  color: var(--cream-edge);
  margin: 0 4px;
  font-weight: 300;
}
.product-price-dual .dual-labels {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}

.product-card .product-badges { display: none; }

.product-card .product-featured-mark {
  position: static;
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; height: auto;
  background: transparent !important;
  color: var(--brand-warm);
  box-shadow: none;
  margin-left: 0; padding: 0;
}
.product-card .product-featured-mark svg {
  width: 11px; height: 11px;
  fill: var(--brand-warm); stroke: var(--brand-warm);
}

.product-card .fav-btn {
  position: absolute; top: 10px; right: 6px;
  background: transparent; width: 28px; height: 28px;
  color: var(--ink-muted);
  transform: none;
}
.product-card .fav-btn svg { width: 14px; height: 14px; }
.product-card .fav-btn:hover {
  background: rgba(192, 57, 43, .08); color: var(--danger);
  transform: scale(1.12);
}
.product-card .fav-btn.is-fav { color: var(--danger); animation: heartPulse .4s var(--ease-out); }

/* Tighter section spacing for menu density */
.menu-section { padding-top: 36px; scroll-margin-top: calc(var(--header-h) + 80px); }
.menu-section + .menu-section { padding-top: 52px; }
.menu-section-head { margin-bottom: 18px; }
.menu-section-head .ico { font-size: 28px; margin-bottom: 4px; }
.menu-section-head h3 { font-size: clamp(22px, 3vw, 28px); }
.menu-section-head .description { margin-top: 6px; font-size: 13px; }

@media (max-width: 540px) {
  .product-card {
    grid-template-columns: 48px 1fr auto;
    padding: 11px 30px 11px 4px;
    column-gap: 12px; row-gap: 3px;
  }
  .product-card .product-image-wrap { width: 48px; height: 48px; border-radius: 9px; }
  .product-name { font-size: 14.5px; }
  .product-desc { font-size: 12px; line-height: 1.4; }
  .product-card .product-price { font-size: 15px; }
  .product-card .product-price-dual .dual-amounts { font-size: 14px; }
  .product-card .product-price-dual .dual-labels { font-size: 8.5px; letter-spacing: .9px; }
  .product-card .fav-btn {
    top: 8px; right: 4px; transform: none;
    width: 26px; height: 26px;
  }
  .product-card .fav-btn:hover { transform: scale(1.1); }
  .product-card .fav-btn svg { width: 13px; height: 13px; }
  .menu-section { padding-top: 28px; }
  .menu-section + .menu-section { padding-top: 40px; }
  .menu-section-head h3 { font-size: 20px; }
  .menu-toolbar { padding: 14px 0 8px; }
}

/* =========  Alternate GRID view (toggle)  ========= */
.product-grid.is-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
  background: transparent; border: none; box-shadow: none; overflow: visible; border-radius: 0;
}
.product-grid.is-grid .product-card {
  background: var(--paper); border-radius: var(--radius-md);
  border: 1px solid var(--cream-edge); border-bottom: 1px solid var(--cream-edge);
  display: flex; flex-direction: column; padding: 0;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.product-grid.is-grid .product-card:hover {
  background: var(--paper); transform: translateY(-3px);
  box-shadow: var(--shadow-warm); border-color: var(--brand-warm);
}
.product-grid.is-grid .product-card .product-image-wrap {
  width: 100%; height: auto; aspect-ratio: 4/3; border-radius: 0;
}
.product-grid.is-grid .product-card .product-body {
  display: flex; flex-direction: column; align-items: stretch; gap: 6px;
  padding: 16px 18px 18px;
}
.product-grid.is-grid .product-text { flex: 0; gap: 6px; }
.product-grid.is-grid .product-name { font-size: 18px; }
.product-grid.is-grid .product-desc { -webkit-line-clamp: 2; line-clamp: 2; font-size: 13px; }
.product-grid.is-grid .product-price-row { flex-direction: row; align-items: baseline; justify-content: flex-end; gap: 8px; margin-top: 6px; }
.product-grid.is-grid .product-price { font-size: 22px; }
.product-grid.is-grid .product-price-dual .dual-amounts { font-size: 22px; }
.product-grid.is-grid .product-price-dual .dual-labels { font-size: 10px; letter-spacing: 1.4px; }
.product-grid.is-grid .product-card .product-badges { position: absolute; top: 10px; left: 10px; }
.product-grid.is-grid .product-card .product-badge { font-size: 10px; padding: 4px 10px; }
.product-grid.is-grid .product-card .fav-btn {
  top: 8px; right: 8px; left: auto; transform: none;
  background: rgba(255,255,255,.92); width: 34px; height: 34px;
}
.product-grid.is-grid .product-card .fav-btn:hover { transform: scale(1.1); }
.product-grid.is-grid .product-featured-mark {
  position: absolute; top: 8px; right: 50px;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; box-shadow: 0 4px 12px rgba(169,116,63,.4);
  margin-left: 0;
}
.product-grid.is-grid .product-featured-mark svg { width: 12px; height: 12px; }
@media (max-width: 720px) {
  .product-grid.is-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-grid.is-grid .product-name { font-size: 15px; }
  .product-grid.is-grid .product-desc { font-size: 12px; }
  .product-grid.is-grid .product-price { font-size: 17px; }
}
@media (max-width: 380px) {
  .product-grid.is-grid { grid-template-columns: 1fr; }
}

/* View toggle buttons */
.view-toggle {
  display: inline-flex; padding: 4px; border-radius: 999px;
  background: var(--cream); border: 1px solid var(--cream-edge);
}
.view-toggle button {
  width: 34px; height: 30px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-muted); cursor: pointer; transition: all var(--t-base);
  -webkit-tap-highlight-color: transparent; padding: 0;
}
.view-toggle button:hover { color: var(--brand-deep); }
.view-toggle button.active {
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; box-shadow: 0 2px 8px rgba(169,116,63,.3);
}
.view-toggle svg { width: 14px; height: 14px; }

/* Ripple */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(169, 116, 63, .35); animation: ripple .55s var(--ease-out);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }
.product-image-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--cream);
}
.product-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 5px; flex-wrap: wrap;
}
.product-badge {
  display: inline-flex; padding: 4px 10px; border-radius: 999px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
  font-weight: 700; backdrop-filter: blur(8px);
}
.product-badge.new       { background: rgba(30,132,73,.92); color: #fff; }
.product-badge.popular   { background: rgba(183,121,31,.92); color: #fff; }
.product-badge.signature { background: rgba(111,78,44,.92); color: #fff; }
.product-badge.vegan     { background: rgba(40,116,166,.92); color: #fff; }
.product-badge.spicy     { background: rgba(192,57,43,.92); color: #fff; }
.product-badge.gluten_free { background: rgba(76,175,80,.92); color: #fff; }
.product-featured-mark {
  position: absolute; top: 10px; right: 50px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(169,116,63,.4);
}

/* Favorite heart button */
.fav-btn {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted); font-size: 16px;
  transition: all var(--t-base); -webkit-tap-highlight-color: transparent;
}
.fav-btn:hover { background: #fff; color: var(--danger); transform: scale(1.1); }
.fav-btn.is-fav { color: var(--danger); background: #fff; animation: heartPulse .4s var(--ease-out); }
.fav-btn svg { width: 18px; height: 18px; transition: transform .2s; }
.fav-btn.is-fav svg { transform: scale(1.1); }
@keyframes heartPulse {
  0% { transform: scale(1); } 30% { transform: scale(1.35); } 60% { transform: scale(.92); } 100% { transform: scale(1); }
}

.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.25;
  color: var(--brand-deep); letter-spacing: .3px;
}
.product-desc {
  color: var(--ink-soft); font-size: 13.5px; line-height: 1.55;
  flex: 1;
}
.product-price-row {
  display: flex; justify-content: flex-end; align-items: baseline; gap: 8px;
  margin-top: 6px;
}
.product-price {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--brand-warm); letter-spacing: .5px;
}
.product-price-alt {
  font-size: 13px; color: var(--ink-muted); font-weight: 600;
}
.product-price-alt .label {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-muted);
  margin-right: 4px; font-weight: 600;
}

.no-results-msg { display: none; text-align: center; padding: 80px 20px; color: var(--ink-muted); font-size: 15px; }
.no-results-msg.visible { display: block; }

/* =============================================================
   Product Detail Overlay
   ============================================================= */
.product-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 12, 5, .85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.product-overlay.open { opacity: 1; pointer-events: auto; }
.product-detail {
  position: relative; background: var(--paper); width: 100%; max-width: 560px;
  max-height: calc(100vh - 40px);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(.96); transition: transform var(--t-base) var(--ease-out);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.product-overlay.open .product-detail { transform: translateY(0) scale(1); }
.product-detail-image {
  width: 100%; aspect-ratio: 4/3; background: var(--cream); position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.product-detail-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.product-detail-image.zoomed img { transform: scale(1.6); cursor: zoom-out; }
.product-detail-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--ink); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; transition: all var(--t-base);
}
.product-detail-close:hover { background: #fff; transform: rotate(90deg) scale(1.05); }
.product-detail-body {
  padding: 22px 26px 24px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.product-detail-body h2 {
  font-family: var(--font-body); font-size: 22px; line-height: 1.25;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--brand-deep); margin: 0;
}
.product-detail-body .desc {
  color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin: 0;
}
.product-detail-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.product-detail-price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-top: 14px; margin-top: auto;
  border-top: 1px solid var(--cream-edge);
}
.product-detail-price {
  font-family: var(--font-body); font-size: 26px; font-weight: 800;
  color: var(--brand-warm); letter-spacing: -0.02em;
}
.product-detail-price-alt {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px; color: var(--ink-soft); font-weight: 600;
}
.product-detail-price-alt .alt-line { display: flex; gap: 10px; align-items: baseline; justify-content: space-between; }
.product-detail-price-alt .alt-line span:first-child { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-muted); font-weight: 700; }
.product-detail-price-alt .alt-line strong { font-family: var(--font-body); font-size: 18px; color: var(--brand-deep); font-weight: 700; letter-spacing: -0.01em; }
.product-detail-actions { display: flex; gap: 8px; padding-top: 14px; }
.product-detail-actions .btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: 13px; }
.btn-icon-only { flex: 0 0 auto !important; width: 48px; padding: 0 !important; }
@media (max-width: 560px) {
  .product-overlay { padding: 0; align-items: flex-end; }
  .product-detail { max-width: 100%; max-height: 92vh; border-radius: 22px 22px 0 0; }
  .product-detail-body h2 { font-size: 22px; }
  .product-detail-image { aspect-ratio: 16/10; }
}

/* =============================================================
   Scroll-to-top FAB
   ============================================================= */
.fab-top {
  position: fixed; right: 20px; bottom: calc(20px + var(--safe-bottom)); z-index: 60;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(169,116,63,.45);
  opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: all var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.fab-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-top:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 32px rgba(169,116,63,.55); }
.fab-top svg { width: 22px; height: 22px; }

/* Bigger tap targets on mobile */
@media (max-width: 720px) {
  .cat-tab { padding: 11px 16px; font-size: 13px; }
  .lang-switcher a { padding: 8px 13px; font-size: 12px; }
  .product-name { font-size: 16px; }
  .product-desc { font-size: 12.5px; line-height: 1.45; }
  .product-price { font-size: 19px; }
  .product-body { padding: 14px 14px 14px; gap: 6px; }
  .menu-section-head h3 { font-size: 24px; padding: 0 14px; }
  .menu-section-head h3::before, .menu-section-head h3::after { width: 30px; }
  .fab-top { width: 44px; height: 44px; right: 14px; bottom: calc(14px + var(--safe-bottom)); }
}

/* =============================================================
   About strip
   ============================================================= */
.about-strip {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative; overflow: hidden;
}
.about-strip::before {
  content: ''; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background: radial-gradient(circle at 80% 20%, var(--brand-warm), transparent 50%);
}
.about-strip-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-strip-image {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(111,78,44,.4), rgba(169,116,63,.6)),
    var(--cream);
  position: relative;
  box-shadow: var(--shadow-deep);
}
.about-strip-image::after {
  content: 'M'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 280px; font-weight: 600;
  color: rgba(255,255,255,.18); line-height: 1;
}
.about-strip h2 { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 16px; }
.about-strip-text p { color: var(--ink-soft); margin: 0 0 16px; font-size: 15.5px; line-height: 1.75; }
@media (max-width: 760px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-strip-image { max-width: 380px; margin: 0 auto; }
}

/* =============================================================
   Page hero (sub-pages)
   ============================================================= */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--brand-shadow) 0%, var(--brand-deep) 70%, var(--brand-warm) 110%);
  color: #fff; text-align: center; isolation: isolate; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .08;
  background: radial-gradient(circle at 70% 30%, #fff, transparent 50%);
}
.page-hero h1 {
  color: #fff; font-size: clamp(36px, 5vw, 56px); font-weight: 500; letter-spacing: 3px;
  margin: 0 0 8px;
}
.page-hero .tagline { color: rgba(255,255,255,.78); font-style: italic; font-family: var(--font-display); font-size: 18px; }
.page-hero .ornament { color: var(--brand-glow); font-size: 22px; margin-bottom: 14px; }

/* =============================================================
   Contact page
   ============================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.contact-card {
  background: var(--paper); border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px); border: 1px solid var(--cream-edge);
  box-shadow: var(--shadow-soft);
}
.contact-card h3 { font-size: 22px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-edge); }
.contact-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--cream-edge); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon {
  flex: 0 0 38px; height: 38px; width: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(169,116,63,.25);
}
.contact-row .icon svg { stroke-width: 1.8; }
.map-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--brand-warm); margin-bottom: 6px; }
.contact-row .label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-muted); font-weight: 700; }
.contact-row .value { color: var(--ink); font-size: 15px; line-height: 1.5; margin-top: 2px; }
.contact-row .value a { color: inherit; }
.contact-row .value a:hover { color: var(--brand-warm); }

.contact-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

.map-frame { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--cream-edge); box-shadow: var(--shadow-soft); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
  aspect-ratio: 4/3; border-radius: var(--radius-md); border: 2px dashed var(--cream-edge);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  color: var(--ink-muted); text-align: center; padding: 24px;
}

.hours-list { padding: 0; margin: 0; list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px dashed var(--cream-edge); font-size: 14.5px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.today { background: var(--cream); margin: 0 -16px; padding: 10px 16px; border-radius: 8px; border-color: transparent; }
.hours-list li.today strong { color: var(--brand-warm); }
.hours-list .closed { color: var(--ink-muted); font-style: italic; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   About page
   ============================================================= */
.about-content { font-size: 16px; line-height: 1.85; color: var(--ink-soft); }
.about-content p { margin: 0 0 22px; }
.about-content p:first-child::first-letter {
  font-family: var(--font-display); font-size: 64px; font-weight: 700; line-height: 1;
  color: var(--brand-warm); float: left; margin: 4px 12px 0 0;
}

.about-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 64px;
}
.about-feature {
  background: var(--paper); border-radius: var(--radius-md); padding: 26px;
  border: 1px solid var(--cream-edge); text-align: center;
}
.about-feature .ico {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 50%; background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.about-feature h4 { font-size: 18px; margin-bottom: 6px; color: var(--brand-deep); }
.about-feature p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* =============================================================
   Gallery page
   ============================================================= */
.gallery-grid-public {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
}
.gallery-item-public {
  border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  transition: transform var(--t-base);
  position: relative;
  background: var(--cream);
}
.gallery-item-public:hover { transform: scale(1.02); }
.gallery-item-public:nth-child(7n+1) { grid-row: span 2; }
.gallery-item-public img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-item-public:hover img { transform: scale(1.06); }
.gallery-item-public .caption {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px 12px;
  color: #fff; font-size: 13.5px; font-weight: 500;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
.gallery-item-public:hover .caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,12,5,.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lightbox .close-btn {
  position: absolute; top: 20px; right: 24px; color: #fff; font-size: 32px;
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.lightbox .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 28px;
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.lightbox .nav-btn.prev { left: 20px; }
.lightbox .nav-btn.next { right: 20px; }

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  background: var(--brand-shadow); color: rgba(255,255,255,.75);
  padding: 80px 0 0; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-warm), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 48px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: #fff; font-size: 16px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  width: 80px; opacity: .85;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,.4));
  margin-bottom: 14px;
}
.footer-brand .name {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 4px; color: #fff; font-weight: 600;
  display: block; margin-bottom: 4px;
}
.footer-brand .sub { font-size: 11px; letter-spacing: 3px; color: var(--brand-glow); text-transform: uppercase; }
.footer-brand p { margin: 18px 0 0; font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.6); }

.footer-contact-list { padding: 0; margin: 0; list-style: none; }
.footer-contact-list li { display: flex; gap: 12px; padding: 8px 0; font-size: 14px; align-items: flex-start; line-height: 1.5; }
.footer-contact-list li .ico {
  color: var(--brand-glow); flex: 0 0 22px; display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.footer-contact-list li a { color: rgba(255,255,255,.85); }
.footer-contact-list li a:hover { color: var(--brand-glow); }
.ico-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

.footer-social {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-size: 16px;
  transition: all var(--t-base);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-glow));
  color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(169,116,63,.4);
}
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.footer-partner {
  display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7);
  transition: color var(--t-base);
}
.footer-partner img {
  height: 24px; width: auto; opacity: .7; transition: opacity var(--t-base);
}
.footer-partner:hover { color: #fff; }
.footer-partner:hover img { opacity: 1; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* =============================================================
   Disclaimer
   ============================================================= */
.menu-disclaimer {
  text-align: center; font-size: 12.5px; color: var(--ink-muted);
  font-style: italic; padding: 30px 20px 10px;
  letter-spacing: .3px;
}
