/* =============================================
   WC Fiche Produit & Devis — Styles
   ============================================= */

.wcfp-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
    align-items: center;
}

/* Base bouton */
.wcfp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.wcfp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.wcfp-btn:active {
    transform: translateY(0);
}

/* Bouton Fiche Produit */
.wcfp-btn--fiche {
    background-color: #001062;
    color: #ffffff;
    border-color: #001062;
    border-radius: 4px;
    padding: 14px 47px;
}

.wcfp-btn--fiche:hover {
    background-color: #000a45;
    border-color: #000a45;
    color: #ffffff;
}

/* Bouton Demander un devis */
.wcfp-btn--devis {
    background-color: #df0702;
    color: #ffffff;
    border-color: #df0702;
    border-radius: 4px;
    padding: 14px 47px;
}

.wcfp-btn--devis:hover {
    background-color: #b50601;
    border-color: #b50601;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 480px) {
    .wcfp-buttons {
        flex-direction: column;
    }
    .wcfp-btn {
        width: 100%;
        text-align: center;
    }
}
