/* ============================================================
   CUSTOM — Per-store overrides for Template TL (Lantern)
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   ============================================================ */

/* Layout for the location / delivery boxes now lives in style.css
   (Lantern template). Keep only store-specific tweaks below. */

/* ---------- home FAQ: internal links to tag pages ---------- */
.qa .qa-body a {
  color: var(--chili);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--chili) 35%, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.qa .qa-body a:hover,
.qa .qa-body a:focus-visible {
  color: var(--chili-dark);
  text-decoration-color: currentColor;
}

/* long neighbourhood / dish lists (8+ items) read better in two columns */
.qa .qa-body ul:has(li:nth-child(8)) {
  columns: 2;
  column-gap: 1.5rem;
}

.qa .qa-body ul:has(li:nth-child(8)) li {
  break-inside: avoid;
}

@media (max-width: 560px) {
  .qa .qa-body ul:has(li:nth-child(8)) {
    columns: 1;
  }
}

/* ---------- brand accents on dark / red bands ----------
   style.css derives --accent-on-dark from --brand. A pale rose reads well on
   both the near-black header/footer and the red bands, so pin it here. */
:root {
  --accent-on-dark: #ffc9c4;
}

/* ---------- buttons on the red bands ----------
   The red button circle disappears on a red band, so there the circle and
   hover fill turn white and the arrow / hover label turn red. */
.cta-band .btn::before,
.hours-table .btn::before,
.cta-container .btn::before {
  background: #fff;
}

.cta-band .btn .arrow,
.hours-table .btn .arrow,
.cta-container .btn .arrow {
  color: var(--chili);
}

.cta-band .btn:hover,
.cta-band .btn-line:hover,
.hours-table .btn:hover,
.cta-container .btn:hover,
.cta-container .btn-secondary:hover {
  color: var(--chili);
}

.cta-band .btn:hover::before,
.cta-band .btn-line:hover::before,
.hours-table .btn:hover::before,
.cta-container .btn:hover::before,
.cta-container .btn-secondary:hover::before {
  background: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.cta-band .btn:hover .arrow,
.cta-band .btn-line:hover .arrow,
.hours-table .btn:hover .arrow,
.cta-container .btn:hover .arrow,
.cta-container .btn-secondary:hover .arrow {
  color: #fff;
}

/* ---------- logo: wide wordmark (535 x 116), not a round emblem ----------
   The real New China Kitchen mark is a horizontal gold wordmark over a black
   "RESTAURANT" pill, so the template's circular crop is dropped and the logo
   is sized by height. */
.brand img,
.logo__image {
  height: 48px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 4px 8px;
}

.foot-brand img {
  height: 56px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 5px 10px;
}

@media (max-width: 900px) {
  .brand img,
  .logo__image {
    height: 40px;
  }
}
