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

/* Google Maps Location Section Styles */
.location__container {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.location__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.location__map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.location__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.location__info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--headerColor);
}

.location__address,
.location__phone {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--bodyTextColor);
  line-height: 1.6;
}

.location__address i,
.location__phone i {
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  color: var(--secondary);
}

.location__phone a {
  color: var(--bodyTextColor);
  text-decoration: none;
}

.location__phone a:hover {
  color: var(--secondary);
}

.location__hours {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.location__hours h4 {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--headerColor);
}

.location__hours h4 i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.location__hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location__hours li {
  padding: 0.5rem 0;
  color: var(--bodyTextColor);
}

.location__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.location__actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-directions {
  background-color: var(--secondary);
  color: white;
}

.btn-directions:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-order {
  background-color: var(--headerColor);
  color: white;
}

.btn-order:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .location__wrapper {
    grid-template-columns: 1fr;
  }

  .location__actions {
    flex-direction: column;
  }

  .location__map iframe {
    height: 300px;
  }
}
