/* ============================================================
   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 / map section ---------- */
.dish-map-container {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.dish-map-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dish-map-frame {
  position: relative;
  flex: 1 1 380px;
  min-height: 320px;
}

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

.dish-map-info {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.dish-map-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--ink);
}

.dish-map-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.5;
}

.dish-map-detail i {
  color: var(--chili);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.dish-map-detail a {
  color: inherit;
}

.dish-map-detail a:hover {
  color: var(--chili);
}

.dish-map-info .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.dish-map-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.dish-map-actions .btn {
  align-self: auto;
  margin-top: 0;
}

@media (max-width: 760px) {
  .dish-map-box {
    flex-direction: column;
  }
  .dish-map-frame {
    min-height: 260px;
  }
  .dish-map-actions {
    justify-content: stretch;
  }
  .dish-map-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* ---------- hero tagline emphasis ----------
   The brand pink is tuned for white backgrounds; over the hero
   photograph it loses legibility. Use a light blush tint of the
   same hue instead, with a soft shadow so it reads on any frame
   of the background image. */
.hero-full__tag em {
  color: #ffc9e7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
