/* Share Buttons Styling */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
    padding: 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 20%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 700;
    font-size: 14px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.share-btn:active {
    transform: translateY(-1px);
}

/* Individual button colors */
.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #0d8bd9;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

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

.share-whatsapp {
    background: #25D366;
    color: white;
}

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

.share-linkedin {
    background: #0A66C2;
    color: white;
}

.share-linkedin:hover {
    background: #004e9e;
}

.share-copy {
    background: #6B7280;
    color: white;
}

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

/* Responsive adjustments */
@media (max-width: 480px) {
    .share-buttons {
        padding: 12px;
        gap: 8px;
    }
    
    .share-btn {
        width: 38px;
        height: 38px;
    }
    
    .share-label {
        font-size: 12px;
        width: 100%;
        margin-bottom: 4px;
    }
}

/* Floating share buttons variant (optional) */
.share-buttons-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 8px;
    background: white;
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.share-buttons-floating .share-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    margin-bottom: 8px;
}

.share-buttons-floating .share-btn {
    width: 38px;
    height: 38px;
}

@media (max-width: 768px) {
    .share-buttons-floating {
        display: none;
    }
}
