.order-page main {
  padding-top: 5rem;
}

.order-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(161, 86, 240, 0.12), rgba(247, 183, 213, 0.18));
  position: relative;
  overflow: hidden;
}

.order-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% -10%, rgba(193, 132, 255, 0.3), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.3), transparent 50%);
  pointer-events: none;
}

.order-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 3vw + 1.2rem, 3.5rem);
  margin-bottom: 1.5rem;
}

.order-hero p {
  max-width: 52ch;
  color: var(--color-muted);
}

.order-hours {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.order-tools {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.order-tools input,
.order-tools select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(161, 86, 240, 0.2);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 3px rgba(161, 86, 240, 0.08);
}

.order-tools__filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-button {
  flex: 1;
  min-width: 90px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(161, 86, 240, 0.2);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus {
  background: linear-gradient(135deg, var(--color-primary), #c88cff);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(161, 86, 240, 0.22);
  color: #fff;
}

.service-menu {
  padding: 4rem 0;
}

.service-group {
  margin-bottom: 3.5rem;
}

.service-group__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-group__header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
}

.service-group__header p {
  color: var(--color-muted);
  max-width: 62ch;
}

.service-list {
  display: grid;
  gap: 1.5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  background: var(--gradient-card);
  border: 1px solid rgba(161, 86, 240, 0.18);
  box-shadow: var(--shadow-soft);
  align-items: center;
  backdrop-filter: blur(6px);
}

.service-item h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.service-item p {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
}

.service-item ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.service-item__meta {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

.service-item__price {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-primary-dark);
}

.service-item__add {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--color-primary), #c88cff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(161, 86, 240, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item__add:hover,
.service-item__add:focus {
  transform: translateY(-1px);
  box-shadow: 0 24px 42px rgba(161, 86, 240, 0.3);
}

.cart {
  padding: 4rem 0 6rem;
  background: rgba(249, 245, 255, 0.65);
}

.cart .container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cart__summary {
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(161, 86, 240, 0.18);
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
}

.cart__note {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.cart__note--payment,
.cart__note--cms {
  margin-bottom: 1.25rem;
}

.cart__integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.cart__integrations[hidden] {
  display: none;
}

.button--stripe {
  background: linear-gradient(135deg, #635bff, #7c3aed);
  box-shadow: 0 18px 34px rgba(99, 91, 255, 0.28);
  color: #fff;
}

.cart__integrations [hidden] {
  display: none !important;
}

.cart__items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.cart__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart__item-title {
  font-weight: 600;
}

.cart__item-meta {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.cart__remove {
  border: none;
  background: none;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
}

.cart__totals {
  display: grid;
  gap: 0.75rem;
  font-weight: 600;
}

.cart__totals div {
  display: flex;
  justify-content: space-between;
}

.cart__form {
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(161, 86, 240, 0.18);
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  border: 1px solid rgba(161, 86, 240, 0.24);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.form-field textarea {
  resize: vertical;
}

.form-field--textarea textarea {
  min-height: 140px;
}

.cart__disclaimer,
.form-footnote {
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 720px) {
  .service-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .service-item__meta {
    width: 100%;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 540px) {
  .order-tools__filters {
    justify-content: center;
  }

  .filter-button {
    flex: none;
  }
}
