/* ============================================================
   THE CULINARY NOCTURNE — QR MENU STYLES
   ============================================================ */

:root {
  --bg-primary: #141414;
  --bg-secondary: #1e1e1e;
  --bg-card: #242424;
  --bg-card-hover: #2c2c2c;
  --gold: #C9A84C;
  --gold-light: #e0bf6e;
  --gold-dark: #a88934;
  --burgundy: #7B2D3E;
  --text-primary: #F5F0E8;
  --text-secondary: #9A9490;
  --text-muted: #6B6562;
  --border: rgba(201, 168, 76, 0.15);
  --border-subtle: rgba(255,255,255,0.06);
  --nav-height: 64px;
  --header-height: 56px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100dvh;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }

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

/* ============================================================
   LAYOUT
   ============================================================ */

#app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
}

.page {
  padding-top: var(--header-height);
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
  min-height: 100dvh;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: var(--header-height);
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
}

.header-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.header-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
}

.lang-btn {
  padding: 5px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: all 0.2s;
  border-radius: 20px;
}

.lang-btn.active {
  background: var(--gold);
  color: #000;
}

.call-waiter-btn {
  padding: 7px 13px;
  background: var(--gold);
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  line-height: 1.3;
  text-align: center;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 6px 0;
}

.back-btn svg { width: 18px; height: 18px; }

/* ============================================================
   BOTTOM NAV
   ============================================================ */

.bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: calc(var(--nav-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: 10px;
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 16px;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  min-width: 60px;
}

.nav-item svg { width: 22px; height: 22px; }

.nav-item.active {
  color: var(--gold);
}

.nav-item.active .nav-indicator {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  bottom: calc(var(--nav-height) + var(--safe-bottom) - 8px);
}

/* ============================================================
   HOME PAGE
   ============================================================ */

.home-hero {
  padding: 20px 16px 0;
}

.home-welcome {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.home-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.wifi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.wifi-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.wifi-icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }

.wifi-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.wifi-network {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wifi-pass { color: var(--text-secondary); font-weight: 400; }

/* Search Bar */
.search-wrap {
  padding: 0 16px;
  margin-bottom: 24px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color 0.2s;
}

.search-bar:focus-within {
  border-color: var(--gold);
}

.search-bar svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }

.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  flex: 1;
  font-family: inherit;
}

.search-bar input::placeholder { color: var(--text-muted); }

