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

/* ------------------------------------------------------------
   Find-us box — map on the left, address / hours / actions on
   the right. Used by the long-tail SEO pages under /tags/.
   ------------------------------------------------------------ */

.location-container {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

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

@media (min-width: 861px) {
  .location-box {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

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

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

.location-box__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.location-box__details h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.location-box__details h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chili);
  margin-bottom: 0.3rem;
}

.location-detail p {
  color: var(--muted);
}

.location-detail a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.location-detail a:hover {
  color: var(--chili);
}

.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;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

@media (max-width: 480px) {
  .location-box__actions {
    justify-content: stretch;
  }

  .location-box__actions .btn {
    flex: 1 1 100%;
  }
}

/* Home FAQ: questions are h3 so the heading order stays h2 → h3 —
   keep them looking exactly like the original summary text. */
.faq .qa summary h3 {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}

/* Home FAQ: internal links out to the /tags/ landing pages.
   Base `a` inherits colour with no underline, so answer-body links
   need an explicit treatment to read as links. */
.faq .qa-body a {
  color: 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) 35%, transparent);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

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

/* Neighbourhood / dish link lists: the answer bodies carry 20+ links,
   so lay them out as a compact multi-column list instead of one long
   single-file bullet run. */
.faq .qa-body ul.qa-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.15rem 1.1rem;
}

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

/* The lists are wider than the prose measure, so let those answers
   use the full column. */
.faq .qa-body:has(ul.qa-links) {
  max-width: none;
}

@media (max-width: 480px) {
  .faq .qa-body ul.qa-links {
    grid-template-columns: 1fr;
  }
}

/* Our Food gallery: dish names are h3 for heading structure —
   keep them looking exactly like the original figcaption text. */
.gallery-wall figcaption h3 {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* Dish pages: review-card quote headline is an h3 so the heading
   order stays h2 → h3 — keep the original h4 sizing. */
.review-header .reviewer-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0;
}

/* Dish pages: the About / FAQ block is an editorial column, so its
   copy runs flush-left under the left-aligned headings. */
.dish-description-content .section__description {
  text-align: left;
  max-width: 72ch;
  margin-inline: 0;
}
