.share-buttons .js-copy-link {
    position: relative;
}

.share-buttons .copy-success-text {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.share-buttons .js-copy-link.show-copy-text .copy-success-text {
    opacity: 1;
    visibility: visible;
    top: -20px;
}


/* =========================================================
   SHARE BUTTONS
========================================================= */

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons .social-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-right: 4px;
}

/* SOCIAL ICON */
.share-buttons .social-icon {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    transition: all 0.25s ease;
    text-decoration: none;
}

/* ICON IMAGE */
.share-buttons .social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.share-buttons .social-icon:hover {
    transform: translateY(-2px);
    border-color: #16a34a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ICON HOVER */
.share-buttons .social-icon:hover img {
    opacity: 1;
}

/* ACTIVE */
.share-buttons .social-icon:active {
    transform: scale(0.95);
}

/* MOBILE */
@media (max-width: 576px) {

    .share-buttons {
        gap: 8px;
    }

    .share-buttons .social-icon {
        width: 32px;
        height: 32px;
    }

    .share-buttons .social-icon img {
        width: 16px;
        height: 16px;
    }

}
