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

/* ---------- logo plate ----------
   logo.webp is artwork on a solid black field, not a transparent
   PNG. The template's default white plate therefore framed a black
   rectangle in the header and floated a white box on the dark
   footer. Matching the plate to the artwork's own black makes the
   lockup read as one continuous rounded shape. */

.brand img {
  background: #000;
}

.foot-brand img {
  background: #000;
  padding: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* ---------- location box (melita-bar-and-grill-restaurant.html) ----------
   Map on the left, address/contact on the right, with Get Directions +
   Order Online actions pinned to the bottom-right corner of the box. */

.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: 1rem;
}

.location-box__map {
  position: relative;
  min-height: 420px;
  background: var(--sand);
}

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

.location-box__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.location-box__info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.location-box__info address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.location-box__meta {
  display: grid;
  gap: 0.65rem;
}

.location-box__meta li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.98rem;
}

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

.location-box__meta a:hover {
  color: var(--chili);
}

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

.location-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

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

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

  .location-box__actions {
    justify-content: stretch;
  }

  .location-box__actions .btn,
  .location-box__actions .btn-line {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Contact page — heading for the visit/contact-details column,
   sized to match the same scale used by .faq-intro h2 */
.contact-sec h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  margin: 0.9rem 0 1.4rem;
}

/* ---------- quick-facts cards (tags/melita-restaurant-delivery.html) ---------- */

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.quick-fact-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-fact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.quick-fact-card i {
  font-size: 1.7rem;
  color: var(--chili);
  margin-bottom: 0.85rem;
  display: inline-block;
}

.quick-fact-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.quick-fact-card p {
  color: var(--muted);
  font-size: 0.92rem;
}
