/* ============================================================
   CUSTOM — Per-store overrides for Template TF
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   ============================================================ */

/* ---------- dish highlight cards (tag pages) ---------- */

.dish-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.dish-highlight-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dish-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dish-highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.dish-highlight-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- location / map box (city+cuisine landing pages, dish pages) ---------- */

.dish-map-container .section__header {
  text-align: left;
  margin-bottom: 1.25rem;
}

.location-box {
  display: grid;
  grid-template-columns: 1.15fr 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;
}

.location-box__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-box__info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.location-box__info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}

.location-box__detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.location-box__detail p,
.location-box__detail a {
  color: var(--ink);
  font-weight: 600;
}

.location-box__hours {
  display: grid;
  gap: 0.35rem;
}

.location-box__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.location-box__hours li:last-child {
  border-bottom: none;
}

.location-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (max-width: 800px) {
  .location-box {
    grid-template-columns: 1fr;
  }

  .location-box__map {
    min-height: 320px;
  }

  .location-box__actions {
    justify-content: flex-start;
  }
}
