.order-way {
  background-color: var(--color-cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.order-way .container {
  width: 100%;
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.order-way .container-inner {
  width: 100%;
  max-width: var(--container-inner);
  margin-inline: auto;
}

.order-way__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.order-way__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 0.75rem;
}

.order-way__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto 1rem;
  background-color: var(--color-red);
}

.order-way__intro {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

.order-way__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 791px));
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.order-option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 791px;
  height: 428px;
  background-color: var(--color-black);
}

.order-option__media {
  overflow: hidden;
  min-height: 0;
}

.order-option__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.order-option__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background-color: var(--color-black);
}

.order-option__icon {
  display: block;
  width: auto;
  max-width: 101px;
  height: auto;
  max-height: 68px;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.order-option__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 0.5rem;
}

.order-option__text {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--color-white);
  margin: 0 0 1.5rem;
}

.order-option__panel .btn {
  min-width: 200px;
  padding: 0.875rem 2rem;
}

.order-way__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: 0;
}

.order-way__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  line-height: 1.3;
  color: var(--color-black);
}

.order-way__feature:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.order-way__feature img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .order-way__cards {
    grid-template-columns: minmax(0, 791px);
  }

  .order-option {
    height: auto;
    aspect-ratio: 791 / 428;
  }
}

@media (max-width: 767px) {
  .order-way__cards {
    grid-template-columns: 1fr;
  }

  .order-option {
    grid-template-columns: 1fr;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .order-option__media {
    aspect-ratio: 664 / 856;
  }

  .order-way__feature {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 0;
    border-right: none !important;
  }

  .order-way__feature:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
  }
}
