.booking-card,
.booking-card-featured {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(71, 48, 98, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

.booking-card:hover,
.booking-card:focus-within {
  border-color: #b995dc;
  background: #fcf9fe;
  box-shadow: 0 16px 38px rgba(91, 58, 130, .15);
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .booking-card { transition: none; }
}
