
/* Social Share Buttons */
.share-links {
    overflow: visible !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE 10+ */
}
.share-links::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari/Webkit */
}

.social-share-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    overflow: hidden !important; /* Force hide scrollbar on button */
    padding: 0; /* Reset padding */
}
.social-share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-facebook { background-color: #3b5998; }
.btn-twitter { background-color: #000; /* X brand color */ }
.btn-whatsapp { background-color: #25d366; }
.btn-linkedin { background-color: #0077b5; }
.btn-pinterest { background-color: #bd081c; }
.btn-copy { background-color: #6c757d; }
