/* ============================================================
   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) + address/contact details (right)
   Used by the home page "Find us" band and the long-tail
   service pages under /tags/.
   ------------------------------------------------------------ */

/* home page band that holds the location box */
.find-us {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--sand);
}

.find-us .location-box {
  margin-top: 0;
}

.location-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  margin-top: 2rem;
}

.location-box .map-frame {
  min-height: 420px;
  height: 100%;
}

.location-box__details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.35rem 0.35rem 0;
}

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

.loc-item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.loc-item p {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.loc-item a {
  color: var(--chili-dark);
}

.loc-item a:hover {
  text-decoration: underline;
}

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

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

  .location-box .map-frame {
    min-height: 320px;
  }

  .location-box__actions {
    justify-content: center;
  }
}

/* links inside the legacy area/service cards keep the site link style */
.delivery-area-card li a,
.delivery-area li a {
  color: var(--chili-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

.delivery-area-card li a:hover,
.delivery-area li a:hover {
  color: var(--chili);
  text-decoration: underline;
}

/* FAQ answers link out to dish and neighbourhood pages — make those
   links identifiable rather than plain body text */
.faq .qa-body a {
  color: var(--chili-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

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