/**
 * Foxbow - Styles pour les boutons de partage social (ps_sharebuttons)
 * Utilise Font Awesome 4 pour les icônes
 */

/* Conteneur des boutons de partage - Override des styles du thème */
.social-sharing {
    display: inline-flex !important;
    width: auto !important;
    margin-top: 0 !important;
}

.social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Override des styles du thème pour les li */
.social-sharing ul li {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0 !important;
    cursor: pointer;
}

/* Override des styles du thème pour les liens */
.social-sharing li a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    text-decoration: none;
    text-indent: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    transition: all 0.2s ease-in-out;
}

/* Icônes Font Awesome */
.social-sharing i {
    display: inline-block !important;
    font-size: 14px !important;
    color: #212529 !important; /* Couleur du texte du thème */
    transition: all 0.2s ease-in-out;
    line-height: 1;
}

/* Effet au survol */
.social-sharing a:hover,
.social-sharing li a:hover {
    color: transparent !important;
}

.social-sharing a:hover i,
.social-sharing li a:hover i {
    color: #71b02c !important; /* Vert Foxbow */
    transform: scale(1.15); /* Léger zoom */
}

/* === Bouton de devis personnalisé === */

/* Conteneur du bouton de devis */
.foxbow-custom-quote-button {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Style du bouton de devis */
.btn-custom-quote {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px !important;
    background-color: #71b02c !important; /* Vert Foxbow */
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Icône du bouton de devis */
.btn-custom-quote i {
    font-size: 16px !important;
    color: #fff !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* Texte du bouton */
.btn-custom-quote span {
    display: inline-block;
    color: #fff !important;
}

/* Effet au survol du bouton */
.btn-custom-quote:hover {
    background-color: #989292 !important; /* Gris au survol selon la charte */
    color: #fff !important;
    text-decoration: none !important;
}

.btn-custom-quote:hover i {
    color: #fff !important;
    transform: translateX(-2px); /* Légère animation de l'icône */
}

.btn-custom-quote:hover span {
    color: #fff !important;
}