:root {
  /* Primary Brand Colors (Wasabi Green from Logo) */
  --primary: #9ea53d;
  --primaryLight: #b8c25a;
  --primaryDark: #7a8230;
  --secondary: #9ea53d;
  --secondaryLight: #b8c25a;

  /* CTA Colors */
  --cta: #d64545;
  --ctaDark: #b83a3a;

  /* Text Colors */
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;

  /* Typography */
  --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 Box Styles for Dish Pages */
.location-section {
  padding: 3rem 1rem;
  background-color: #f8f9fa;
}

.location-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--headerColor);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.location-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map {
  flex: 1 1 60%;
  min-width: 300px;
  min-height: 350px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

.location-info {
  flex: 1 1 35%;
  min-width: 280px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-size: 1.5rem;
  color: var(--headerColor);
  margin: 0 0 1.5rem 0;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--bodyTextColor);
}

.location-info-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.location-info-item a {
  color: var(--bodyTextColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-info-item a:hover {
  color: var(--primary);
}

.location-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.location-hours h4 {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  color: var(--headerColor);
}

.location-hours p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--bodyTextColor);
}

.directions-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.directions-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.directions-btn i {
  margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
  }

  .location-map {
    min-height: 300px;
  }

  .location-info {
    padding: 1.5rem;
  }

  .directions-btn {
    width: 100%;
  }
}

/* Location Section for Index Page */
.location__section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 4rem 1rem;
}

.location__wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.location__map {
  flex: 1 1 55%;
  min-width: 320px;
  min-height: 350px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

.location__info {
  flex: 1 1 40%;
  min-width: 300px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.location__info h3 {
  font-size: 1.75rem;
  color: var(--headerColor);
  margin: 0 0 1.25rem 0;
  font-weight: 700;
}

.location__info address {
  font-style: normal;
  margin-bottom: 1rem;
}

.location__info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.75rem 0;
  color: var(--bodyTextColor);
  font-size: 1rem;
  line-height: 1.5;
}

.location__info p i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.location__info a {
  color: var(--bodyTextColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location__info a:hover {
  color: var(--primary);
}

.location__hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.location__hours h4 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  color: var(--headerColor);
  font-weight: 600;
}

.location__hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location__hours li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--bodyTextColor);
}

.location__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.location__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.location__buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.location__buttons .btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Location Section Mobile Responsive */
@media (max-width: 768px) {
  .location__wrapper {
    flex-direction: column;
  }

  .location__map {
    min-height: 280px;
  }

  .location__info {
    padding: 1.75rem;
  }

  .location__info h3 {
    font-size: 1.5rem;
  }

  .location__buttons {
    flex-direction: column;
  }

  .location__buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .location__section {
    padding: 3rem 0.75rem;
  }

  .location__info {
    padding: 1.5rem;
  }

  .location__info p {
    font-size: 0.95rem;
  }
}

/* Delivery Page Styles */
.delivery-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.delivery-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--bodyTextColor);
  font-size: 1rem;
}

.delivery-features li i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Delivery Areas Grid */
.delivery-areas-container {
  background: #f8f9fa;
}

.delivery-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.delivery-area-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.delivery-area-card h3 {
  color: var(--headerColor);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.delivery-area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1rem;
}

.delivery-area-card li {
  padding: 0.4rem 0;
  color: var(--bodyTextColor);
  font-size: 0.95rem;
}

.delivery-area-card a {
  color: var(--bodyTextColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.delivery-area-card a:hover {
  color: var(--primary);
}

/* Delivery Items Grid */
.delivery-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.delivery-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.delivery-item h3 {
  color: var(--headerColor);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.delivery-item p {
  color: var(--bodyTextColor);
  font-size: 0.9rem;
  margin: 0;
}

/* Hours Grid */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

.hours-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.hours-item h3 {
  color: var(--headerColor);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.hours-item p {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* How to Order Section */
.how-to-order-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
}

.how-to-order-container .section__header {
  color: #fff;
}

.how-to-order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.order-step {
  text-align: center;
  padding: 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.order-step h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
}

.order-step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.order-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* CTA Container */
.cta__container {
  background: #f8f9fa;
  text-align: center;
}

/* Mobile Responsive for Delivery Page */
@media (max-width: 768px) {
  .delivery-area-card ul {
    columns: 1;
  }

  .how-to-order-steps {
    grid-template-columns: 1fr;
  }

  .order-step {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .delivery-area-card {
    padding: 1.5rem;
  }

  .delivery-items-grid {
    grid-template-columns: 1fr;
  }
}
