: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);
}

/* ===== Dish page: Location / Map box (boxed layout: map left, details right) ===== */
.dish-location-section {
  text-align: center;
}
.dish-map-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 2rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #fff;
  text-align: left;
}
.dish-map-box .map-frame {
  flex: 1 1 55%;
  min-width: 300px;
  min-height: 380px;
  line-height: 0;
}
.dish-map-box .map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.dish-map-box .map-info {
  flex: 1 1 40%;
  min-width: 280px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dish-map-box .map-info h3 {
  margin: 0 0 1.25rem;
  color: var(--headerColor);
}
.dish-map-box .map-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.dish-map-box .map-info li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--bodyTextColor);
  line-height: 1.45em;
}
.dish-map-box .map-info li i {
  color: #ca0000;
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.dish-map-box .map-info a {
  color: inherit;
}
.dish-map-box .get-directions-btn {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .dish-map-box {
    flex-direction: column;
  }
  .dish-map-box .map-frame {
    min-height: 300px;
  }
  .dish-map-box .map-frame iframe {
    min-height: 300px;
  }
  .dish-map-box .map-info {
    padding: 1.75rem;
  }
}
