*, *::before, *::after { box-sizing: border-box; }

:root {
  --navy: #0f252c;
  --cream: #faf6ef;
  --paper: #ffffff;
  --gold: #d4a359;
  --gold-light: #f4e8d3;
  --terra: #b85d34;
  --ink: #1a2325;
  --muted: #737c80;
  --line: rgba(15, 37, 44, 0.08);
  --shadow: 0 20px 45px rgba(15, 37, 44, 0.08);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-shell { min-height: 100vh; padding-bottom: 96px; }

/* ==========================================================
   HEADER & BRAND
   ========================================================== */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(15, 37, 44, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.site-header .brand img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #fff;
}

.brand strong span { color: var(--gold); }
.brand small { font-size: 9px; letter-spacing: 0.16em; margin-top: 4px; opacity: 0.75; text-transform: uppercase; }

.icon-button {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.icon-button:hover { background: rgba(255, 255, 255, 0.16); }

.lang-pill {
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  min-height: 450px;
  padding: 104px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: 
    linear-gradient(90deg, rgba(11,29,34,0.92) 0%, rgba(11,29,34,0.6) 50%, rgba(11,29,34,0.3) 100%),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero-content, .hero-features { position: relative; z-index: 1; max-width: 1032px; margin-left: auto; margin-right: auto; width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 em, .brand-story h2 em { color: var(--gold); font-style: normal; }

.hero p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
}

.hero-action {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid rgba(212, 163, 89, 0.4);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-action:hover { transform: translateY(-2px); background: #e0b065; }
.hero-action i { transition: transform 0.2s ease; }
.hero-action:hover i { transform: translateY(2px); }

/* ==========================================================
   ANNOUNCEMENT
   ========================================================== */
.announcement {
  width: min(calc(100% - 48px), 1032px);
  margin: 20px auto 0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 44px 1fr 36px;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f1e5 100%);
  border: 1px solid rgba(212, 163, 89, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.announcement-mark, .announcement-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: none;
}

.announcement-copy { min-width: 0; }

.announcement-label {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.25;
}

.announcement p, .announcement-copy p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.announcement-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 163, 89, 0.15);
  color: var(--terra);
  font-size: 13px;
}

/* ==========================================================
   MENU INTRO & SEARCH
   ========================================================== */
.menu-intro {
  max-width: 1032px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}

.menu-intro h2 {
  margin: 8px 0 6px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--navy);
}

.menu-intro > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }

.search-wrap {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(15, 37, 44, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-wrap:focus-within {
  border-color: rgba(212, 163, 89, 0.5);
  box-shadow: 0 8px 30px rgba(212, 163, 89, 0.1);
}
.search-wrap > i { color: var(--terra); font-size: 16px; }
.search-wrap input { border: 0; outline: 0; background: transparent; flex: 1; min-width: 0; color: var(--ink); font-size: 14px; }
.search-wrap input::placeholder { color: #9aa2a5; }
.search-wrap button { display: none; }

/* ==========================================================
   CATEGORIES
   ========================================================== */
.category-section {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 24px 36px;
}

.category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 20px;
}

.category-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.category-heading p { margin: 0; color: var(--muted); font-size: 13px; text-align: right; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-tile {
  min-height: 115px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tile::before, .category-overlay, .category-arrow { display: none !important; }

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-light);
  color: var(--terra);
  font-size: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}

.category-tile strong {
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.25s ease;
}

.category-tile.is-active, .category-tile:hover {
  transform: translateY(-3px);
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 35px rgba(15, 37, 44, 0.15);
}

.category-tile.is-active .category-icon, .category-tile:hover .category-icon {
  background: rgba(212, 163, 89, 0.2);
  color: var(--gold);
}

.category-tile.is-active strong, .category-tile:hover strong { color: #fff; }


/* ==========================================================
   PRODUCTS AREA
   ========================================================== */
.products-area { max-width: 1032px; margin: 0 auto; padding: 0 24px; }

.product-section { padding: 32px 0 10px; scroll-margin-top: 90px; }

.section-heading { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 20px; }
.section-heading h2 { margin: 0; font-family: "Playfair Display", serif; font-size: 26px; color: var(--navy); }
.section-line { height: 1px; background: var(--line); flex: 1; margin-bottom: 8px; }

.product-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.product-card {
  display: grid;
  grid-template-columns: 110px 1fr 36px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(15, 37, 44, 0.08); }

.product-image-button { padding: 0; border: 0; background: transparent; aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer; }
.product-image-button img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.product-image-button:hover img { transform: scale(1.05); }

.product-image-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(145deg, #e4d7c5, #a3b1ae); color: #fff; font-size: 22px;
}

.product-info { min-width: 0; }
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-title-row h3 { margin: 0; font-size: 15px; font-weight: 600; color: var(--navy); }
.product-price { font-size: 14px; font-weight: 600; color: var(--terra); white-space: nowrap; }
.product-info p { margin: 6px 0 10px; color: var(--muted); font-size: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.calorie-pill {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px;
  border-radius: 999px; background: var(--gold-light); color: #8c5c28; font-size: 10px; font-weight: 600;
}

.product-arrow { width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background 0.2s ease; }
.product-arrow:hover { background: var(--terra); }

/* ==========================================================
   BRAND STORY & CONTACT
   ========================================================== */
.brand-story {
  max-width: 1032px;
  min-height: 360px;
  margin: 70px auto 0;
  padding: 48px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(90deg, rgba(15,37,44,0.96), rgba(15,37,44,0.6)), url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  box-shadow: 0 25px 50px rgba(15,37,44,0.2);
}

.brand-story-content { position: relative; max-width: 600px; }
.brand-story h2 { margin: 10px 0 12px; font-family: "Playfair Display", serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
.brand-story p { max-width: 520px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); font-size: 14px; }

.contact-section { max-width: 1032px; margin: 80px auto 0; padding: 0 24px; }
.contact-heading h2 { margin: 10px 0 8px; font-family: "Playfair Display", serif; font-size: clamp(36px, 5vw, 52px); line-height: 1.05; color: var(--navy); }
.contact-heading h2 em { color: var(--terra); font-weight: 500; font-style: normal; }
.contact-heading p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 520px; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }

.contact-card {
  min-height: 140px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 14px;
  align-items: start;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.contact-grid a.contact-card {
  color: inherit;
  text-decoration: none;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(212, 163, 89, 0.3); }
.contact-card-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-light); color: var(--terra); display: grid; place-items: center; }
.contact-card > div { min-width: 0; }
.contact-card span:not(.contact-card-icon) { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; }
.contact-card strong { display: block; font-family: "Playfair Display", serif; font-size: 18px; line-height: 1.2; color: var(--navy); }
.contact-card small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.contact-arrow { color: #9ca4a4; font-size: 11px; margin-top: 4px; }

/* ==========================================================
   FOOTER & BOTTOM NAV
   ========================================================== */
.site-footer { max-width: 1032px; margin: 60px auto 0; padding: 0 24px 110px; }
.site-footer .footer-main { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: block; }
.site-footer .footer-brand { max-width: 520px; }
.site-footer .footer-brand > strong { font-family: "Playfair Display", serif; font-size: 24px; color: var(--navy); }
.site-footer .footer-brand > strong span { color: var(--gold); }
.site-footer .footer-brand p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.site-footer .footer-links a, .site-footer .footer-links a:visited { color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 500; transition: color 0.2s ease; }
.site-footer .footer-links a:hover { color: var(--terra); }
.site-footer .footer-bottom { padding-top: 16px; margin-top: 0; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 10px; }

.bottom-nav {
  position: fixed; z-index: 60; left: 50%; bottom: 16px; transform: translateX(-50%);
  width: min(92vw, 560px); padding: 6px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  background: rgba(15, 37, 44, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 999px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.08);
}
.bottom-nav a {
  min-height: 46px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: rgba(255, 255, 255, 0.6); border-radius: 999px; font-size: 9px; font-weight: 500; transition: all 0.2s ease;
}
.bottom-nav a i { font-size: 15px; }
.bottom-nav a.is-active { color: var(--gold); background: rgba(255, 255, 255, 0.08); }

/* ==========================================================
   MODALS & HELPERS
   ========================================================== */
.empty-menu { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-menu i { font-size: 32px; color: var(--gold); margin-bottom: 10px; }
.empty-menu h3 { font-family: "Playfair Display", serif; font-size: 24px; color: var(--navy); margin: 0; }

.product-modal { position: fixed; inset: 0; z-index: 100; display: none; }
.product-modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 29, 34, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.product-modal-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: min(90vw, 540px);
    max-height: 86vh;
    overflow: auto;

    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);

    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-close {
  position: absolute; z-index: 2; right: 16px; top: 16px; width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; background: rgba(15, 37, 44, 0.7); color: #fff; cursor: pointer;
}
.modal-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #eee9e0;
    overflow: hidden;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.modal-product-body { padding: 24px; }
.modal-product-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.modal-product-head h2 { margin: 6px 0; font-family: "Playfair Display", serif; font-size: 28px; color: var(--navy); }
.modal-product-head > strong { font-size: 20px; color: var(--terra); }
.modal-product-body > p { margin: 14px 0; color: var(--muted); line-height: 1.6; font-size: 13px; }
.modal-meta span { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: var(--gold-light); color: #8c5c28; font-size: 11px; font-weight: 600; }
.modal-section { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.modal-section h3 { font-family: "Playfair Display", serif; font-size: 18px; color: var(--navy); margin: 0 0 8px; }
.modal-section p { color: var(--muted); font-size: 12px; line-height: 1.6; margin: 0; }

.wifi-modal { position: fixed; inset: 0; z-index: 110; display: none; }
.wifi-modal.is-open { display: block; }
.wifi-card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(90vw, 400px); padding: 30px 26px 26px; background: var(--paper);
  border-radius: var(--radius-lg); box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}
.wifi-icon-large { width: 52px; height: 52px; border-radius: 16px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 20px; margin-bottom: 16px; }
.wifi-card h2 { margin: 6px 0; font-family: "Playfair Display", serif; font-size: 32px; color: var(--navy); }
.wifi-note { margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.wifi-info-row { padding: 12px 0; border-top: 1px solid var(--line); }
.wifi-info-row span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 4px; text-transform: uppercase; }
.wifi-info-row strong { font-size: 15px; color: var(--navy); }
.wifi-hint { margin: 16px 0 0; padding: 12px; border-radius: 12px; background: var(--gold-light); color: #7d6a57; font-size: 10px; line-height: 1.5; }
.future-wifi { opacity: 0.9; cursor: pointer; }
.future-wifi i { font-size: 14px; }

/* ==========================================================
   RESPONSIVE / MOBILE OPTIMIZATION
   ========================================================== */
@media(max-width: 760px) {
  .site-header { height: 64px; padding: 0 16px; }
  .site-header .brand { height: 44px; }
  .site-header .brand img { width: 44px; height: 44px; }
  
  .hero { min-height: 380px; padding: 84px 18px 20px; }
  .hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero p { font-size: 13px; }
  
  .announcement { width: calc(100% - 32px); margin: 14px auto 0; padding: 12px 14px; grid-template-columns: 38px 1fr 30px; gap: 12px; }
  .announcement-mark { width: 38px; height: 38px; border-radius: 12px; font-size: 14px; }
  .announcement strong { font-size: 15px; }
  
  .menu-intro { padding: 24px 18px 14px; }
  .category-section { padding: 0 18px 24px; }
  .category-heading { align-items: flex-start; margin-bottom: 14px; }
  .category-heading h2 { font-size: 24px; }
  .category-heading p { display: none; }
  
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-tile { min-height: 95px; height: 95px; padding: 10px; border-radius: 14px; gap: 8px; }
  .category-icon { width: 40px; height: 40px; font-size: 17px; }
  .category-tile strong { font-size: 12px; }
  
  .products-area { padding: 0 18px; }
  .product-list { grid-template-columns: 1fr; gap: 12px; }
  .product-card { grid-template-columns: 90px 1fr 34px; gap: 12px; padding: 10px; }
  
  .brand-story { margin: 40px 14px 0; padding: 32px 20px; min-height: 280px; border-radius: 20px; }
  .brand-story h2 { font-size: 34px; }
  
  .contact-section { margin-top: 50px; padding: 0 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 10px; }
  
  .site-footer { margin-top: 40px; padding: 0 18px 110px; }
  .footer-bottom { display: block; text-align: center; }
  .footer-bottom span { display: block; margin-top: 4px; }
  
.product-modal-card {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);

    width: calc(100% - 36px);
    max-width: 480px;

    max-height: 82vh;
    max-height: 82dvh;

    overflow-y: auto;
    overflow-x: hidden;

    border-radius: 22px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.modal-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #eee9e0;
    overflow: hidden;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.modal-product-body {
    padding: 20px;
}

/* ==========================================================
   EGELİM+ BRAND THEME — LOGO UYUMLU RENK VE FONT DÜZENİ
   Ana yerleşim korunur; bu bölüm tema renklerini tek noktadan
   uyumlu hale getirir.
   ========================================================== */
:root {
  --navy: #171916;
  --cream: #F3F0E9;
  --paper: #FFFFFF;
  --gold: #36B9C8;
  --gold-light: #DDF4F5;
  --terra: #249AA8;
  --ink: #242724;
  --muted: #6E7470;
  --line: rgba(23, 25, 22, 0.12);
  --shadow: 0 16px 42px rgba(23, 25, 22, 0.09);
}

body, button, input, select, textarea {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}
.site-header {
  background: rgba(23, 25, 22, 0.94);
  border-bottom-color: rgba(54, 185, 200, 0.24);
}
.site-header .brand img { filter: none; }
.brand strong, .hero h1, .menu-intro h2, .category-heading h2,
.section-heading h2, .contact-heading h2, .product-modal h2,
.wifi-card h2, .empty-menu h3 { font-family: "Playfair Display", Georgia, serif; }
.announcement strong, .contact-card strong, .reservation-side strong {
  font-family: "DM Sans", sans-serif;
}
.eyebrow, .announcement-label, .contact-card span:not(.contact-card-icon),
.reservation .eyebrow, .reservation-modal .eyebrow,
.reservation-side > span, .wifi-info-row span { text-shadow: none !important; }
.hero-action, .reservation-open, .category-tile.is-active .category-icon,
.category-tile:hover .category-icon {
  background-color: var(--gold);
  border-color: var(--gold);
}
.hero-action, .reservation-open { color: #102326; }
.search-wrap:focus-within { border-color: var(--gold); }
.search-wrap > i, .contact-card-icon, .announcement-mark { color: var(--terra); }
.category-tile.is-active, .category-tile:hover { border-color: rgba(54,185,200,.55); }
::selection { background: rgba(54,185,200,.28); color: #171916; }

/* ==========================================================
   FIX 24.09 — CATEGORY GRID, BOTTOM NAV & PRICE COLORS
   ========================================================== */
.site-shell { padding-bottom: calc(150px + env(safe-area-inset-bottom)); }

/* Category tiles: keep the tile light; use the logo turquoise as an accent. */
.category-tile.is-active,
.category-tile:hover {
  background: #202320;
  color: #fff;
  border-color: #36B9C8;
  box-shadow: 0 12px 28px rgba(23, 25, 22, 0.14);
}
.category-tile .category-icon {
  background: #DDF4F5;
  color: #168F9C;
}
.category-tile.is-active .category-icon,
.category-tile:hover .category-icon {
  background: #36B9C8;
  color: #171916;
}
.category-tile.is-active strong,
.category-tile:hover strong { color: #fff; }

/* Prices: calm, high-contrast ink rather than turquoise on every price. */
.product-price,
.product-card .price,
.product-card [class*="price"] {
  color: #202320;
  font-weight: 700;
}
.product-price { letter-spacing: -0.01em; }
.product-arrow:hover { background: #168F9C; }

/* Fixed bottom navigation stays at the viewport bottom and has room below content. */
.bottom-nav {
  position: fixed;
  z-index: 1000;
  left: 50%;
  right: auto;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(92vw, 560px);
  max-width: calc(100vw - 24px);
  background: rgba(23, 25, 22, 0.97);
  border: 1px solid rgba(54, 185, 200, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}
.bottom-nav a.is-active { color: #36B9C8; background: rgba(54, 185, 200, 0.12); }
@media (max-width: 760px) {
  .site-shell { padding-bottom: calc(145px + env(safe-area-inset-bottom)); }
  .bottom-nav {
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
    padding: 5px;
  }
  .bottom-nav a { min-height: 48px; }
}