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

/* ---------- location box (map left / NAP right) ---------- */

/* home page "find us" section wrapper */
.location {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.location-box {
  display: grid;
  gap: 0;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2rem;
}

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

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

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

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

.location-box__details h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.location-box__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-box__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.location-box__item i {
  color: var(--chili);
  font-size: 1.15rem;
  line-height: 1.5;
}

.location-box__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.location-box__item span,
.location-box__item a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.location-box__item > div {
  flex: 1;
  min-width: 0;
}

.location-box__hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.location-box__hours th,
.location-box__hours td {
  text-align: left;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 400;
}

.location-box__hours tr:last-child th,
.location-box__hours tr:last-child td {
  border-bottom: none;
}

.location-box__hours td {
  text-align: right;
  white-space: nowrap;
}

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

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

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

/* location box — inline-SVG icons + heading-based labels (tags pages) */

.location-box__item .ico {
  color: var(--chili);
  font-size: 1.15rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.location-box__item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.location-box__item .location-box__hours {
  margin-top: 0.25rem;
}

.location-box__actions .btn-line {
  box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
  .location-box__actions .btn-line {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* ---------- FAQ: internal link styling ---------- */
/* Makes every in-answer link (dish pages, delivery-area pages, service
   pages) read as a link rather than plain body copy. */

.qa .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) 40%, transparent);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

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

/* pill row of service links shown under the FAQ answers */

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.faq-links a.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--card);
  color: var(--chili);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-links a.faq-link:hover,
.faq-links a.faq-link:focus-visible {
  background: var(--chili);
  border-color: var(--chili);
  color: #fff;
}

@media (max-width: 480px) {
  .faq-links a.faq-link {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* ---------- dish pages: reviewer name as h3 (heading order) ---------- */
/* Keeps the exact visual weight of the previous h4 byline while allowing a
   clean h2 -> h3 heading sequence inside the reviews grid. */

.reviews-grid .reviewer-info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
  margin-top: 0;
}