/* Category Grid */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.section-link {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.category-grid {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cat-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.cat-card.featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card:active img { transform: scale(1.03); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 40%, transparent 80%);
}

.cat-card-content {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
}

.cat-badge {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.cat-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cat-card.featured .cat-name { font-size: 1.35rem; }

/* Sommelier Pick */
.sommelier-card {
  margin: 24px 16px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}

.sommelier-star {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.sommelier-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.sommelier-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.2s;
}

.btn-outline:active { background: rgba(201,168,76,0.1); }

/* ============================================================
   HOME SOCIAL FOOTER
   ============================================================ */

.home-social {
  padding: 32px 16px 12px;
  text-align: center;
}

.home-social-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon-btn {
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-icon-btn:active {
  background: var(--bg-card-hover);
  color: var(--gold);
}

.social-icon-btn svg { width: 20px; height: 20px; }

/* ============================================================
   CATEGORY LIST PAGE
   ============================================================ */

.list-page-header {
  padding: 20px 16px 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4px;
}

.list-page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.list-page-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.menu-item-row {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background 0.15s;
  align-items: flex-start;
}

.menu-item-row:active { background: var(--bg-card); }

.menu-item-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
  position: relative;
}

.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.menu-item-badge-img {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--gold);
  color: #000;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}

.menu-item-info { flex: 1; min-width: 0; }

.menu-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.menu-item-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.item-badge {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid;
}

.item-badge.classic    { color: var(--text-secondary); border-color: var(--text-muted); }
.item-badge.vegetarian { color: #6db86d; border-color: #6db86d; }
.item-badge.premium    { color: var(--gold); border-color: var(--gold); }
.item-badge.light      { color: #88c4d4; border-color: #88c4d4; }
.item-badge.chef       { color: var(--gold); border-color: var(--gold); }

/* Special Section */
.special-section {
  margin: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
}

.special-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.special-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.special-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-slider {
  position: relative;
  width: 100%;
  height: 280px;
  background: var(--bg-card);
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}

.slider-dot {
  width: 20px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.2s, width 0.2s;
}

.slider-dot.active {
  background: var(--gold);
  width: 32px;
}

.product-content { padding: 20px 16px; }

.product-category-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}

.product-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 4px;
}

/* Nutrition Table */
.nutrition-table {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 24px;
}

.nutrition-cell {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.nutrition-cell:last-child { border-right: none; }

.nutrition-cell-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.nutrition-cell-value {
  font-size: 1rem;
  font-weight: 700;
}

/* Ingredients Section */
.detail-section { margin-bottom: 24px; }

.detail-section-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.detail-section-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Cooking Level */
.cooking-slider-wrap {
  position: relative;
  padding: 8px 0 24px;
}

.cooking-track {
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  position: relative;
  margin-bottom: 14px;
}

.cooking-fill {
  height: 100%;
  background: linear-gradient(to right, #e74c3c, var(--gold));
  border-radius: 2px;
  transition: width 0.3s;
}

.cooking-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--gold);
  cursor: pointer;
  transition: left 0.3s;
}

.cooking-labels {
  display: flex;
  justify-content: space-between;
}

.cooking-label {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  flex: 1;
}

.cooking-label.active { color: var(--gold); font-weight: 700; }

/* Allergens */
.allergen-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.allergen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.22;
  transition: opacity 0.2s;
}

.allergen-item.active { opacity: 1; }

.allergen-icon {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.allergen-item.active .allergen-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.allergen-label {
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.allergen-item.active .allergen-label { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  height: 220px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.contact-hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(to bottom, rgba(20,20,20,0.3), rgba(20,20,20,0.7));
}

.contact-hero-pin { font-size: 2rem; }

.contact-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.contact-card {
  margin: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 22px 18px;
}

.contact-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.address-landmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.address-line {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.map-embed {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.map-embed iframe { width: 100%; height: 100%; border: none; }

.contact-icon-card {
  margin: 0 16px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 18px;
}

.contact-icon-wrap {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
}

.contact-icon-wrap svg { width: 20px; height: 20px; }

.contact-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* Hours Table */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.875rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-days { color: var(--text-primary); }
.hours-time { font-weight: 600; }
.hours-time.highlight { color: var(--gold); }

/* Contact Social */
.contact-social {
  padding: 8px 16px 0;
  text-align: center;
}

.contact-social-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */

.search-page-bar {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: var(--header-height);
  background: var(--bg-primary);
  z-index: 10;
}

.search-results {
  padding: 8px 0;
}

.search-empty {
  padding: 60px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.search-empty svg {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  opacity: 0.3;
}

/* ============================================================
   WINE PAGE
   ============================================================ */

.wine-hero {
  height: 200px;
  background: linear-gradient(135deg, #1a0a0e 0%, #2d1018 50%, #1a0a0e 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.wine-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wine-hero-icon { font-size: 2.5rem; position: relative; }

.wine-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
}

/* ============================================================
   PAGE FOOTER
   ============================================================ */

.page-footer {
  padding: 24px 16px 8px;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  margin-top: 24px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-link {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ============================================================
   SKELETON / LOADING
   ============================================================ */

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s;
  z-index: 200;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   UTILITY
   ============================================================ */

.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0 16px;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE: Desktop centering
   ============================================================ */

@media (min-width: 481px) {
  .header, .bottom-nav {
    left: 50%;
    transform: translateX(-50%);
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
  }
}
