
/* Полностью новый премиальный дизайн для страницы записи */
body {
    background-color: var(--bg-primary);
}

.premium-booking-wrapper {
    max-width: 1200px;
    margin: 50px auto 80px;
    padding: 0 20px;
}

.booking-card {
    display: flex;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}
 
/* Левая часть с картинкой */
.booking-visual {
    flex: 5;
    background-image: url("/static/images/girls/красивая девушка 1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.booking-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}

.booking-visual-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.booking-visual-content h2 {
    font-family: 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.booking-visual-content p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Правая часть с формой */
.booking-form-section {
    flex: 7;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.booking-form-header {
    margin-bottom: 40px;
}

.booking-form-header h1 {
    font-family: 'Times New Roman', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 400;
}

.booking-form-header p {
    color: #888;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Стили полей */
.premium-form-row {
    display: flex;
    gap: 30px;
}

.premium-form-group {
    flex: 1;
    position: relative;
    margin-bottom: 30px;
}

.premium-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-size: 16px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 0;
}

.premium-input:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.premium-input::placeholder {
    color: #aaa;
    font-weight: 300;
}

textarea.premium-input {
    resize: vertical;
    min-height: 80px;
}

select.premium-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px;
}

.char-counter {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 12px;
    color: #aaa;
}

/* Чекбокс */
.premium-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 35px;
    cursor: pointer;
}

.premium-checkbox-wrapper input {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

.premium-checkbox-wrapper span {
    font-size: 13px;
    color: #888;
}

/* Кнопка */
.premium-submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-submit-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.premium-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-message {
    background: #f8fcf8;
    border: 1px solid #d4edda;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    color: #155724;
    margin-top: 20px;
    font-size: 14px;
}

/* Price selection styles */
.price-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.price-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.price-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

.price-label {
    font-size: 14px;
    color: #1a1a1a;
}

.price-value {
    font-weight: 600;
}

/* Мобильная адаптация */
@media (max-width: 992px) {
    .booking-card {
        flex-direction: column;
    }
    .booking-visual {
        min-height: 400px;
        padding: 40px 30px;
    }
    .booking-form-section {
        padding: 50px 30px;
    }
    .premium-form-row {
        flex-direction: column;
        gap: 0;
    }
    .premium-booking-wrapper {
        margin-top: 100px;
        padding: 0 15px;
    }
}