/* =========================================
   RESERVAS - Estilos Generales
   ========================================= */

/* HEADER */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: clamp(16px, 4vw, 20px);
    padding-top: calc(clamp(16px, 4vw, 20px) + env(safe-area-inset-top));
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo {
    height: clamp(35px, 8vw, 45px);
    width: auto;
}

.header-title {
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

/* CONTENT */
.content {
    padding: clamp(16px, 4vw, 24px);
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    max-width: 600px;
    margin: 0 auto;
}

/* ALERTS */
.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.alert-success svg,
.alert-error svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* INFO CARD */
.info-card {
    background: white;
    border-radius: clamp(16px, 4vw, 20px);
    padding: clamp(18px, 4.5vw, 24px);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(74, 123, 167, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: slideUp 0.4s ease-out;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.info-text h2 {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.info-text p {
    font-size: clamp(13px, 3.2vw, 14px);
    color: #666;
    line-height: 1.5;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STEPS CONTAINER */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.3);
}

.step.completed .step-number {
    background: #10b981;
    color: white;
}

.step-text {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step.active .step-text,
.step.completed .step-text {
    color: #333;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 8px;
    margin-bottom: 20px;
    max-width: 40px;
}

/* FORM CARD */
.form-card {
    background: white;
    border-radius: clamp(16px, 4vw, 20px);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(74, 123, 167, 0.1);
    animation: slideUp 0.4s ease-out;
}

.form-card.hidden {
    display: none;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: clamp(15px, 3.8vw, 17px);
}

.form-header svg {
    width: 22px;
    height: 22px;
}

.form-body {
    padding: clamp(16px, 4vw, 24px);
}

.form-hint {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 12px;
}

/* TRAINER GRID */
.trainer-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trainer-option input {
    display: none;
}

.trainer-card {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trainer-option input:checked + .trainer-card {
    border-color: var(--primary-blue);
    background: rgba(74, 123, 167, 0.05);
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.15);
}

.trainer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trainer-option input:checked + .trainer-card .trainer-avatar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.trainer-avatar svg {
    width: 24px;
    height: 24px;
    color: #9ca3af;
}

.trainer-option input:checked + .trainer-card .trainer-avatar svg {
    color: white;
}

.trainer-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    margin-bottom: 2px;
}

.trainer-specialty {
    font-size: 13px;
    color: #666;
}

/* DATE PICKER */
.date-picker-container {
    text-align: center;
}

.date-input {
    width: 100%;
    max-width: 280px;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 123, 167, 0.1);
}

/* TIME GRID */
.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-option input {
    display: none;
}

.time-btn {
    display: block;
    padding: 12px 8px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-option input:checked + .time-btn {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.3);
}

.time-btn:hover {
    border-color: var(--primary-blue);
}

/* BUTTONS */
.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-next {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-group .btn-next {
    margin-top: 0;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 123, 167, 0.3);
}

.btn-next svg {
    width: 18px;
    height: 18px;
}

.btn-back {
    background: #f3f4f6;
    color: #666;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #e5e7eb;
}

.btn-back svg {
    width: 18px;
    height: 18px;
}

.btn-submit {
    flex: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* SUMMARY CARD */
.summary-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-size: 14px;
}

.summary-value {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

/* FIELD GROUP */
.field-group {
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.select-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-field:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.textarea-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

.textarea-field:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* =========================================
   MIS RESERVAS - Glassmorphism V2
   All selectors scoped under .reservations-page
   ========================================= */

/* PAGE LAYOUT */
.reservations-page {
    padding: clamp(16px, 4vw, 24px);
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    max-width: 600px;
    margin: 0 auto;
}

/* PAGE HEADER */
.reservations-page .page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reservations-page .page-header h2 {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    color: white;
    margin: 0;
}

.reservations-page .page-header .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 14px;
    color: white !important;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.reservations-page .page-header .btn:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    transform: translateY(-1px);
}

.reservations-page .page-header .btn i {
    font-size: 14px;
}

/* TAB BAR */
.reservations-page .tab-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 20px;
    gap: 4px;
}

.reservations-page .tab-btn {
    flex: 1;
    padding: 11px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reservations-page .tab-btn:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
}

.reservations-page .tab-btn.active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.reservations-page .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.reservations-page .tab-btn.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

/* RESERVATION LIST */
.reservations-page .reservation-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* RESERVATION CARD */
.reservations-page .reservation-card {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    border-left: none !important;
    padding: 18px 20px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    animation: reservaSlideUp 0.4s ease-out backwards;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.reservations-page .reservation-card:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.reservations-page .reservation-card.past {
    opacity: 0.7;
}

.reservations-page .reservation-card.past:hover {
    opacity: 0.85;
}

@keyframes reservaSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESERVATION INFO */
.reservations-page .reservation-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* TRAINER */
.reservations-page .reservation-trainer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: white !important;
    font-size: 15px;
    margin-bottom: 0;
}

.reservations-page .reservation-trainer i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.reservations-page .reservation-trainer strong {
    color: white;
}

/* DATE/TIME */
.reservations-page .reservation-datetime {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reservations-page .reservation-date,
.reservations-page .reservation-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.reservations-page .reservation-date i,
.reservations-page .reservation-time i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* STATUS BADGES */
.reservations-page .badge {
    display: inline-flex !important;
    align-items: center;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    width: fit-content;
}

.reservations-page .badge-success {
    background: rgba(16, 185, 129, 0.25) !important;
    color: #6ee7b7 !important;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.reservations-page .badge-warning {
    background: rgba(245, 158, 11, 0.25) !important;
    color: #fcd34d !important;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.reservations-page .badge-danger {
    background: rgba(239, 68, 68, 0.25) !important;
    color: #fca5a5 !important;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.reservations-page .badge-info {
    background: rgba(59, 130, 246, 0.25) !important;
    color: #93c5fd !important;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.reservations-page .badge-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* RESERVATION ACTIONS */
.reservations-page .reservation-actions {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.reservations-page .reservation-actions .btn {
    padding: 8px 14px;
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1.5px solid rgba(239, 68, 68, 0.35) !important;
    border-radius: 12px;
    color: #fca5a5 !important;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reservations-page .reservation-actions .btn:hover {
    background: rgba(239, 68, 68, 0.35) !important;
    transform: translateY(-1px);
}

.reservations-page .reservation-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.reservations-page .reservation-actions .btn i {
    font-size: 12px;
}

/* EMPTY STATE OVERRIDE (EmptyState component uses .empty-state) */
.reservations-page .empty-state {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
}

.reservations-page .empty-state .empty-state-icon {
    font-size: 52px;
    color: rgba(255, 255, 255, 0.35) !important;
    display: block;
    margin-bottom: 16px;
}

.reservations-page .empty-state h3 {
    color: white !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reservations-page .empty-state p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    margin-bottom: 20px;
}

.reservations-page .empty-state .btn {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    border-radius: 14px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

.reservations-page .empty-state .btn:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    transform: translateY(-1px);
}

/* LOADING SPINNER OVERRIDE */
.reservations-page .loading-container {
    padding: 60px 20px;
}

.reservations-page .loading-container .loading-spinner {
    border-color: rgba(255, 255, 255, 0.15) !important;
    border-top-color: white !important;
}

.reservations-page .loading-container .loading-message {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* DISPONIBILIDAD GRID (ReservarHora) */
.disponibilidad-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.date-group {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.date-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: capitalize;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 360px) {
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-text {
        font-size: 10px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .reservations-page .reservation-card {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .reservations-page .reservation-actions {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 768px) {
    .content {
        padding: 32px;
    }

    .trainer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .time-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* =========================================
   RESERVAR HORA - Glassmorphism V2
   All selectors scoped under .booking-page
   ========================================= */

/* PAGE LAYOUT */
.booking-page {
    padding: clamp(16px, 4vw, 24px) !important;
    padding-bottom: calc(100px + env(safe-area-inset-bottom)) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* PAGE HEADER */
.booking-page .page-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 20px !important;
}

.booking-page .page-header h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
}

.booking-page .page-header .btn-back {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.booking-page .page-header .btn-back:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: scale(1.05) !important;
}

.booking-page .page-header .btn-back i {
    font-size: 18px !important;
    color: white !important;
}

/* STEP INDICATOR */
.booking-page .step-indicator {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin-bottom: 24px !important;
    padding: 0 10px !important;
}

.booking-page .step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
}

.booking-page .step-circle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.booking-page .step.active .step-circle {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.booking-page .step.completed .step-circle {
    background: rgba(16, 185, 129, 0.3) !important;
    color: white !important;
}

.booking-page .step-label {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

.booking-page .step.active .step-label {
    color: white !important;
}

.booking-page .step.completed .step-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.booking-page .step-line {
    flex: 1 !important;
    height: 2px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    margin: 0 8px !important;
    margin-bottom: 20px !important;
    max-width: 40px !important;
    border: none !important;
    border-radius: 1px !important;
    transition: background 0.3s ease !important;
}

.booking-page .step-line.active {
    background: rgba(255, 255, 255, 0.4) !important;
}

/* STEP CONTENT (glass card) */
.booking-page .step-content {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 22px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.booking-page .step-content h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 0 16px 0 !important;
}

/* TRAINER LIST */
.booking-page .trainer-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

/* TRAINER CARD (glass sub-card) */
.booking-page .trainer-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid transparent !important;
    border-radius: 14px !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.booking-page .trainer-card:hover {
    background: rgba(255, 255, 255, 0.13) !important;
}

.booking-page .trainer-card.selected {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

/* TRAINER AVATAR */
.booking-page .trainer-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: background 0.3s ease !important;
}

.booking-page .trainer-avatar i {
    font-size: 20px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.3s ease !important;
}

.booking-page .trainer-card.selected .trainer-avatar {
    background: rgba(255, 255, 255, 0.25) !important;
}

.booking-page .trainer-card.selected .trainer-avatar i {
    color: white !important;
}

/* TRAINER INFO */
.booking-page .trainer-info strong {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: white !important;
}

.booking-page .trainer-info span {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

/* SELECTED CHECK */
.booking-page .selected-check {
    color: #6ee7b7 !important;
    font-size: 18px !important;
}

/* SELECTED SUMMARY (glass sub-card) */
.booking-page .selected-summary {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.booking-page .selected-summary > i {
    color: rgba(255, 255, 255, 0.5) !important;
}

.booking-page .selected-summary > span {
    color: white !important;
    font-size: 14px !important;
}

/* SUMMARY ITEM (Step 3 detailed summary) */
.booking-page .summary-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    color: white !important;
    font-size: 14px !important;
}

.booking-page .summary-item i {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
}

.booking-page .summary-item span {
    color: white !important;
}

/* FORM GROUP */
.booking-page .form-group {
    margin-bottom: 16px !important;
}

.booking-page .form-group label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 6px !important;
}

/* FORM CONTROL (glass input) */
.booking-page .form-control {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: white !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.booking-page .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.booking-page .form-control:focus {
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.14) !important;
}

/* TIME SLOTS (grid 3 columns) */
.booking-page .time-slots {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
}

/* TIME SLOT (glass button) */
.booking-page .time-slot {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 12px 8px !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
}

.booking-page .time-slot:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.booking-page .time-slot.selected {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.booking-page .time-slot.disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.booking-page .slot-time {
    display: block !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: white !important;
}

.booking-page .slot-status {
    display: block !important;
    font-size: 11px !important;
    color: rgba(239, 68, 68, 0.8) !important;
    font-weight: 500 !important;
}

/* STEP ACTIONS */
.booking-page .step-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    margin-top: 20px !important;
}

/* BUTTONS (generic glass style) */
.booking-page .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 20px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
}

.booking-page .btn-primary {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
}

.booking-page .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}

.booking-page .btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.booking-page .btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
}

.booking-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

.booking-page .btn-block {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 20px !important;
}

/* ALERT DANGER */
.booking-page .alert-danger,
.booking-page .alert.alert-danger {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #fca5a5 !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.booking-page .alert-danger i {
    color: #fca5a5 !important;
    flex-shrink: 0 !important;
}

/* SPINNER SM */
.booking-page .spinner-sm {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-top-color: white !important;
    border-radius: 50% !important;
    animation: bookingSpinnerSm 0.6s linear infinite !important;
}

@keyframes bookingSpinnerSm {
    to { transform: rotate(360deg); }
}

/* LOADING SPINNER */
.booking-page .loading-container {
    padding: 60px 20px !important;
    text-align: center !important;
}

.booking-page .loading-container .loading-spinner,
.booking-page .loading-spinner {
    border-color: rgba(255, 255, 255, 0.15) !important;
    border-top-color: white !important;
}

.booking-page .loading-container .loading-message,
.booking-page .loading-message {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px !important;
    margin-top: 12px !important;
}

/* EMPTY STATE */
.booking-page .empty-state {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px !important;
    padding: 48px 24px !important;
    text-align: center !important;
}

.booking-page .empty-state .empty-state-icon,
.booking-page .empty-state i.empty-state-icon {
    font-size: 52px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    display: block !important;
    margin-bottom: 16px !important;
}

.booking-page .empty-state h3 {
    color: white !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.booking-page .empty-state p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.booking-page .empty-state .btn {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    border-radius: 14px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.booking-page .empty-state .btn:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    transform: translateY(-1px) !important;
}

/* RESPONSIVE */
@media (max-width: 360px) {
    .booking-page .time-slots {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .booking-page .step-label {
        font-size: 10px !important;
    }

    .booking-page .step-circle {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 12px !important;
    }

    .booking-page .step-content {
        padding: 16px !important;
    }
}
