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

.shareit_outer {
    position: fixed;
    right: 10px;
    bottom: 30px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.share-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #c0392b;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
}

.share-trigger:hover {
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}

.share-links {
    display: none;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s;
}

.share-links.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.shareit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-decoration: none;
}

.shareit:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.1);
    opacity: 0.9;
}

.facebook { background-color: #3B5B99; }
.twitter { background-color: #1DA1F2; }
.telegram { background-color: #0088cc; }
.linkedin { background-color: #0077B5; }
.whatsapp { background-color: #25D366; }
.print { background-color: #f39c12; }
.email { background-color: #8e44ad; }

/* Mobile: hide share bar */
@media (max-width: 767px) {
    .shareit_outer {
        right: 6px;
        bottom: 20px;
    }

    .share-trigger {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .shareit {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
