/* ============================================================
   CUSTOM — Per-Store Overrides
   Keep this file under 30 lines. Only store-specific tweaks go here.
   Do NOT add layout, grid, or structural CSS — that belongs in style.css.
   Do NOT add theme design tokens — that belongs in theme.css.

   Examples of what belongs here:
   - A promotional banner color unique to this store
   - A section hidden for this location (display: none)
   - A logo size tweak specific to this store
   ============================================================ */

/* Delivery page: H4 sub-heading inside the delivery text block */
.gs-delivery-text h4 {
  font-family: var(--gs-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-dark);
  margin-bottom: 0.75rem;
}

/* Map + contact box: pin the action buttons to the bottom-right corner */
.gs-location-details .gs-location-buttons,
.gs-map-info .gs-map-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: auto;
}

@media (max-width: 768px) {
  .gs-location-details .gs-location-buttons,
  .gs-map-info .gs-map-buttons {
    justify-content: center;
  }
}
