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

/* ---------- Dish page: Location & Contact box ---------- */
.dish-location {
  padding-bottom: 4rem;
}

.dish-location .section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.dish-location .location-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border-radius: var(--r-xl, 18px);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 20px 45px rgba(0, 0, 0, 0.12));
  background: var(--canvas, #faf6f0);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dish-location .location-map {
  position: relative;
  min-height: 380px;
}

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

.dish-location .location-details {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dish-location .location-details h3 {
  margin: 0 0 1.25rem;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--ink, #201d1a);
}

.dish-location .location-info {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.dish-location .location-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--ink, #201d1a);
}

.dish-location .location-info i {
  color: var(--brand, #8c6a15);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.dish-location .location-info a:hover {
  color: var(--brand, #8c6a15);
}

.dish-location .location-directions {
  align-self: flex-start;
}

/* ---------- Home FAQ: internal tag links ---------- */
.faq .qa-body a {
  color: var(--brand, #8c6a15);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--brand, #8c6a15) 35%, transparent);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq .qa-body a:hover,
.faq .qa-body a:focus-visible {
  color: var(--chili-dark, #6b500f);
  border-bottom-color: var(--brand, #8c6a15);
}

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

  .dish-location .location-map {
    min-height: 300px;
  }

  .dish-location .location-details {
    padding: 1.75rem 1.5rem;
  }
}
