: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 Section Styles */
.location__container {
  padding: 4rem 1rem;
}

.location__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 2rem;
}

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

.location__map {
  min-height: 300px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.location__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location__item i {
  font-size: 1.25rem;
  color: #ca0000;
  min-width: 24px;
  margin-top: 0.25rem;
}

.location__item strong {
  display: block;
  font-weight: 600;
  color: var(--headerColor);
  margin-bottom: 0.25rem;
}

.location__item p {
  margin: 0;
  color: var(--bodyTextColor);
  line-height: 1.5;
}

.location__item a {
  color: #ca0000;
  text-decoration: none;
  font-weight: 500;
}

.location__item a:hover {
  text-decoration: underline;
}

.location__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.location__buttons .btn-outline {
  background: transparent;
  border: 2px solid #ca0000;
  color: #ca0000;
}

.location__buttons .btn-outline:hover {
  background: #ca0000;
  color: #fff;
}

/* Map Contact Wrapper Styles */
.map-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .map-contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.map-contact-wrapper .map-container {
  min-height: 300px;
}

.map-contact-wrapper .map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 8px 0 0 8px;
}

@media (max-width: 767px) {
  .map-contact-wrapper .map-container iframe {
    border-radius: 8px 8px 0 0;
  }
}

.contact-details-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headerColor);
  margin: 0 0 1.5rem 0;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-list li i {
  font-size: 1.25rem;
  color: #ca0000;
  min-width: 24px;
  margin-top: 0.25rem;
}

.contact-info-list li div {
  color: var(--bodyTextColor);
  line-height: 1.5;
}

.contact-info-list li div strong {
  display: block;
  font-weight: 600;
  color: var(--headerColor);
  margin-bottom: 0.25rem;
}

.contact-info-list li a {
  color: #ca0000;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-list li a:hover {
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-buttons .btn-directions {
  background: transparent;
  border: 2px solid #ca0000;
  color: #ca0000;
}

.contact-buttons .btn-directions:hover {
  background: #ca0000;
  color: #fff;
}

.contact-buttons .btn-order {
  background: #ca0000;
  border: 2px solid #ca0000;
  color: #fff;
}

.contact-buttons .btn-order:hover {
  background: #a00000;
  border-color: #a00000;
}
