/* ============================================================
   BUN LOVE — CUSTOM CSS
   Color tokens, animations, scrollbars, bottom sheet, cards
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ─── CSS Custom Properties ────────────────────────────── */
:root {
  --green-deep:    #1B4332;
  --green-dark:    #2D6A4F;
  --green-mid:     #40916C;
  --green-light:   #52B788;
  --green-pale:    #D8F3DC;
  --cream:         #F8F4ED;
  --cream-dark:    #EDE8DF;
  --cream-border:  #DDD6C8;
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --charcoal:      #1C1C1C;
  --text-main:     #1C2B20;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --white:         #FFFFFF;
  --shadow-sm:     0 1px 3px rgba(27,67,50,0.08);
  --shadow-md:     0 4px 16px rgba(27,67,50,0.12);
  --shadow-lg:     0 8px 32px rgba(27,67,50,0.18);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 4px; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* ─── Typography ────────────────────────────────────────── */
.font-display { font-family: 'Playfair Display', serif; }

/* ─── Header ────────────────────────────────────────────── */
#main-header {
  background: var(--green-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
#main-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* ─── Search Bar ────────────────────────────────────────── */
.search-wrapper {
  position: relative;
  background: var(--white);
  border-radius: 50px;
  border: 2px solid var(--cream-border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.search-wrapper:focus-within {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.15);
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 44px 12px 44px;
  font-size: 15px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}
.search-input::placeholder { color: var(--text-light); }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-mid);
  pointer-events: none;
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream-dark);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  color: var(--text-muted);
  transition: var(--transition);
}
.search-clear:hover { background: var(--cream-border); color: var(--text-main); }

/* ─── Category Chips ────────────────────────────────────── */
.category-scroll {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
}
.category-scroll::-webkit-scrollbar { display: none; }

.category-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid var(--cream-border);
  background: var(--white);
  color: var(--green-dark);
  transition: var(--transition);
  user-select: none;
  flex-shrink: 0;
}
.category-chip:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
  color: var(--green-deep);
}
.category-chip.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  box-shadow: 0 2px 8px rgba(27,67,50,0.3);
}

/* ─── Filter & Sort Row ─────────────────────────────────── */
.filter-sort-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  position: sticky;
  top: 68px;
  z-index: 50;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--cream-border);
  background: var(--white);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--green-mid); color: var(--green-deep); }
.filter-btn.has-active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.sort-select {
  padding: 7px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--cream-border);
  background: var(--white);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--green-mid); }
.active-filters-tags {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
}
.active-filters-tags::-webkit-scrollbar { display: none; }
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-pale);
  color: var(--green-deep);
  border: 1px solid var(--green-light);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.filter-tag:hover { background: var(--green-light); color: var(--white); }

/* ─── Menu Sections ─────────────────────────────────────── */
.menu-section { margin-bottom: 8px; }
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px 12px;
  background: var(--cream);
}
.section-header-icon {
  width: 36px;
  height: 36px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
}
.section-count {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.section-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--cream-border), transparent);
}

/* subcategory header */
.subcategory-header {
  padding: 8px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--cream);
}

.items-grid {
  background: var(--white);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

/* ─── Menu Card ─────────────────────────────────────────── */
.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--cream-border);
  transition: var(--transition);
  background: var(--white);
  position: relative;
}
.menu-card:last-child { border-bottom: none; }
.menu-card:hover { background: #FAFDF8; }
.menu-card:active { background: var(--green-pale); }

.card-content { flex: 1; min-width: 0; }
.card-badges {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 3px;
  line-height: 1.3;
}
.card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Card footer row */
.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
}
.card-price-from {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  margin-right: 2px;
}
.card-variants-hint {
  font-size: 11px;
  color: var(--green-mid);
  font-weight: 500;
}
.card-chevron {
  color: var(--text-light);
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Card image thumbnail — removed (images moved to section banners) */

/* ─── Section Banner (category header with image) ───────── */
.section-banner {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--green-deep);
  margin-top: 12px;
}
.section-banner--no-img {
  height: 80px;
}
.section-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(1.1);
  transition: transform 0.6s ease;
}
.section-banner:hover .section-banner-img {
  transform: scale(1.03);
}
.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 18, 0.88) 0%,
    rgba(10, 30, 18, 0.45) 50%,
    rgba(10, 30, 18, 0.10) 100%
  );
}
.section-banner-content {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-banner-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.section-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.section-banner-count {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Modal image */
.modal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--cream-dark);
  margin-top: -4px; /* overlap the sheet handle area */
}
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* card unavailable */
.menu-card.unavailable { opacity: 0.5; pointer-events: none; }
.unavailable-badge {
  font-size: 10px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Badges ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-veg {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}
.badge-nonveg {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.badge-chef {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}
.badge-seasonal {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}
.badge-popular {
  background: #FFF1F2;
  color: #BE123C;
  border: 1px solid #FECDD3;
}

/* veg/non-veg dot indicator */
.diet-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1.5px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.diet-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.diet-dot.veg { border-color: #16A34A; }
.diet-dot.veg::after { background: #16A34A; }
.diet-dot.nonveg { border-color: #DC2626; }
.diet-dot.nonveg::after { background: #DC2626; }

/* ─── Smash Burger Section Header (Premium) ─────────────── */
.smash-intro {
  background: var(--green-deep);
  color: var(--white);
  padding: 16px;
  margin: 0;
}
.smash-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.smash-intro-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ─── Bottom Sheet / Modal ──────────────────────────────── */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.sheet-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 210;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bottom-sheet::-webkit-scrollbar { display: none; }
.bottom-sheet.open { transform: translateY(0); }

.sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--cream-border);
  border-radius: 2px;
  margin: 10px auto 0;
}
.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--cream-border);
}
.sheet-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}
.sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}
.sheet-close:hover { background: var(--cream-border); color: var(--text-main); }

