/* ===== Social Share CSS ===== */

/* WhatsApp button */
.share-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    color: #fff !important;
    font-size: 22px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.share-btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.share-btn-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Telegram button */
.share-btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #0088cc;
    border-radius: 50%;
    color: #fff !important;
    font-size: 22px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.share-btn-telegram:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}
.share-btn-telegram svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Copy link button */
.share-btn-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #607d8b;
    border-radius: 50%;
    color: #fff !important;
    font-size: 22px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    cursor: pointer;
    border: none;
}
.share-btn-copy:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(96, 125, 139, 0.4);
}
.share-btn-copy.copied {
    background: #4caf50;
}
.share-btn-copy svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* Consistent spacing for social buttons row */
.vs-social-share-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.vs-social-share-row > div {
    display: inline-block;
}

/* Shorts share button */
.shorts-share-btn {
    cursor: pointer;
}
.shorts-share-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.shorts-share-btn p {
    color: #fff;
    font-size: 12px;
    margin: 4px 0 0 0;
    text-align: center;
}
