: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 and Contact Section         */
/* ============================================ */

.location-map-container {
  padding: 4rem 1rem;
  background: #f9f9f9;
}

.map-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.map-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 450px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.contact-tagline {
  color: var(--primaryLight);
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primaryLight);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--headerColor);
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-item p {
  margin: 0;
  color: var(--bodyTextColor);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--bodyTextColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primaryLight);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

@media (min-width: 480px) {
  .contact-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.contact-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.contact-buttons .btn i {
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primaryLight);
  color: var(--primaryLight);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primaryLight);
  color: #fff;
}

/* Delivery features list styling */
.delivery-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.delivery-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--bodyTextColor);
  font-size: 1rem;
}

.delivery-features li i {
  color: var(--primaryLight);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Delivery areas grid */
.delivery-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

.delivery-area-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.delivery-area-card h3 {
  color: var(--headerColor);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primaryLight);
}

.delivery-area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-area-card ul li {
  padding: 0.5rem 0;
  color: var(--bodyTextColor);
  position: relative;
  padding-left: 1.5rem;
}

.delivery-area-card ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primaryLight);
  font-weight: bold;
}

.delivery-area-card ul li a {
  color: var(--primaryLight);
  text-decoration: none;
  transition: color 0.3s ease;
}

.delivery-area-card ul li a:hover {
  color: var(--headerColor);
  text-decoration: underline;
}

/* How to order steps */
.how-to-order-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .how-to-order-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .how-to-order-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-step {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primaryLight);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.order-step h3 {
  color: var(--headerColor);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.order-step p {
  color: var(--bodyTextColor);
  line-height: 1.6;
  margin: 0;
}

.order-step a {
  color: var(--primaryLight);
  text-decoration: none;
  font-weight: 600;
}

.order-step a:hover {
  text-decoration: underline;
}

.order-cta {
  text-align: center;
  margin-top: 2rem;
}
