/* Social Share Buttons Styles */
.share-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.share-links-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-right: 10px;
}

.social-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.social-links li {
    margin: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Platform-specific colors */
.social-links a[title*="Facebook"] {
    background: #1877f2;
}

.social-links a[title*="Facebook"]:hover {
    background: #166fe5;
}

.social-links a[title*="Twitter"] {
    background: #1da1f2;
}

.social-links a[title*="Twitter"]:hover {
    background: #1a91da;
}

.social-links a[title*="WhatsApp"] {
    background: #25d366;
}

.social-links a[title*="WhatsApp"]:hover {
    background: #22c55e;
}

.social-links a[title*="Telegram"] {
    background: #0088cc;
}

.social-links a[title*="Telegram"]:hover {
    background: #0077b3;
}

.social-links a[title*="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-links a[title*="Instagram"]:hover {
    background: linear-gradient(45deg, #e0852e 0%,#d55a31 25%,#d1233e 50%,#c11e61 75%,#b0137d 100%);
}

/* Responsive design */
@media (max-width: 768px) {
    .share-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Animation for social icons */
@keyframes socialPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.social-links a:active {
    animation: socialPulse 0.3s ease;
}

/* Tooltip styles */
.social-links a[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
}

@keyframes fadeInTooltip {
    to {
        opacity: 1;
    }
}
