/***/
#product-contact-email::placeholder,
#product-contact-message::placeholder {
    color: #fff !important;
    opacity: 1 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
}

/*Empêche le style du thème de s'appliquer*/
#product-contact-email, .no-bg {
    background: none!important;
}

/* Empêcher le redimensionnement du textarea */
textarea.form-control-pc,
#product-contact-message {
    resize: none !important;
    max-height: 5lh !important; /* Limite à 5 lignes de hauteur */
    overflow-y: auto !important;
}

/* Animation de flottement sur le bouton submit */
.contact-submit {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(232, 66, 66, 0.3);
}
