/* ==========================================================================
   LEZZET THEME - MENU PAGE STYLES
   ========================================================================== */

:root {
  --gold-50: #FDF8EE;
  --gold-100: #F5E6C0;
  --gold-200: #E8C97A;
  --gold-400: #C9973A;
  --gold-600: #9B6E1F;
  --gold-800: #6B4A0F;
  --night-50: #F0EDE8;
  --night-100: #C8BFB0;
  --night-200: #8C7E6A;
  --night-400: #3D3020;
  --night-700: #1E1508;
  --night-900: #0E0A04;
  --cream: #FAF6EF;
  --white: #FFFFFF;
}

/* ========================================================================
   PAGE HERO — uses main.css .page-hero base styles
   No overrides needed — main.css handles this correctly
   ======================================================================== */

/* ========================================================================
   MENU SWITCHER
   ======================================================================== */

.menu-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: var(--white);
  border-radius: 24px;
  padding: 3px;
  border: 1px solid var(--gold-100);
  position: sticky;
  top: 66px;
  z-index: 50;
  margin: 32px auto;
  transition: all 0.3s ease;
}

.menu-switch-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  color: var(--night-200);
  transition: all 0.3s ease;
}

.menu-switch-btn.active {
  background-color: var(--gold-400);
  color: var(--night-900);
}

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

.section-menu-digital {
  padding: 0 0 48px 0;
}

.menu-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .menu-layout {
    flex-direction: row;
    gap: 32px;
  }
}

.menu-sidebar {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .menu-sidebar {
    flex-direction: column;
    width: 220px;
    overflow-x: visible;
    padding-bottom: 0;
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}

.cat-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--night-200);
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .cat-btn {
    border-left: 2px solid transparent;
    border-bottom: none;
    text-align: left;
    width: 100%;
    padding: 10px 16px;
    justify-content: flex-start;
  }
}

.cat-btn.active {
  color: var(--gold-600);
  background-color: var(--gold-50);
  border-bottom-color: var(--gold-400);
}

@media (min-width: 768px) {
  .cat-btn.active {
    border-left-color: var(--gold-400);
    border-bottom-color: transparent;
  }
}

.cat-btn .ornament-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-400);
  border-radius: 50%;
  flex-shrink: 0;
  display: none;
}

.cat-btn.active .ornament-dot {
  display: inline-block;
}

.menu-items {
  flex: 1;
}

.menu-cat-header {
  display: flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 24px;
}

.menu-cat-header:first-child {
  margin-top: 0;
}

.menu-cat-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--night-700);
  margin: 0;
}

/* ========================================================================
   MENU DISH ITEMS
   ======================================================================== */

.dish-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dotted var(--gold-100);
  transition: padding-left 0.3s ease;
}

.dish-item:hover {
  padding-left: 6px;
}

.dish-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-100);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .dish-thumb {
    width: 72px;
    height: 72px;
  }
}

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

.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--night-700);
  margin: 0 0 2px 0;
}

.dish-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--night-200);
  margin: 0 0 8px 0;
}

.dish-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.badge {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 2px;
}

.badge-veg {
  background-color: var(--gold-50);
  color: var(--gold-800);
}

.badge-new {
  border: 1px solid var(--gold-400);
  color: var(--gold-600);
  background-color: transparent;
}

.badge-spe {
  background-color: var(--night-900);
  color: var(--gold-200);
}

.dish-price {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-600);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

/* ========================================================================
   MENU PDF CARD
   ======================================================================== */

.section-menu-pdf {
  padding: 48px 0;
}

.menu-pdf-card {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--gold-100);
  border-radius: 4px;
  padding: 48px 32px;
}

.menu-pdf-card .ornament-icon {
  font-size: 24px;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.menu-pdf-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--night-700);
  margin: 0 0 8px 0;
}

.menu-pdf-card .season {
  font-size: 13px;
  font-weight: 300;
  color: var(--night-200);
  margin: 0 0 24px 0;
}

.pdf-download-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--gold-400);
  border-radius: 2px;
}

.pdf-download-btn:hover {
  color: var(--gold-600);
  border-color: var(--gold-600);
}

.menu-pdf-card .updated {
  font-size: 11px;
  font-weight: 300;
  color: var(--night-200);
  margin-top: 12px;
  margin-bottom: 0;
}

.menu-pdf-card .no-pdf {
  font-size: 13px;
  font-weight: 300;
  color: var(--night-200);
  font-style: italic;
}
