/* Piano Devis Manager - Divi Toggle Styles */

/* Section de devis masquée par défaut */
#demande-devis {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

#demande-devis.visible {
    opacity: 1;
}

/* Style du bouton de demande de devis */
#btn-demande-devis {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#btn-demande-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#btn-demande-devis:active {
    transform: translateY(0);
}

/* Icône pour indiquer l'état (optionnel) */
#btn-demande-devis::after {
    content: ' ▼';
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

#btn-demande-devis.active::after {
    transform: rotate(180deg);
}

/* Animation d'apparition de la section */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#demande-devis.animating {
    animation: slideDown 0.4s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    #btn-demande-devis {
        width: 100%;
        text-align: center;
    }
}
