/* Social Media Share Buttons for Reviews */
.social-share-container {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.social-share-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    text-align: center;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
}

.social-share-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-share-btn:hover:before {
    left: 100%;
}

/* Individual Platform Colors */
.facebook-share {
    background: linear-gradient(45deg, #3b5998, #4267B2);
}

.twitter-share {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.whatsapp-share {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.telegram-share {
    background: linear-gradient(45deg, #0088cc, #005580);
}

.linkedin-share {
    background: linear-gradient(45deg, #0077b5, #005582);
}

.copy-link-share {
    background: linear-gradient(45deg, #6c757d, #495057);
}

/* Responsive Design */
@media (max-width: 576px) {
    .social-share-buttons {
        gap: 8px;
    }
    
    .social-share-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Success Animation */
.share-success {
    animation: shareSuccess 0.6s ease;
}

@keyframes shareSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); background-color: #28a745; }
    100% { transform: scale(1); }
}

/* Tooltip for Copy Link */
.social-share-btn[data-tooltip] {
    position: relative;
}

.social-share-btn[data-tooltip]:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.social-share-btn[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
}

/* RTL Support */
[dir="rtl"] .social-share-buttons {
    direction: ltr; /* Keep social media buttons in standard order */
}