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

/* ------------------------------------------------------------
   VISIT BOX — long-tail SEO pages (tags/*)
   Google map on the left, address + contact details on the
   right, actions pinned to the bottom-right corner.
   Uses only the tokens already defined in style.css.
   ------------------------------------------------------------ */

.visit-box {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  margin-top: 2rem;
}

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

.visit-box .map-container {
  padding-bottom: 0;
  height: 100%;
  min-height: 300px;
  border-radius: var(--r-lg);
  box-shadow: none;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0.25rem 0.25rem 0.25rem 0;
}

.visit-info h3 {
  font-size: 1.3rem;
}

.visit-list {
  display: grid;
  gap: 0.95rem;
}

.visit-item h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chili);
  margin-bottom: 0.15rem;
}

.visit-item p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.visit-item a {
  color: var(--muted);
  font-weight: 600;
}

.visit-item a:hover {
  color: var(--chili-dark);
  text-decoration: underline;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.35rem;
}

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

  .visit-actions .btn {
    flex: 1 1 100%;
  }
}

/* ------------------------------------------------------------
   HOME FAQ — internal links
   The global rule `a { color: inherit; text-decoration: none }`
   makes the dish / neighbourhood links inside the FAQ answers
   look like plain text. Give them a clear, on-brand link style
   so both readers and crawlers can see them.
   ------------------------------------------------------------ */

.qa .qa-body a {
  color: var(--chili);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--chili) 45%, transparent);
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

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

/* Long neighbourhood link list — tidy multi-column layout */
.qa .qa-body ul.qa-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  column-gap: 1.2rem;
  row-gap: 0.35rem;
  padding-left: 1.1rem;
}

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