.booking-service-decision-aid,
.booking-platform-value,
.booking-next-preview {
  border: 1px solid color-mix(in srgb, var(--pink) 18%, var(--gold) 18%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--pink) 8%, var(--surface)), color-mix(in srgb, var(--gold) 7%, var(--surface))),
    var(--surface);
}

.booking-service-decision-aid,
.booking-platform-value {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
}

.booking-service-decision-head,
.booking-platform-value-head,
.booking-next-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.booking-service-decision-head span,
.booking-platform-value-head span,
.booking-next-preview-head span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-service-decision-head strong,
.booking-platform-value-head strong,
.booking-next-preview-head strong {
  color: var(--text);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}

.booking-service-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.booking-service-decision-grid article {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 9px;
  row-gap: 3px;
  min-width: 0;
  padding: 11px;
  border: 1px solid color-mix(in srgb, var(--pink) 14%, var(--line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface) 92%, var(--pink) 4%);
}

.booking-service-decision-grid svg,
.booking-platform-value-grid svg {
  width: 17px;
  height: 17px;
  color: color-mix(in srgb, var(--pink) 58%, var(--gold));
}

.booking-service-decision-grid span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.booking-service-decision-grid strong {
  grid-column: 2;
  color: var(--text);
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.25;
}

.booking-service-decision-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.booking-platform-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.booking-platform-value-grid article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 11px;
  border: 1px solid color-mix(in srgb, var(--gold) 18%, var(--line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface) 91%, var(--gold) 5%);
}

.booking-platform-value-grid strong {
  display: block;
  color: var(--text);
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.2;
}

.booking-platform-value-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.36;
}

.booking-next-preview {
  display: grid;
  gap: 12px;
  margin: 14px 0;
  padding: 13px;
}

.booking-next-preview ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-next-preview li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.booking-next-preview li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--pink) 42%, var(--surface)), color-mix(in srgb, var(--gold) 38%, var(--surface)));
  color: var(--text);
  font-size: .75rem;
}

.booking-next-preview strong {
  display: block;
  color: var(--text);
  font-size: .82rem;
  font-weight: 500;
}

.booking-next-preview p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.35;
}

body[data-theme="dark"] .booking-service-decision-aid,
body[data-theme="dark"] .booking-platform-value,
body[data-theme="dark"] .booking-next-preview {
  border-color: rgba(255, 181, 218, .16);
  background:
    linear-gradient(135deg, rgba(68, 25, 50, .82), rgba(57, 42, 20, .72)),
    #1b0d18;
}

body[data-theme="dark"] .booking-service-decision-grid article,
body[data-theme="dark"] .booking-platform-value-grid article {
  border-color: rgba(255, 181, 218, .13);
  background: rgba(48, 19, 39, .7);
}

body[data-theme="dark"] .booking-service-decision-head strong,
body[data-theme="dark"] .booking-platform-value-head strong,
body[data-theme="dark"] .booking-next-preview-head strong,
body[data-theme="dark"] .booking-service-decision-grid strong,
body[data-theme="dark"] .booking-platform-value-grid strong,
body[data-theme="dark"] .booking-next-preview strong {
  color: #fff7fb;
}

body[data-theme="dark"] .booking-service-decision-head span,
body[data-theme="dark"] .booking-platform-value-head span,
body[data-theme="dark"] .booking-next-preview-head span,
body[data-theme="dark"] .booking-service-decision-grid span,
body[data-theme="dark"] .booking-service-decision-grid p,
body[data-theme="dark"] .booking-platform-value-grid p,
body[data-theme="dark"] .booking-next-preview p {
  color: #e5c7d7;
}

@media (max-width: 760px) {
  .booking-service-decision-grid,
  .booking-platform-value-grid {
    grid-template-columns: 1fr;
  }

  .booking-service-decision-head,
  .booking-platform-value-head,
  .booking-next-preview-head {
    display: grid;
  }

  .booking-service-decision-head strong,
  .booking-platform-value-head strong,
  .booking-next-preview-head strong {
    text-align: left;
  }
}
