/* ============================================================
   CUSTOM — Per-store overrides for Template TF
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   ============================================================ */

/* ---------- popular dishes list (city/cuisine landing pages) ---------- */
.popular-dishes-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.popular-dishes-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.popular-dishes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--chili);
}

/* ---------- location & map box (city/cuisine landing pages) ---------- */
.location-box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2rem;
}

.location-map-frame {
  position: relative;
  min-height: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.location-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.location-address,
.location-phone {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.location-address .ic,
.location-phone .ic {
  flex: none;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--chili-soft);
  color: var(--chili-dark);
  font-size: 0.95rem;
}

.location-phone a {
  color: var(--ink);
  font-weight: 700;
}

.location-hours {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.3rem;
  margin-top: 1rem;
}

.location-hours h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.location-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.location-hours li:last-child {
  border-bottom: none;
}

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

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

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

  .location-actions {
    justify-content: flex-start;
  }
}

/* ---------- contact page: reservations-by-phone note ---------- */
.lede-note {
  max-width: 38rem;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-left: 3px solid var(--chili);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--chili-soft);
  color: var(--ink);
  font-size: 0.98rem;
}

.lede-note strong {
  font-weight: 700;
}

.lede-note a {
  color: var(--chili-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lede-note a:hover {
  color: var(--chili);
}
