.etalasio-booking-widget { font-family: var(--font-primary, 'Inter', sans-serif); padding: 60px 0; }
.calendar-wrapper { display: flex; gap: 30px; margin-top: 30px; }
.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-nav button { background: none; border: 1px solid var(--def-gray, #E5E7EB); padding: 5px 15px; border-radius: 4px; cursor: pointer; color: inherit; }
.calendar-nav button:hover { background: var(--def-gray-light, #F3F4F6); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; margin-bottom: 30px; }
.cal-day-header { font-weight: 600; font-size: 0.85rem; color: var(--def-gray-dark, #6B7280); margin-bottom: 10px; }
.cal-cell { padding: 15px 5px; border: 1px solid var(--def-gray, #E5E7EB); border-radius: 4px; cursor: pointer; transition: all 0.2s; position: relative; }
.cal-cell:hover:not(.disabled) { border-color: var(--brand-violet, #5a2e98); }
.cal-cell.disabled { background: var(--def-gray-light, #F3F4F6); color: #aaa; cursor: not-allowed; border-color: transparent; }
.cal-cell.selected { background: var(--brand-violet, #5a2e98); color: white; border-color: var(--brand-violet, #5a2e98); }

.time-slots { border: 1px solid var(--def-gray, #E5E7EB); border-radius: 4px; padding: 20px; background: var(--def-white, #fff); }
.slot-btn { display: block; width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid var(--brand-violet, #5a2e98); color: var(--brand-violet, #5a2e98); background: var(--def-white, #fff); border-radius: 4px; cursor: pointer; transition: all 0.2s; text-align: center; font-weight: 600; }
.slot-btn:hover { background: var(--brand-violet-light, #f4effc); }
.slot-btn.selected { background: var(--brand-violet, #5a2e98); color: white; }

.booking-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; }
.booking-modal.active { display: flex; }
.modal-content { background: var(--def-white, #fff); padding: 40px; border-radius: 8px; max-width: 400px; width: 90%; text-align: center; }
.modal-icon { width: 60px; height: 60px; background: #10b981; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; }

.booking-form { display: none; }
.booking-form.active { display: block; }

.calendar-loader { display: none; text-align: center; padding: 20px; color: var(--brand-violet, #5a2e98); font-weight: 600; }
.calendar-loader.active { display: block; }

@media (max-width: 768px) {
    .calendar-wrapper { flex-direction: column; }
}
