/* ============================================================
   CUSTOM — Sushi Panda overrides for Template AR
   Loaded last, so it wins over theme.css and style.css.
   Everything here is built from the template's own tokens
   (--gold, --ink, --line, --font-display …) so it re-skins
   automatically with the five variables in theme.css.
   ============================================================ */

/* ---- AYCE pricing (no equivalent in the base template) ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.price-card {
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.price-card__session {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.price-slot__when {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  margin-bottom: 0.9rem;
}
.price-slot__when strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}
.price-slot__when span {
  font-size: 0.9rem;
  color: var(--ink-55);
}
.price-slot__rates {
  display: grid;
  gap: 0.5rem;
  list-style: none;
}
.price-slot__rates li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.price-slot__rates li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.price-slot__amt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}

/* the pricing block also appears on the dark menu-page band */
.band-dark .price-card,
.band-olive .price-card {
  border-color: var(--cream-line);
}
.band-dark .price-card__session,
.band-olive .price-card__session {
  border-bottom-color: var(--cream-line);
}
.band-dark .price-slot__when span,
.band-olive .price-slot__when span {
  color: var(--cream-55);
}
.band-dark .price-slot__rates li,
.band-olive .price-slot__rates li {
  border-bottom-color: var(--cream-line);
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- long link lists inside an FAQ answer (delivery areas) ---- */
.qa-body ul.qa-cols {
  columns: 3;
  column-gap: 1.5rem;
}
@media (max-width: 700px) {
  .qa-body ul.qa-cols {
    columns: 2;
  }
}

/* ---- the logo is a stacked mark + wordmark, not a wide lockup ----
   It needs more height than the template's wide lockup for the
   "All You can eat" line to stay legible in the header. ---- */
.brand img {
  height: 7rem;
}
@media (max-width: 900px) {
  .brand img {
    height: 4.5rem;
  }
}
.nav-overlay__brand img,
.foot-brand img {
  height: 12rem;
}

/* ---- two-column variant of the template's areas grid ---- */
.areas-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 60rem;
  margin-inline: auto;
}
.areas-grid--2 .area:nth-child(2) {
  border-radius: 0;
  padding-top: 2rem;
  text-align: left;
}
@media (max-width: 900px) {
  .areas-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* ---- single-column variant of the areas grid (one long list) ---- */
.areas-grid--1 {
  grid-template-columns: 1fr;
  max-width: 48rem;
  margin-inline: auto;
}
.areas-grid--1 .area:nth-child(2) {
  border-radius: 0;
  padding-top: 2rem;
  text-align: left;
}
