/* Social Media Share Buttons */
.product-share-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.product-share-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.social-share-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Facebook */
.share-facebook {
    background-color: #1877f2;
}

.share-facebook:hover {
    background-color: #145dbf;
}

/* WhatsApp */
.share-whatsapp {
    background-color: #25d366;
}

.share-whatsapp:hover {
    background-color: #1da851;
}

/* Twitter/X */
.share-twitter {
    background-color: #000000;
}

.share-twitter:hover {
    background-color: #333333;
}

/* LinkedIn */
.share-linkedin {
    background-color: #0077b5;
}

.share-linkedin:hover {
    background-color: #005885;
}

/* Pinterest */
.share-pinterest {
    background-color: #e60023;
}

.share-pinterest:hover {
    background-color: #bd001c;
}

/* Instagram (Copy Link) */
.share-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-instagram:hover {
    opacity: 0.9;
}

/* Copy Link */
.share-copy {
    background-color: #6c757d;
}

.share-copy:hover {
    background-color: #5a6268;
}

/* Toast Notification */
.share-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-share-buttons {
        gap: 8px;
    }

    .social-share-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .social-share-btn i {
        margin-right: 5px;
        font-size: 14px;
    }
}