/* ============ MENU HERO ============ */
.menu-hero {
  background: linear-gradient(135deg, #1c1010 0%, #2d1a1f 40%, #1a1a2e 100%);
  padding: 130px 20px 60px;
  text-align: center;
}
.menu-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.menu-hero-content p { color: rgba(255,255,255,0.45); font-size: 0.92rem; letter-spacing: 3px; text-transform: uppercase; }

/* ============ TABS ============ */
.menu-section { padding: 52px 0 0; background: #fff; }
.tabs { display: flex; gap: 10px; margin-bottom: 44px; justify-content: center; }
.tab-btn {
  padding: 11px 32px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.tab-btn.active, .tab-btn:hover { background: var(--gold); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============ CATEGORIES GRID ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #ede8e2;
  border: 1px solid #ede8e2;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1px;
}
.categories-grid.single { grid-template-columns: 1fr; }
.categories-grid.triple { grid-template-columns: repeat(3, 1fr); }

/* ============ CATEGORY CARD ============ */
.menu-category { background: #fff; }
.cat-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 28px 14px;
  border-bottom: 1px solid #f5ede6;
}

/* ============ PRICE TABLE ============ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.price-table thead th {
  padding: 8px 14px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #bbb;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: right;
  border-bottom: 1px solid #f5ede6;
}
.price-table thead th:first-child { text-align: left; padding-left: 28px; }
.price-table thead th:last-child { padding-right: 28px; }

.price-table tbody tr { border-bottom: 1px solid #f9f5f1; transition: background 0.15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #fdf8f3; }

.price-table td {
  padding: 13px 14px;
  color: #555;
  text-align: right;
  vertical-align: middle;
  white-space: nowrap;
}
.price-table td:first-child {
  text-align: left;
  color: var(--dark);
  padding-left: 28px;
  font-size: 1rem;
  white-space: normal;
  width: 100%;
}
.price-table td:last-child { padding-right: 28px; }
.price-table td.price { color: var(--gold); font-weight: 500; font-size: 1rem; }
.price-table td.muted { color: #ccc; }
.price-table td.onwards { color: var(--gold); font-weight: 500; text-align: left; font-size: 1rem; }
.price-table tr.highlight td:first-child { font-weight: 500; }
.price-table tr.highlight td.price { color: var(--rose); }

/* ============ SECTION DIVIDER ============ */
.section-divider {
  text-align: center;
  padding: 40px 0 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 1px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold-light);
  vertical-align: middle;
  margin: 0 16px;
}

/* ============ COMBO SECTION ============ */
.combo-outer {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid #ede8e2;
  overflow: hidden;
  margin-bottom: 1px;
}
.combo-outer .cat-title {
  background: var(--dark);
  color: var(--gold);
  padding: 16px 24px;
}
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
}
.combo-card {
  padding: 20px 22px;
  border-right: 1px solid #ede8e2;
  border-bottom: 1px solid #ede8e2;
  background: #fff;
  transition: background 0.2s;
}
.combo-card:hover { background: #fdf8f3; }
.combo-card.highlight { background: #fdf3e7; }
.combo-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.combo-name { font-weight: 500; font-size: 0.95rem; margin-bottom: 8px; color: var(--dark); letter-spacing: 0.3px; }
.combo-items { font-size: 0.88rem; color: #999; line-height: 1.65; }

/* ============ BOOK CTA ============ */
.menu-cta { background: var(--dark); padding: 56px 20px; margin-top: 60px; text-align: center; }
.menu-cta p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 4px; letter-spacing: 1px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid.triple { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .price-table { font-size: 0.95rem; }
  .price-table td { padding: 11px 10px; }
  .price-table td:first-child { padding-left: 16px; font-size: 0.95rem; }
  .price-table td:last-child { padding-right: 16px; }
  .cat-title { padding: 16px 16px 12px; font-size: 0.8rem; }
}
