/* Booking wizard styles */
.step-indicator {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
#booking-wizard .step {
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
}
.step-label { font-size: .85rem; color: var(--fa-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#booking-wizard .step.active { background: linear-gradient(90deg, var(--fa-primary), var(--fa-secondary)); color: #fff; }
.calendar-day {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 auto;
    transition: all 0.2s ease;
}
.calendar-day:hover {
    background-color: #e9ecef;
}
.calendar-day.selected { background-color: var(--fa-primary); color: #fff; }
/* Holiday style */
.calendar-day.holiday {
    background-color: #ffebee;
    color: #d32f2f;
    position: relative;
}
.calendar-day.holiday:hover {
    background-color: #ffcdd2;
}
.calendar-day.holiday::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #d32f2f;
}
.time-slot {
    padding: 8px 12px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}
.time-slot:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}
.time-slot.selected { background-color: var(--fa-primary); color: #fff; border-color: var(--fa-primary); }
.employee-card, .service-card {
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%;
}
.employee-card:hover, .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(2,8,23,.12);
}

/* Wizard compact mode for hero */
.wizard-compact .card { border: 1px solid #dbe7e2; border-radius: 14px; box-shadow: 0 12px 24px rgba(2,8,23,.06); }
.wizard-compact .card-body { padding: .6rem .85rem; }
.wizard-compact .card-title { font-size: 1rem; }
.wizard-compact .step { width: 32px; height: 32px; }
.wizard-compact .step-label { display: none; }
.wizard-compact .wizard-steps { display: none !important; }
.wizard-compact .calendar-day { width: 30px; height: 30px; }
.wizard-compact .table th, .wizard-compact .table td { padding: .25rem; }
.wizard-compact .btn { border-radius: .75rem; }
.wizard-compact .employee-card .rounded-circle { width: 40px !important; height: 40px !important; }
.wizard-compact .service-card h5 { font-size: 1rem; }
.wizard-compact .service-card .card-text { margin-bottom: .5rem; }

/* Brand on outline buttons only inside wizard */
#booking-wizard .btn-outline-primary { border-color: var(--fa-primary); color: var(--fa-primary); }
#booking-wizard .btn-outline-primary:hover { background-color: var(--fa-primary); color: #fff; }
#booking-wizard .service-card.border-primary,
#booking-wizard .employee-card.border-primary {
  border-color: var(--fa-primary) !important;
  box-shadow: 0 0 0 .2rem rgba(45,122,106,.15) !important;
}

/* Form styles to match mint theme */
#booking-wizard .form-control,
#booking-wizard .form-select { border-color:#dbe7e2; border-radius:10px; }
#booking-wizard .form-control:focus,
#booking-wizard .form-select:focus { border-color: var(--fa-primary); box-shadow: 0 0 0 .2rem rgba(45,122,106,.12); }
#booking-wizard .btn-primary,
#booking-wizard .btn-success { background: var(--fa-primary); border:none; border-radius:999px; font-weight:700; }
#booking-wizard .btn-primary:hover,
#booking-wizard .btn-success:hover { filter:brightness(.95); }

/* Accessibility: focus-visible outlines for key interactive blocks */
#booking-wizard .service-card:focus-visible,
#booking-wizard .employee-card:focus-visible,
#booking-wizard .calendar-day.available:focus-visible,
#booking-wizard .time-slot:focus-visible,
#booking-wizard .btn:focus-visible {
  outline: 3px solid var(--fa-primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 .2rem rgba(45,122,106,.15);
}

/* Step indicator via ARIA */
.step[aria-current="step"] { background: linear-gradient(90deg, var(--fa-primary), var(--fa-secondary)); color:#fff; }

/* Calendar day enhancements */
.calendar-day.available:hover { background-color: #e9f5f1; }
.calendar-day[aria-current="date"],
.calendar-day.selected { background-color: var(--fa-primary); color:#fff; }

/* Time slot toggle state */
.time-slot[aria-pressed="true"] { background-color: var(--fa-primary); color:#fff; border-color: var(--fa-primary); }

@media (prefers-reduced-motion: reduce) {
  .employee-card:hover, .service-card:hover { transform: none; }
}
