/* order.css */
.booking-confirmation {
    margin-top: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.5s ease forwards;
}

.booking-summary {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    transition: all 0.3s ease;
}

.booking-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.booking-summary-label {
    font-weight: bold;
    color: #1b1c1d;
    font-family: 'nasir', Arial, sans-serif;
}

.booking-summary-value {
    color: #333;
    font-family: 'acrobat', Arial, sans-serif;
}
.booking-summary-value-price {
    color: #333;
    font-family: 'unageo', Arial, sans-serif;
}

.client-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'acrobat', Arial, sans-serif;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown) {
    border-color: #1b1c1d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 28, 29, 0.1);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    font-family: 'acrobat', Arial, sans-serif;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 12px;
    font-weight: bold;
    color: #1b1c1d;
    background: #fff;
    padding: 0 0.4rem;
    z-index: 1;
}

.form-group input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 0.3rem;
    font-family: 'acrobat', Arial, sans-serif;
    display: none;
}

.error-message.show {
    display: block;
}

.phone-input-container {
    position: relative;
}

.phone-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-family: 'acrobat', Arial, sans-serif;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.phone-input {
    padding-left: 3rem !important;
}

.submit-btn {
    background-color: #1b1c1d;
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 33px;
    font-size: 16px;
    font-family: 'nasir', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}






/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .booking-confirmation {
        padding: 1.5rem;
        margin: 1rem;
    }

    .booking-summary {
        padding: 1rem;
        border-radius: 8px;
    }

    .booking-summary-item {
        font-size: 14px;
    }

    .form-group input {
        padding: 0.9rem;
        font-size: 18px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label {
        font-size: 11px;
        top: -0.6rem;
        left: 0.6rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 14px;
    }

    .step-header h2 {
        font-size: 24px;
    }

    .back-btn {
        padding: 0.5rem 1rem;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .booking-confirmation {
        padding: 1rem;
        margin: 0.5rem;
    }

    .booking-summary {
        padding: 0.8rem;
    }

    .form-group input {
        padding: 0.8rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 13px;
    }

    .step-header h2 {
        font-size: 20px;
    }
}