body {
  background-color: var(--color-bg);
}

.delivery-hero {
  padding-top: var(--space-16);
}

.delivery-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.delivery-hero__content {
  max-width: 34rem;
}

.delivery-hero__highlights {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.delivery-hero__highlights li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

.delivery-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.delivery-hero__figure,
.delivery-coverage__figure,
.delivery-stories__figure {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  box-shadow: var(--shadow-lg);
}

.delivery-hero__figure figcaption,
.delivery-coverage__figure figcaption,
.delivery-stories__figure figcaption {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.delivery-section-header {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.delivery-list {
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.delivery-list li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

.delivery-list strong {
  color: var(--color-text);
}

.delivery-timelines {
  display: grid;
  gap: var(--space-4);
}

.delivery-timeline__item dt {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.delivery-timeline__item dd {
  margin: 0;
  color: var(--color-text-muted);
}

.delivery-charge__price {
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.delivery-steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-4);
}

.delivery-step {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.delivery-step h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.delivery-faq__grid {
  display: grid;
  gap: var(--space-6);
}

.delivery-faq__column {
  display: grid;
  gap: var(--space-3);
}

.delivery-faq__item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-sm);
}

.delivery-faq__item summary {
  cursor: pointer;
  font-weight: 500;
}

.delivery-faq__item p {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}

.delivery-support__card,
.delivery-processing__summary,
.delivery-packaging__note,
.delivery-partners__assurance,
.delivery-story {
  height: 100%;
}

@media (max-width: 900px) {
  .delivery-hero {
    padding-top: var(--space-12);
  }

  .delivery-hero__grid {
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .delivery-hero__content {
    max-width: 100%;
  }

  .delivery-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mt-4.flex.gap-sm,
  .mt-4.flex.gap-md {
    flex-direction: column;
    align-items: stretch;
  }

  .mt-4.flex.gap-sm .button,
  .mt-4.flex.gap-md .button {
    width: 100%;
  }
}
