/* ════════════════════════════════════════
   VARIABLES (Original from Main)
════════════════════════════════════════ */
:root {
  /* Restaurant page */
  --bg: #FFFFFF;
  --bg-secondary: #F7F4EF;
  --accent: #B85C3A;
  --accent-light: #FFF8F5;
  --text: #0F0F0E;
  --text-muted: #6B6560;
  --text-light: #F7F4EF;
  --border: #E8E2D9;
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 800px;
  --max-wide: 1100px;
  --tab-h: 50px;

  /* Homepage fv- palette */
  --fv-accent: #B85C3A;
  --fv-accent-light: #FFF3EE;
  --fv-accent-border: #F0C4B0;
  --fv-bg: #FFFFFF;
  --fv-bg-warm: #F7F4EF;
  --fv-dark: #0F0F0E;
  --fv-chat-bg: #111111;
  --color-text-secondary: #6B6560;
  --color-text-tertiary: #9E9590;
  --color-border-tertiary: rgba(15,15,14,0.1);

  /* v14 Design Tokens */
  --v14-pink:         #ff6b9d;
  --v14-purple:       #7c3aed;
  --v14-gradient:     linear-gradient(135deg, #ff6b9d, #c084fc);
  --v14-border-soft:  #e8e8f0;
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
.page { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 48px; }
.text-muted { color: var(--text-muted); }
a { text-decoration: none; }

/* ════════════════════════════════════════
   RESTAURANT STYLES (Restored from Main)
════════════════════════════════════════ */
.rest-top { background: #fff; padding: 36px 0 40px; }
.rest-top-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: start; }
.rest-left { display: flex; flex-direction: column; }
.rest-back { display: inline-block; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; transition: color 0.15s; }
.rest-back:hover { color: var(--text); }
.rest-name { font-family: var(--serif); font-weight: 600; font-size: 52px; color: #0F0F0E; line-height: 1.1; margin-bottom: 12px; letter-spacing: -0.5px; }
.rest-info { font-family: var(--sans); font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.rest-star { color: var(--accent); }
.rest-dot { margin: 0 7px; opacity: 0.45; }
.rest-desc { font-family: var(--sans); font-size: 16px; color: var(--text); line-height: 1.6; margin-top: 16px; max-width: 480px; }
.rest-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag-pill { display: inline-block; border: 1px solid var(--border); background: transparent; color: var(--text-muted); border-radius: 100px; font-size: 12px; padding: 4px 12px; }
.rest-photo-placeholder { background: #F2EDE6; border-radius: 12px; height: 280px; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; }
.rest-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.rest-photo-addr { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; }
.rest-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.ai-band { background: var(--bg-secondary); padding: 40px 0; }
.ai-band-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ai-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.cmd-box { display: flex; align-items: center; gap: 12px; background: #FFFFFF; border: 1.5px solid var(--border); border-radius: 8px; padding: 16px 24px; max-width: 480px; width: 100%; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.cmd-text { flex: 1; font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--text); text-align: left; line-height: 1.3; }
.cmd-copy { flex-shrink: 0; background: none; border: 1px solid var(--border); border-radius: 4px; color: var(--text-muted); font-size: 11px; padding: 4px 10px; cursor: pointer; }
.ai-band-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.btn { display: inline-block; padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; border: none; transition: background 0.15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid var(--text); color: var(--text); }
.tab-nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); height: var(--tab-h); display: flex; align-items: center; padding-left: 48px; }
.tab-link { display: inline-flex; align-items: center; height: var(--tab-h); padding: 0 16px; font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; border-bottom: 2px solid transparent; }
.tab-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.menu-section { background: #FFFFFF; padding: 56px 0 64px; scroll-margin-top: var(--tab-h); flex: 1; }
.menu-heading { font-family: var(--serif); font-weight: 600; font-size: 40px; color: var(--text); margin-bottom: 8px; line-height: 1; }
.menu-category { margin-top: 40px; }
.menu-category-label { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.menu-item-name { font-weight: 500; font-size: 16px; color: var(--text); }
.menu-item-desc { font-size: 13px; font-style: italic; color: var(--text-muted); line-height: 1.4; }
.menu-item-price { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--accent); flex-shrink: 0; }

/* ════════════════════════════════════════
   SHARED NAV & FOOTER (base.html)
════════════════════════════════════════ */
nav {
    position: sticky; top: 0; z-index: 200;
    padding: 0 48px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid #e8e8f0;
}
.logo { font-size: 1.6rem; font-weight: 900; color: #0a0a14; text-decoration: none; letter-spacing: -.8px; }
.logo-vise-text { background: linear-gradient(135deg,#ff6b9d,#c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: #52526a; text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: #0a0a14; }
.nav-links a.active { color: #7c3aed; font-weight: 700; }
.btn-nav { background: linear-gradient(135deg,#ff6b9d,#c084fc); color: white; border: none; padding: 9px 22px; border-radius: 10px; font-size: .85rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity .15s, transform .15s; }
.btn-nav:hover { opacity: .88; transform: translateY(-1px); }

.gradient-text { background: linear-gradient(135deg,#ff6b9d,#c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

footer { background: #fff; border-top: 1px solid #e8e8f0; padding: 22px 48px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-size: .95rem; font-weight: 900; color: #0a0a14; text-decoration: none; }
.footer-copy { font-size: .75rem; color: #9898b0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .75rem; color: #9898b0; text-decoration: none; }
.footer-links a:hover { color: #0a0a14; }

/* ════════════════════════════════════════
   v14 GLOBAL STYLES (Appended)
════════════════════════════════════════ */
.v14-nav {
    position: sticky; top: 0; z-index: 200;
    max-width: 1200px; margin: 0 auto;
    padding: 0 40px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.v14-nav::before {
    content: '';
    position: fixed; top: 0; left: 0; right: 0; height: 64px;
    background: rgba(255,255,255,.90); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--v14-border-soft);
    z-index: -1;
}
.v14-logo { font-size: 1.25rem; font-weight: 800; color: #0a0a14; letter-spacing: -.5px; }
.v14-logo span { background: var(--v14-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.v14-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.v14-nav-links a { font-size: .875rem; font-weight: 500; color: #52526a; transition: color .15s; }
.v14-nav-links a:hover { color: #0a0a14; }

.v14-gradient-text {
  background: var(--v14-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.1em;
}

.v14-hero { padding: 80px 40px 40px; text-align: center; max-width: 1060px; margin: 0 auto; }
.v14-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -2.4px; margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.v14-hero-sub { font-size: 1.15rem; color: #52526a; line-height: 1.6; max-width: 620px; margin: 0 auto 36px; }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.animate-spin-slow { animation: spin-slow 8s linear infinite; }
@keyframes bounce-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-bounce-slow { animation: bounce-slow 4s ease-in-out infinite; }

.v14-footer { border-top: 1px solid var(--v14-border-soft); padding: 40px; display: flex; align-items: center; justify-content: space-between; margin-top: 80px; }
.v14-footer-logo { font-size: 1.1rem; font-weight: 800; }
.v14-footer-logo span { background: var(--v14-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@media (max-width: 768px) {
  .rest-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .v14-nav { padding: 0 20px; }
}
