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

/* Inline links on the legacy SEO pages need to look like links —
   style.css only covers .section__description / .faq__answer. */
.faq-answer a,
.delivery-note a,
.qa .qa-body a {
  color: var(--chili-dark);
  font-weight: 600;
  text-decoration: underline;
}

.faq-answer a,
.delivery-note a,
.qa .qa-body a {
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
}

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

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

/* Link-dense FAQ answers (the delivery neighbourhood lists) flow into
   responsive columns so 20+ internal links stay scannable instead of
   running down the page as one long bulleted column. */
.qa .qa-body--wide {
  max-width: 62ch;
}

.qa .qa-body .qa-links {
  margin-top: 0.6rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.2rem 1.25rem;
}

.qa .qa-body .qa-links li {
  margin-bottom: 0;
}

.qa .qa-body .qa-links a {
  display: inline-block;
  padding: 0.18rem 0;
}

/* FAQ questions are marked up as h3 for a clean heading outline —
   inherit the summary typography so nothing changes visually. */
.qa summary h3 {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}

/* ------------------------------------------------------------
   VISIT BOX — Google map on the left, address / phone / hours
   on the right, with the action buttons pinned to the bottom
   corner. Used by the city + cuisine landing page.
   ------------------------------------------------------------ */

.visit {
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.visit .visit-box {
  margin-top: 0;
}

.visit-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 2rem;
}

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

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

.visit-box__info {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.visit-box__info h3 {
  font-size: 1.35rem;
}

.visit-box__item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.visit-box__item address,
.visit-box__item p {
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.visit-box__item a {
  color: var(--chili-dark);
  font-weight: 700;
}

.visit-box__item a:hover {
  text-decoration: underline;
}

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

.visit-box__hours li:last-child {
  border-bottom: none;
}

.visit-box__hours li span:last-child {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.visit-box__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

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

  .visit-box__map {
    min-height: 300px;
  }

  .visit-box__actions {
    justify-content: center;
  }
}