/* ─── Item Modal Styles ─────────────────────────────────── */
.modal-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}
.modal-price-main {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
}
.modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.modal-variants-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.variant-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  border: 1px solid var(--cream-border);
}
.variant-label { font-size: 13px; font-weight: 500; color: var(--text-main); }
.variant-price { font-size: 15px; font-weight: 700; color: var(--green-deep); }

/* ─── Filter Sheet ──────────────────────────────────────── */
.filter-group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.filter-options { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-option {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--cream-border);
  background: var(--white);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.filter-option:hover { border-color: var(--green-mid); }
.filter-option.selected {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.filter-actions {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--cream-border);
  background: var(--white);
  position: sticky;
  bottom: 0;
}
.btn-primary {
  flex: 1;
  padding: 13px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  padding: 13px 20px;
  background: var(--white);
  color: var(--text-main);
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--green-mid); }

/* ─── Empty State ───────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.empty-state-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  opacity: 0.35;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-state-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.empty-state-text { font-size: 14px; color: var(--text-muted); }

/* ─── Notice Boxes ──────────────────────────────────────── */
.notice-box {
  margin: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  background: #FFFBEB;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notice-box.allergen {
  border-left-color: var(--green-mid);
  background: var(--green-pale);
}
.notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.notice-text {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.5;
}
.notice-text strong { font-weight: 600; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 40px 20px 100px;
}
.footer-logo { height: 80px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 1px;
}
.footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.footer-phone:hover { color: var(--gold-light); }
.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto 24px;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.back-to-top:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.footer-copy {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ─── Sticky Bottom Nav ─────────────────────────────────── */
.sticky-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--cream-border);
  display: flex;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.bottom-nav-btn svg { width: 20px; height: 20px; }
.bottom-nav-btn.active { color: var(--green-deep); }
.bottom-nav-btn:hover { color: var(--green-deep); }
.bottom-nav-badge {
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
}

/* ─── Desktop Layout ────────────────────────────────────── */
.desktop-sidebar { display: none; }

@media (min-width: 768px) {
  .sticky-bottom-nav { display: none; }

  .desktop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
    align-items: start;
  }
  .desktop-sidebar {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 16px 12px;
    display: block;
    background: var(--white);
    border-right: 1px solid var(--cream-border);
    border-radius: 0 0 var(--radius-md) 0;
  }
  .desktop-sidebar .category-scroll {
    flex-direction: column;
    overflow-x: visible;
    border: none;
    padding: 0;
    gap: 4px;
  }
  .desktop-sidebar .category-chip {
    width: 100%;
    border-radius: 8px;
    justify-content: flex-start;
  }
  .mobile-category-scroll { display: none !important; }
  .desktop-content { min-width: 0; }

  .menu-card { padding: 16px 20px; }
  .filter-sort-row { top: 110px; max-width: 880px; margin: 0 auto; }
  .header-logo { height: 60px; }

  /* Desktop modal as centered modal */
  @media (min-width: 768px) {
    .bottom-sheet {
      max-width: 560px;
      left: 50%;
      transform: translateX(-50%) translateY(100%);
      bottom: 0;
      border-radius: var(--radius-xl);
    }
    .bottom-sheet.open {
      transform: translateX(-50%) translateY(0);
      bottom: 40px;
    }
  }
}

@media (min-width: 1024px) {
  .desktop-layout { max-width: 1200px; grid-template-columns: 240px 1fr; }
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.3s ease both;
}

/* Stagger cards */
.menu-card { animation: fadeInUp 0.25s ease both; }

/* ─── Hero Strip ─────────────────────────────────────────── */
.hero-strip {
  background: var(--green-deep);
  padding: 0 16px 16px;
  text-align: center;
}
.hero-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.hero-menu-label {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ─── Search Section ─────────────────────────────────────── */
.search-section {
  background: var(--green-deep);
  padding: 0 16px 16px;
}

/* ─── Results info bar ───────────────────────────────────── */
.results-bar {
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
}

/* ─── Focus Ring ─────────────────────────────────────────── */
button:focus-visible, a:focus-visible, select:focus-visible, input:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 2px;
}
