/* ============================================================
   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 bands ----------
   style.css derives --accent-on-dark from --brand (the deepened gold that
   carries white button text). On the dark bands the real wordmark gold reads
   far better, so pin it here (custom.css loads last). */
:root {
  --accent-on-dark: #f0d34e;
}

/* ---------- 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;
  }
}
