.quick-order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-order-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.quick-order-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: quickOrderFadeIn 0.3s ease;
}

@keyframes quickOrderFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-order-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    z-index: 10;
}

.quick-order-close:hover {
    color: #000;
}

.quick-order-body {
    padding: 30px;
}

.quick-order-product {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.quick-order-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.quick-order-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.quick-order-price {
    margin-bottom: 10px;
}

.quick-order-price .price-new {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-right: 10px;
}

.quick-order-price .price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.quick-order-chars {
    font-size: 14px;
    color: #666;
}

.quick-order-chars ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-order-chars li {
    margin-bottom: 5px;
}

.quick-order-form .form-group {
    margin-bottom: 15px;
}

.quick-order-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.quick-order-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.quick-order-form .form-control:focus {
    outline: none;
    border-color: #3498db;
}

.quick-order-form .btn {
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

.quick-order-note {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 600px) {
    .quick-order-product {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-order-img {
        margin: 0 auto;
    }
    
    .quick-order-body {
        padding: 20px;
    }
}