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

/* ---------- FAQ answer links (dish, neighbourhood & service tags) ---------- */
.qa .qa-body a {
  color: #004F22;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.qa .qa-body a:hover,
.qa .qa-body a:focus-visible {
  color: var(--basil);
  border-bottom-color: currentColor;
}

/* ---------- Location / map box (delivery + tag pages) ---------- */
.map-box-section {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.map-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

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

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

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

.map-box__info {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.map-box__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--basil);
  margin-bottom: 1rem;
}

.map-box__address {
  font-style: normal;
  margin-bottom: 1.2rem;
}

.map-box__address p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.98rem;
  padding: 0.35rem 0;
}

.map-box__address i {
  color: #004F22;
  font-size: 1.1rem;
  flex: none;
}

.map-box__address a {
  color: inherit;
  text-decoration: none;
}

.map-box__address a:hover {
  color: #004F22;
}

.map-box__hours h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.map-box__hours ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.map-box__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.92rem;
}

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

.map-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .map-box__actions {
    justify-content: stretch;
  }
  .map-box__actions .btn {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* ---------- Home-FAQ CTA (used across all tag pages) ---------- */
.home-faq-cta-container {
  padding-top: clamp(2rem, 4vw, 3.2rem);
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
}

.home-faq-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--basil);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

@media (min-width: 720px) {
  .home-faq-cta {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

.home-faq-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.home-faq-cta__kicker {
  display: inline-block;
  font-family: var(--font-display, inherit);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--basil);
  margin-bottom: 0.25rem;
}

.home-faq-cta h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--ink);
  line-height: 1.2;
}

.home-faq-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  justify-self: start;
}

@media (min-width: 720px) {
  .home-faq-cta__btn {
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .home-faq-cta__btn {
    width: 100%;
    justify-content: center;
  }
}
