: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: Visit Us / Map box ---- */
.dish-location-section {
  padding: var(--sectionPadding);
}
.dish-location-section .section__header {
  text-align: center;
  margin-bottom: 2rem;
}
.dish-location-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.dish-location-map {
  flex: 1 1 60%;
  min-height: 360px;
  min-width: 280px;
}
.dish-location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.dish-location-info {
  flex: 1 1 40%;
  min-width: 260px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  color: var(--bodyTextColor);
}
.dish-location-info h3 {
  margin: 0 0 0.5rem;
  color: var(--headerColor);
}
.dish-location-info h4 {
  margin: 0.75rem 0 0.25rem;
  color: var(--headerColor);
  font-size: 1rem;
}
.dish-location-info p,
.dish-location-info ul {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.dish-location-info ul {
  list-style: none;
  padding: 0;
}
.dish-location-info ul li {
  padding: 0.15rem 0;
}
.dish-location-info a {
  color: #ca0000;
  text-decoration: none;
}
.dish-location-info a:hover {
  text-decoration: underline;
}
.dish-location-info .directions-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: #ca0000;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: fit-content;
  text-align: center;
  transition: background 0.2s ease;
}
.dish-location-info .directions-btn:hover {
  background: #a30000;
  text-decoration: none;
}
@media (max-width: 768px) {
  .dish-location-box {
    flex-direction: column;
  }
  .dish-location-map {
    min-height: 280px;
  }
  .dish-location-map iframe {
    min-height: 280px;
  }
  .dish-location-info {
    padding: 1.5rem;
  }
  .dish-location-info .directions-btn {
    width: 100%;
  }
}
