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

/* ---------- location + map box (city/cuisine landing page) ---------- */

/* section wrapper for the home page "Visit us" map box */
.visit-band {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.location-box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.location-box__map {
  position: relative;
  min-height: 440px;
  background: var(--sand);
}

.location-box__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-box__info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.location-box__info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  color: var(--basil);
}

.location-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chili);
  margin-bottom: 0.3rem;
}

.location-detail p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.location-detail a {
  color: inherit;
  text-decoration: none;
}

.location-detail a:hover {
  color: var(--chili-dark, var(--chili));
  text-decoration: underline;
}

.location-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.location-hours li:last-child {
  border-bottom: none;
}

.location-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

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

  .location-box__map {
    min-height: 320px;
  }

  .location-box__actions {
    justify-content: flex-start;
  }
}

/* ---------- FAQ internal links (dish / neighbourhood / service pages) ---------- */

/* The global rule is `a { color: inherit; text-decoration: none }`, which makes
   the FAQ's internal links read as plain text. These links are the main entry
   point to every page in /tags/, so they get an explicit link treatment. */
.faq .qa-body a {
  color: var(--chili-dark, var(--chili));
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: color-mix(in srgb, var(--chili) 40%, transparent);
  border-radius: 3px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease,
    background-color 0.18s ease;
}

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

.faq .qa-body a:focus-visible {
  outline: 2px solid var(--chili);
  outline-offset: 2px;
}

/* Keep the phone-number link in the FAQ intro looking like a button, not a link */
.faq .faq-intro .btn-line {
  text-decoration: none;
}

/* The delivery-areas answer lists 17 neighbourhoods — flow it into columns
   so the open accordion stays readable instead of running down the page. */
.faq .qa-body ul.qa-areas {
  columns: 2;
  column-gap: 1.6rem;
}

.faq .qa-body ul.qa-areas li {
  break-inside: avoid;
}

@media (min-width: 1200px) {
  .faq .qa-body ul.qa-areas {
    columns: 3;
  }
}

@media (max-width: 520px) {
  .faq .qa-body ul.qa-areas {
    columns: 1;
  }
}
