/* Social Share Styles */

.social-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.social-share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E3A4F;
    margin-bottom: 1rem;
}

.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: white;
}

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

.social-share-btn:active {
    transform: translateY(0);
}

/* Facebook */
.social-share-facebook {
    background: #1877F2;
}

.social-share-facebook:hover {
    background: #0C63D4;
}

/* Twitter/X */
.social-share-twitter {
    background: #000000;
}

.social-share-twitter:hover {
    background: #1a1a1a;
}

/* LinkedIn */
.social-share-linkedin {
    background: #0A66C2;
}

.social-share-linkedin:hover {
    background: #004182;
}

/* WhatsApp */
.social-share-whatsapp {
    background: #25D366;
}

.social-share-whatsapp:hover {
    background: #1DA851;
}

/* Telegram */
.social-share-telegram {
    background: #0088CC;
}

.social-share-telegram:hover {
    background: #006699;
}

/* Reddit */
.social-share-reddit {
    background: #FF4500;
}

.social-share-reddit:hover {
    background: #CC3700;
}

/* Copy Link */
.social-share-copy {
    background: #6B7280;
}

.social-share-copy:hover {
    background: #4B5563;
}

/* Copy Toast Notification */
.copy-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2E3A4F;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .social-share {
        padding: 1rem;
    }
    
    .social-share-buttons {
        gap: 0.5rem;
    }
    
    .social-share-btn {
        width: 40px;
        height: 40px;
    }
    
    .copy-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
    }
}

/* Print - hide social share */
@media print {
    .social-share {
        display: none;
    }
}
