/* Booking Module Styles */

/* Step indicators */
.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.step-indicator.active {
    opacity: 1;
}
.step-indicator.done {
    opacity: 0.7;
}
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e91e8c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}
.step-label {
    font-size: 12px;
    white-space: nowrap;
}
.step-line {
    flex: 1;
    height: 2px;
    background-color: #e5e7eb;
    min-width: 40px;
    margin-top: 16px;
}

/* Buttons */
.btn-booking-primary {
    background-color: #e91e8c;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}
.btn-booking-primary:hover {
    background-color: #d11a7d;
}
.btn-booking-primary:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}
.btn-booking-secondary {
    background-color: white;
    color: #e91e8c;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #e91e8c;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-booking-secondary:hover {
    background-color: #fdf2f8;
}

/* Inputs */
.booking-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.booking-input:focus {
    outline: none;
    border-color: #e91e8c;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

/* Prestation card */
.prestation-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}
.prestation-card:hover {
    border-color: #f9a8d4;
}
.prestation-card.selected {
    border-color: #e91e8c;
    background-color: #fdf2f8;
}
.prestation-card .prestation-info {
    flex: 1;
}
.prestation-card .prestation-name {
    font-weight: 600;
    font-size: 15px;
}
.prestation-card .prestation-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}
.prestation-card .prestation-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
}
.prestation-card .prestation-price {
    font-weight: 700;
    font-size: 16px;
    color: #e91e8c;
    white-space: nowrap;
}
.prestation-card .prestation-check {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.prestation-card.selected .prestation-check {
    background-color: #e91e8c;
    border-color: #e91e8c;
    color: white;
}

/* Prestation image (square) */
.prestation-card .prestation-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}
.prestation-card .prestation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Day chips */
.day-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 70px;
    flex-shrink: 0;
    background: white;
}
.day-chip:hover {
    border-color: #f9a8d4;
}
.day-chip.selected {
    border-color: #e91e8c;
    background-color: #e91e8c;
    color: white;
}
.day-chip .day-name {
    font-size: 12px;
    text-transform: uppercase;
}
.day-chip .day-number {
    font-size: 20px;
    font-weight: 700;
}
.day-chip .day-month {
    font-size: 11px;
}

/* Time slot */
.slot-chip {
    padding: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    background: white;
}
.slot-chip:hover {
    border-color: #f9a8d4;
}
.slot-chip.selected {
    border-color: #e91e8c;
    background-color: #e91e8c;
    color: white;
}

/* Category header */
.category-header {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    padding-bottom: 8px;
    border-bottom: 2px solid #e91e8c;
    margin-bottom: 12px;
}

/* Booking notice (collapsible info) */
.booking-notice {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    background: #fafafa;
}
.booking-notice summary {
    list-style: none;
}
.booking-notice summary::-webkit-details-marker {
    display: none;
}
.booking-notice[open] .booking-notice-chevron {
    transform: rotate(180deg);
}
.booking-notice[open] summary {
    padding-bottom: 0;
}

/* Booking summary bar */
#booking-app {
    padding-bottom: 80px;
}
#booking-summary {
    transition: bottom 0.15s ease;
}

/* Loading spinner */
.booking-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e91e8c;
    border-radius: 50%;
    animation: booking-spin 0.8s linear infinite;
}
@keyframes booking-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
