/* تصميم عصري لنموذج الطلب المخصص */
#custom-order-form {
    background: #f9f9f9;
    border: 2px dashed #ccc;
    padding: 20px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-family: 'Tajawal', sans-serif;
    position: relative;
}

#custom-order-form h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

#custom-order-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

#custom-order-form input,
#custom-order-form textarea,
#custom-order-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

#custom-order-form button {
    background-color: #00b894;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    position: relative;
}

#custom-order-form button.loading::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: pure-rotation 1s linear infinite;
}

@keyframes pure-rotation {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

#custom-order-summary ul {
    list-style: none;
    padding: 0;
}

#custom-order-summary li {
    margin-bottom: 5px;
    color: #444;
    font-weight: 500;
}

@media (max-width: 600px) {
    #custom-order-form {
        padding: 15px;
    }

    #custom-order-form h3 {
        font-size: 18px;
    }
}