#demo-form .booking-feedback { padding:16px 18px; border:1px solid #b68942; border-radius:14px; background:#faf4e7; color:#30271d; line-height:1.5; scroll-margin:20px; }
#demo-form .booking-feedback:empty { display:none; }
#demo-form[aria-busy="true"] .booking-feedback::before { content:""; display:inline-block; width:18px; height:18px; margin-right:10px; vertical-align:middle; border:2px solid #dac8a7; border-top-color:#856328; border-radius:50%; animation:booking-spin .8s linear infinite; }
#demo-form .booking-feedback[data-state="error"] { background:#fff0eb; border-color:#a44b35; color:#732d1e; }
#demo-form .booking-feedback[data-state="success"] { background:#eef5ed; border-color:#6e8862; color:#294422; }
@keyframes booking-spin { to { transform:rotate(360deg); } }
@media(prefers-reduced-motion:reduce) { #demo-form[aria-busy="true"] .booking-feedback::before { animation:none; } }
