/* =============================================
   Share Buttons
   Fichier : /wp-content/themes/ton-theme/css/share-buttons.css
   ============================================= */

.share-buttons {
    margin-top: 15px;
    text-align: center;
}

.share-buttons p {
    font-weight: bold;
    margin-bottom: 10px;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
}

.btn-share.fb   { background: #3b5998; }
.btn-share.wa   { background: #25d366; }
.btn-share.x    { background: #000000; }
.btn-share.copy { background: #6366f1; }

.btn-share:hover {
    opacity: 0.8;
    color: #fff !important;
}