:root {
  --primary: #daa520;
  --primaryLight: #1a1a1a;
  --secondary: #daa520;
  --secondaryLight: #f5e189;
  --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);
}

/* Boxed Map + Visit-Us component (shared by all tags/dishes/ pages) */
.map-info-container {
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.map-info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.map-info-map {
  position: relative;
  min-height: 360px;
}

.map-info-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-info-details {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafafa;
}

.map-info-details h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  margin: 0 0 1rem 0;
  color: var(--headerColor);
}

.map-info-details p {
  margin: 0 0 0.65rem 0;
  color: var(--bodyTextColor);
  line-height: 1.55;
}

.map-info-details p strong {
  color: var(--headerColor);
  display: inline-block;
  min-width: 90px;
}

.map-info-details a {
  color: #ca0000;
  text-decoration: none;
}

.map-info-details a:hover {
  text-decoration: underline;
}

.map-info-details .directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background-color: #ca0000;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.map-info-details .directions-btn:hover {
  background-color: #a30000;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .map-info-box {
    grid-template-columns: 1fr;
  }
  .map-info-map {
    min-height: 280px;
  }
}
