/* ============================================================
   CUSTOM — Per-store overrides for Template AR
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   e.g. keep a full-colour logo on the dark header:
   .brand img, .foot-brand img { filter: none; }
   ============================================================ */

/* ------------------------------------------------------------
   MAP BOX — Google Maps iframe (left) + address/contact (right)
   Shared by index, city page, tags/ landing, dish and place pages.
   ------------------------------------------------------------ */
.map-box {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
}
.map-box__map {
  position: relative;
  min-height: 22rem;
}
.map-box__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-box__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.map-box__info h3 {
  margin: 0;
}
.map-box__info address {
  font-style: normal;
  line-height: 1.6;
}
.map-box__info address a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold-line);
  text-underline-offset: 0.2em;
}
.map-box__info address strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.15rem;
}
.map-box__hours {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.7;
}
.map-box__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: flex-end;
  align-self: flex-end;
}
@media (max-width: 47.9375rem) {
  .map-box {
    grid-template-columns: minmax(0, 1fr);
  }
  .map-box__map {
    min-height: 16rem;
  }
  .map-box__actions {
    justify-content: flex-start;
    align-self: stretch;
  }
}

/* ------------------------------------------------------------
   BRAND LOGO — Harvest Garden's mark has its own lime field and
   red lettering, so keep it full colour (the template recolours
   logos to cream on dark bands) and size it by height.
   ------------------------------------------------------------ */
.brand img,
.foot-brand img {
  filter: none;
  border-radius: 4px;
}
