:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ============================================
   Location Map Section — dish pages
   ============================================ */
.location-map-section {
  padding: var(--sectionPadding);
}

.location-map-section .section__header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.location-map-section .section__description {
  text-align: center;
  margin: 0 auto 2.5rem;
}

.location-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  background: #fff;
}

.location-map {
  flex: 1 1 55%;
  min-height: 260px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.location-info {
  flex: 1 1 45%;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.location-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--headerColor);
  margin: 0 0 0.5rem;
}

.location-info .loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--bodyTextColor);
  margin: 0;
}

.location-info .loc-detail i {
  margin-top: 2px;
  color: var(--primary, #ca0000);
  flex-shrink: 0;
}

.location-info .loc-detail a {
  color: var(--bodyTextColor);
  text-decoration: none;
}

.location-info .loc-detail a:hover {
  text-decoration: underline;
}

.get-directions-btn {
  display: inline-block;
  margin-top: 1.25rem;
  align-self: flex-start;
  background: var(--primary, #ca0000);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.get-directions-btn:hover {
  opacity: 0.85;
}

/* Mobile: stack map above info */
@media (max-width: 768px) {
  .location-card {
    flex-direction: column;
  }

  .location-map,
  .location-map iframe {
    min-height: 220px;
  }

  .location-info {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .get-directions-btn {
    align-self: stretch;
    text-align: center;
  }
}
