.preorder-simple {
    padding: 40px 0;
    background: black;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.preorder-card-simple {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 1000px;
}

/* Фото авто */
.car-image {
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 24px;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
    transition: transform 0.3s ease;
    border-radius: 24px;
}

.car-image:hover img {
    transform: scale(1.05);
}

.preorder-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #7c7c7c, #8d8d8d);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Информация об авто */
.car-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.car-info h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
}

/* Характеристики */
.specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item i {
    color: #000000;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.spec-item span {
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

/* Кнопка предзаказа */
.preorder-btn {
    background: linear-gradient(135deg, #000000, #535353);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.preorder-btn:hover {
    background: linear-gradient(135deg, #a3a3a3, #3b3b3b);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.preorder-btn:active {
    transform: translateY(-1px);
}

.preorder-btn i {
    margin-right: 10px;
}

/* Информация о доставке */
.delivery-info {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.info-item i {
    color: #28a745;
}

/* Модальное окно */
.simple-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.simple-modal.active {
    display: flex;
}

.modal-content-simple {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    position: relative;
    text-align: center;
    animation: modalAppear 0.5s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f0f0f0;
    color: #000000;
}

.modal-icon {
    font-size: 50px;
    color: #000000;
    margin-bottom: 20px;
}

.modal-content-simple h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-content-simple p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Простая форма */
.simple-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-form input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.simple-form input:focus {
    outline: none;
    border-color: #000000;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #000000, #000000);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #a7a7a7, #888888);
    transform: translateY(-2px);
}

.submit-btn i {
    margin-right: 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .preorder-card-simple {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .car-info {
        padding: 30px 25px;
    }
    
    .car-info h1 {
        font-size: 26px;
    }
    
    .price {
        font-size: 30px;
    }
    
    .preorder-btn {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .delivery-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .car-image {
        padding: 30px 20px;
        min-height: 300px;
    }
    
    .car-image img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .preorder-simple {
        padding: 20px 0;
    }
    
    .modal-content-simple {
        padding: 30px 25px;
    }
    
    .spec-item span {
        font-size: 14px;
    }
}