/* Social Sharing Buttons - Paws & Applause */
.social-sharing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.social-sharing.top {
    border-top: none;
    margin-top: 1rem;
}

.social-sharing.bottom {
    border-bottom: none;
    margin-bottom: 2rem;
}

.share-label {
    font-weight: 600;
    color: #3b3d3a;
    margin-right: 8px;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

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

.share-btn i {
    font-size: 1.1rem;
}

/* Facebook Share Button */
.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    color: white;
}

/* Instagram Follow Button */
.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.share-btn.instagram:hover {
    background: linear-gradient(45deg, #e08429 0%, #d55a32 25%, #c91e39 50%, #b81e5c 75%, #a8147e 100%);
    color: white;
}

/* TikTok Follow Button */
.share-btn.tiktok {
    background: #000000;
    color: white;
}

.share-btn.tiktok:hover {
    background: #333333;
    color: white;
}

/* Copy Link Button */
.share-btn.copy-link {
    background: #b6886e;
    color: white;
}

.share-btn.copy-link:hover {
    background: #a67c63;
    color: white;
}

/* Success state for copy button */
.share-btn.copy-link.copied {
    background: #28a745;
    color: white;
}

.share-btn.copy-link.copied:hover {
    background: #28a745;
}

/* Copy success notification */
.copy-success {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.copy-success.show {
    opacity: 1;
}

.copy-success::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #28a745;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-sharing {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .share-label {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .share-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .share-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for button press */
.share-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Focus states for accessibility */
.share-btn:focus {
    outline: 2px solid #b6886e;
    outline-offset: 2px;
}

.share-btn:focus:not(:focus-visible) {
    outline: none;
}

/* Loading state for async operations */
.share-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.share-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}