/* Modal Sekoo - Style propre et mobile-friendly */
#commandeModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    overflow: hidden;
}

#commandeModal .modal-header {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    border-bottom: none;
    padding: 1.5rem 1.5rem 1rem;
}

#commandeModal .modal-title {
    font-weight: 600;
    font-size: 1.4rem;
}

#commandeModal .modal-body {
    padding: 2rem 1.5rem;
    background: #f8f9fa;
}

#commandeModal .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

#commandeModal .form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#commandeModal .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

#commandeModal .modal-footer {
    border-top: none;
    padding: 1.5rem;
    background: #fff;
}

#commandeModal .btn {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

#commandeModal .btn-default {
    background: #e9ecef;
    border: none;
    color: #495057;
}

#commandeModal .btn-default:hover {
    background: #dee2e6;
}

#commandeModal .btn-success {
    background: #28a745;
    border: none;
}

#commandeModal .btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Mobile friendly adjustments */
@media (max-width: 576px) {
    #commandeModal .modal-dialog {
        margin: 0.5rem;
    }
    
    #commandeModal .modal-body {
        padding: 1.5rem 1rem;
    }
    
    #commandeModal .form-group {
        margin-bottom: 1.25rem;
    }
    
    #commandeModal .modal-title {
        font-size: 1.25rem;
    }
    
    #commandeModal .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    #commandeModal .modal-footer {
        flex-direction: column-reverse;
    }
}

/* Aperçu produit stylé */
#commandeModal .product-preview {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#commandeModal .product-preview p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

#commandeModal .product-preview strong {
    color: #28a745;
}