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

/* ---------- Find Us / Get Directions box (tags delivery pages) ---------- */
.find-us-container {
  padding-top: 0;
}

.find-us-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--sand);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.find-us-map.map-container {
  padding-bottom: 0;
  min-height: 320px;
}

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

.find-us-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.find-us-details h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.find-us-address,
.find-us-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.find-us-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

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

  .find-us-map.map-container {
    min-height: 260px;
    padding-bottom: 62%;
  }

  .find-us-btn-group {
    justify-content: flex-start;
  }
}
