/* =========================================================
   PENNY OVEN — Menu Page CSS
   Matches khatutechs.in/pennyoven/menu/
   ========================================================= */

.menu-page-section {
  padding: 80px 0 100px;
}

/* Section header spacing on menu page */
.menu-page-section .section-header-center {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ── Order CTA ─────────────────────────────────────────── */
.menu-order-cta {
  text-align: center;
  margin: 24px 0 0;
}

/* ── Tab bar ────────────────────────────────────────────── */
.menu-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid #e8e8e8;
  margin: 40px 0 56px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 40px;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.menu-tab-btn.active,
.menu-tab-btn:hover {
  color: #CFA670;
  border-bottom-color: #CFA670;
}

/* ── Panel ──────────────────────────────────────────────── */
.menu-tab-panel { display: none; }
.menu-tab-panel.active { display: block; }

/* ── Category block ─────────────────────────────────────── */
.menu-category {
  margin-bottom: 56px;
}

.menu-cat-title {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 14px;
  border-bottom: 2px solid #CFA670;
  margin-bottom: 4px;
}

/* ── Menu items ─────────────────────────────────────────── */
.menu-items-list {
  /* no extra top margin — first item has top border from .menu-item */
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 3px;
}

.menu-item-desc {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  line-height: 1.6;
}

.menu-item-price {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #CFA670;
  white-space: nowrap;
  padding-top: 1px;
  min-width: 40px;
  text-align: right;
}

/* ── Note (coffee note) ─────────────────────────────────── */
.menu-note {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .menu-tab-btn {
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .menu-item-name { font-size: 14px; }
  .menu-item-price { font-size: 13px; }
}
