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

/* ---------- home: location map box (map left, details right) ---------- */
.home-map {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: var(--sand);
}

.home-map__box {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.home-map__map {
  position: relative;
  min-height: 420px;
  background: var(--sand-2);
}

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

.home-map__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.home-map__info h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
}

.home-map__list {
  display: grid;
  gap: 1rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.home-map__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  line-height: 1.45;
}

.home-map__list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-map__list a {
  font-weight: 600;
  color: var(--ink);
}

.home-map__ico {
  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);
}

.home-map__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

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

  .home-map__map {
    min-height: 300px;
  }

  .home-map__actions {
    justify-content: stretch;
  }

  .home-map__actions a {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- home FAQ: internal links to tags/ pages ---------- */
.qa .qa-body a {
  color: var(--chili-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--chili) 40%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.qa .qa-body a:hover,
.qa .qa-body a:focus-visible {
  color: var(--chili);
  text-decoration-color: currentColor;
}

.qa .qa-body p + ul,
.qa .qa-body ul + p {
  margin-top: 0.75rem;
}

.qa .qa-body ul.qa-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.1rem;
}

@media (max-width: 480px) {
  .qa .qa-body ul.qa-areas {
    grid-template-columns: 1fr;
  }
}

/* ---------- header logo: Ha Long Bay script logo is taller than the template mark — size by height ---------- */
.brand img {
  width: auto;
  height: 72px;
}

@media (max-width: 900px) {
  .brand img {
    height: 58px;
  }
}

/* ---------- place pages: featured dish cards get a uniform photo ---------- */
.related-dish-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
