/* =============================================
   MENU PAGE STYLES
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- TABS ---- */
.menu-tabs-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 50;
}

.menu-tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.tab-btn:hover { color: var(--white); border-color: var(--border); }
.tab-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ---- MENU SECTION ---- */
.menu-section { padding: 4rem 0; }

.menu-category {
  margin-bottom: 4.5rem;
}

.cat-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cat-header h2 {
  font-size: 2rem;
}

/* ---- CATEGORY FEATURE IMAGE ---- */
.category-feature {
  margin: 0 0 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.category-feature img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.category-feature figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  background: var(--dark-2);
  text-align: center;
}

/* Banner variant — full graphic, no crop (text baked into image) */
.category-feature.banner img {
  max-height: none;
  object-fit: contain;
}

/* ---- MENU GRID ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.menu-grid-sm {
  grid-template-columns: repeat(3, 1fr);
}

/* ---- MENU ITEM ---- */
.menu-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.menu-item:hover {
  border-color: rgba(230,126,34,0.3);
  transform: translateY(-2px);
}

.menu-item-sm {
  flex-direction: column;
  gap: 0.5rem;
}

.item-img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.item-info { flex: 1; }

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.item-info h3 {
  font-family: var(--font-impact);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.03em;
}

.item-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.05rem;
  white-space: nowrap;
}

.item-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
}

.tag-hot { background: rgba(192,57,43,0.15); color: #e74c3c; border-color: rgba(192,57,43,0.3); }
.tag-spicy { background: rgba(230,126,34,0.15); color: #e67e22; border-color: rgba(230,126,34,0.3); }
.tag-new { background: rgba(39,174,96,0.15); color: #2ecc71; border-color: rgba(39,174,96,0.3); }
.tag-fusion { background: rgba(41,128,185,0.15); color: #5dade2; border-color: rgba(41,128,185,0.3); }

/* ---- TACOS FEATURE IMAGE (menu page) ---- */
.tacos-feature-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  max-height: 420px;
}
.tacos-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ---- SUB LABEL (within category) ---- */
.cat-sub-label {
  font-family: var(--font-bebas);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 3px solid var(--red);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}

/* ---- ITEM OPTIONS (price variants / ingredient lists) ---- */
.item-options {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.price-unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ---- LUNCH BANNER ---- */
.lunch-banner {
  background: rgba(213,0,0,0.08);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  line-height: 1.6;
}

.lunch-banner strong { color: var(--white); }

/* ---- CATERING CTA ---- */
.menu-footer-block { margin-top: 3rem; }

.catering-cta {
  margin-top: 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.catering-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---- NOTE ---- */
.menu-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.menu-note a { color: var(--orange); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid-sm { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .menu-grid-sm { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; }
  .item-img { width: 44px; height: 44px; font-size: 1.75rem; }
}
