/* ============================================================
   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 + address/contact card used at the end of
   the city + cuisine landing page (edmonton-greek-restaurant).
   Uses the existing design tokens only: no new colours.
   ------------------------------------------------------------ */

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

.location-box__map {
  position: relative;
  min-height: 420px;
  background: var(--sand);
}

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

.location-box__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.location-box__details h3 {
  font-size: 1.35rem;
  color: var(--basil);
}

.location-detail 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;
}

.location-detail p,
.location-detail address {
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.location-detail a {
  color: var(--chili-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

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

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

/* home page — the same location box sits at the end of index.html,
   so it needs the standard section rhythm around it */
.location-sec {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--sand);
}

.location-sec .location-box {
  margin-top: 0;
}

/* links inside the home-page FAQ answers (details/summary list) */
.qa .qa-body a {
  color: var(--chili-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qa .qa-body a:hover {
  color: var(--chili);
}

.qa .qa-body a:focus-visible {
  outline: 2px solid var(--chili);
  outline-offset: 2px;
  border-radius: 2px;
}

/* headings inside the highlight cards on the landing page */
.review-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--basil);
}

/* inline links inside the static FAQ + note copy */
.faq-answer a,
.delivery-note a {
  color: var(--chili-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* dish groups stacked inside the "what to order" cards
   (greek-food-delivery-edmonton) — h4 has no base style */
.delivery-area-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 1.1rem;
}

.delivery-area-card h4:first-of-type {
  margin-top: 0.35rem;
}

.delivery-area-card h4 + .dish-description {
  margin-top: 0.2rem;
}

/* neighbourhood + dish links inside those cards read as links */
.delivery-area-card li a {
  color: var(--chili-dark);
  font-weight: 600;
}

.delivery-area-card li a:hover,
.delivery-area-card h4 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
