/* Booking System Modern CSS - Nina Beauté */

/* === VUETIFY THEME OVERRIDES === */
.v-application {
    font-family: 'Inter', sans-serif !important;
}

/* Custom Nina Beauté Vuetify Colors */
.v-theme--nina {
    --v-theme-nina-primary: #DC2626;
    --v-theme-nina-secondary: #F59E0B;
    --v-theme-nina-accent: #FFFFFF;
    --v-theme-nina-success: #10B981;
    --v-theme-nina-error: #EF4444;
    --v-theme-nina-warning: #F59E0B;
    --v-theme-nina-info: #3B82F6;
}

/* === BOOKING FORM ENHANCEMENTS === */
.booking-container {
    background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
    min-height: 100vh;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 16px !important;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15) !important;
}

.service-card.selected {
    border: 2px solid var(--v-theme-nina-primary) !important;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
}

.service-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-gradient,
.service-card.selected .service-gradient {
    opacity: 1;
}

/* === STEPPER ENHANCEMENTS === */
.v-stepper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.v-stepper-header {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px 20px 0 0 !important;
}

.v-stepper-item {
    padding: 24px 16px !important;
}

.v-stepper-item--selected .v-stepper-item__avatar {
    background: var(--v-theme-nina-primary) !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
}

.v-stepper-item--complete .v-stepper-item__avatar {
    background: var(--v-theme-nina-success) !important;
    color: white !important;
}

/* === DATE PICKER ENHANCEMENTS === */
.v-date-picker {
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1) !important;
    overflow: hidden;
}

.v-date-picker-header {
    background: linear-gradient(135deg, var(--v-theme-nina-primary) 0%, #b91c1c 100%) !important;
    color: white !important;
}

.v-date-picker-controls {
    background: rgba(220, 38, 38, 0.05) !important;
}

.v-date-picker-month__day--selected {
    background: var(--v-theme-nina-primary) !important;
    color: white !important;
}

.v-date-picker-month__day--adjacent {
    opacity: 0.5;
}

/* === TIME CHIPS === */
.time-chip {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: 12px !important;
    margin: 4px !important;
    cursor: pointer;
    font-weight: 500 !important;
}

.time-chip:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2) !important;
}

.time-chip.selected {
    background: var(--v-theme-nina-primary) !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3) !important;
}

/* === FORM INPUTS === */
.v-text-field .v-field {
    border-radius: 12px !important;
}

.v-text-field--focused .v-field {
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2) !important;
}

.v-textarea .v-field {
    border-radius: 12px !important;
}

/* === BUTTONS === */
.v-btn {
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0.025em;
}

.v-btn--size-large {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
}

.v-btn--size-x-large {
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
}

.v-btn.nina-gradient {
    background: linear-gradient(135deg, var(--v-theme-nina-primary) 0%, #b91c1c 100%) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3) !important;
}

.v-btn.nina-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
}

/* === CARDS === */
.v-card {
    border-radius: 16px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.v-card--hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.confirmation-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 24px !important;
    overflow: hidden;
}

.confirmation-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.success-animation {
    animation: successBounce 0.8s ease-out;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .v-stepper {
        margin: 0 8px;
    }

    .service-card {
        margin-bottom: 16px;
    }

    .v-date-picker {
        width: 100% !important;
    }

    .time-chip {
        margin: 2px !important;
        font-size: 0.9rem !important;
    }

    .v-btn--size-x-large {
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .v-stepper-header {
        flex-wrap: wrap;
    }

    .v-stepper-item {
        flex-basis: 50%;
        margin-bottom: 8px;
    }
}

/* === LOADING STATES === */
.loading-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.loading-spinner {
    color: var(--v-theme-nina-primary) !important;
}

/* === SUCCESS/ERROR STATES === */
.v-alert {
    border-radius: 16px !important;
    border: none !important;
}

.v-alert--type-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%) !important;
    border-left: 4px solid var(--v-theme-nina-success) !important;
}

.v-alert--type-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
    border-left: 4px solid var(--v-theme-nina-error) !important;
}

/* === ACCESSIBILITY === */
.v-btn:focus {
    outline: 2px solid var(--v-theme-nina-primary);
    outline-offset: 2px;
}

.service-card:focus {
    outline: 2px solid var(--v-theme-nina-primary);
    outline-offset: 4px;
}

/* === DARK MODE SUPPORT === */
.v-theme--dark .booking-container {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
}

.v-theme--dark .v-stepper {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%) !important;
}

.v-theme--dark .service-card {
    background: #353535 !important;
    border-color: #4a4a4a !important;
}

/* === PRINT STYLES === */
@media print {
    .v-btn, .v-stepper-header {
        display: none !important;
    }

    .v-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}