: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-box {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-top: 1.5rem;
}
.location-map-iframe {
  flex: 1.3;
}
.location-map-iframe iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}
.location-map-details {
  flex: 1;
  padding: 2rem 2rem 1.5rem;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.location-map-details h3 {
  font-size: 1.25rem;
  color: #ca0000;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.location-map-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 1rem 0 0.4rem;
}
.location-map-details p {
  margin: 0 0 0.4rem;
  color: #444;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.location-map-details p a {
  color: #ca0000;
  text-decoration: none;
  font-weight: 600;
}
.location-map-details p a:hover { text-decoration: underline; }
.location-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.location-hours-list li {
  padding: 0.2rem 0;
  font-size: 0.88rem;
  color: #444;
  border-bottom: 1px solid #eee;
}
.location-hours-list li strong {
  color: #1a1a1a;
  min-width: 95px;
  display: inline-block;
}
.location-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}
.location-map-actions .btn { margin-left: 0 !important; }
@media (max-width: 768px) {
  .location-map-box { flex-direction: column; }
  .location-map-iframe iframe { min-height: 260px; height: 260px; }
  .location-map-details { padding: 1.25rem; }
}
