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

/* ---------- Map + contact info box (tags/location pages) ---------- */
.map-contact-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.map-contact-map {
  position: relative;
  min-height: 360px;
}

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

.map-contact-info {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2rem);
}

.map-contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.map-contact-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 1.25rem 0 0.6rem;
}

.map-contact-details {
  display: grid;
  gap: 0.65rem;
}

.map-contact-details li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.map-contact-details li i {
  color: var(--chili-dark);
  font-size: 1.1rem;
}

.map-contact-details a {
  color: var(--ink);
}

.map-contact-hours {
  display: grid;
  gap: 0.35rem;
}

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

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

.map-contact-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

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

  .map-contact-map {
    min-height: 300px;
  }

  .map-contact-actions {
    justify-content: stretch;
  }

  .map-contact-actions .btn-small {
    flex: 1;
    text-align: center;
  }
}

/* ---------- location / map box (city-cuisine landing pages) ---------- */

.location-box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  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;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}

.location-box__info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  color: var(--basil);
}

.location-box__details {
  display: grid;
  gap: 1rem;
  margin-bottom: auto;
}

.location-box__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--ink);
}

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

.location-box__hours span:last-child {
  line-height: 1.7;
  color: var(--muted);
}

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

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

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

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

/* ---------- dish page: "Available For" tag list ---------- */
.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.dish-tags li {
  background: var(--sand);
  color: var(--basil);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-xl);
}

/* ---------- dish page: FAQ section ---------- */
.faq-container {
  padding-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--sand);
  border-radius: var(--r-xl);
  padding: 1.3rem 1.6rem;
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted, inherit);
  line-height: 1.6;
}

/* ---------- dish page: map / location box ---------- */
.dish-map-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--basil);
}

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

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

.dish-map-info {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

.dish-map-info h3 {
  font-size: 1.3rem;
  margin: 0;
}

.dish-map-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dish-map-details li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.dish-map-details li a {
  color: #fff;
  font-weight: 600;
}

.dish-map-details li i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dish-map-directions {
  align-self: flex-start;
}

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

  .dish-map-frame {
    min-height: 300px;
  }
}
