/* ═══════════════════════════════════════════
 * Boutons de partage réseaux sociaux
 * Composant réutilisable — LeFuneraire.com
 * ═══════════════════════════════════════════ */

.cv-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 0;
}

.cv-share-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-right: 4px;
    white-space: nowrap;
}

.cv-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.cv-share-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
}
.cv-share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Couleurs par réseau */
.cv-share-btn--facebook:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
.cv-share-btn--x:hover         { background: #000; color: #fff; border-color: #333; }
.cv-share-btn--whatsapp:hover  { background: #25d366; color: #fff; border-color: #25d366; }
.cv-share-btn--linkedin:hover  { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.cv-share-btn--telegram:hover  { background: #0088cc; color: #fff; border-color: #0088cc; }
.cv-share-btn--email:hover     { background: #c9a96e; color: #fff; border-color: #c9a96e; }
.cv-share-btn--copy:hover      { background: #c9a96e; color: #fff; border-color: #c9a96e; }
.cv-share-btn--print:hover     { background: rgba(255,255,255,0.15); color: #fff; }

/* Tooltip copié */
.cv-share-btn--copy { position: relative; }
.cv-share-copied {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a96e;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.cv-share-copied.show { opacity: 1; }

/* Variante compacte pour topbar */
.cv-share-bar--compact {
    padding: 0;
    gap: 5px;
}
.cv-share-bar--compact .cv-share-btn {
    width: 30px;
    height: 30px;
}
.cv-share-bar--compact .cv-share-btn svg {
    width: 15px;
    height: 15px;
}
.cv-share-bar--compact .cv-share-label {
    font-size: 12px;
}

/* Variante centrée */
.cv-share-bar--center {
    justify-content: center;
}

/* Variante thème clair (bio, avis de décès, pages à fond clair) */
.cv-share-bar--light .cv-share-label {
    color: #4a5568;
}
.cv-share-bar--light .cv-share-btn {
    border: 1px solid #b0b5bf;
    background: #fff;
    color: #3a3f4a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.cv-share-bar--light .cv-share-btn:hover {
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 600px) {
    .cv-share-btn { width: 34px; height: 34px; }
    .cv-share-label { font-size: 12px; }
}
