/* Share Buttons Block Styles */

.revhyper-share-buttons-block {
    margin: 2rem 0;
    padding: 1.25rem;
    background-color: var(--gray-50, #fafafa);
    border-radius: var(--radius-md, 8px);
    border: 1px solid var(--gray-200, #e5e5e5);
}

.revhyper-share-buttons-block .share-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
    margin-bottom: 0.75rem;
}

.revhyper-share-buttons-block .share-buttons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.revhyper-share-buttons-block .share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md, 6px);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background-color: var(--white, #ffffff);
    color: var(--gray-700, #374151);
    cursor: pointer;
    font-family: inherit;
}

.revhyper-share-buttons-block .share-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.revhyper-share-buttons-block .share-button svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.revhyper-share-buttons-block .share-facebook:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.revhyper-share-buttons-block .share-twitter:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.revhyper-share-buttons-block .share-linkedin:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

.revhyper-share-buttons-block .share-whatsapp:hover {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
}

.revhyper-share-buttons-block .share-copy:hover {
    background-color: var(--primary-color, #0066cc);
    color: white;
    border-color: var(--primary-color, #0066cc);
}

.revhyper-share-buttons-block .share-copy.copied {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.revhyper-share-buttons-block .share-button span {
    white-space: nowrap;
}

/* Share Buttons Responsive */
@media (max-width: 768px) {
    .revhyper-share-buttons-block {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .revhyper-share-buttons-block .share-buttons-list {
        gap: 0.375rem;
    }
    
    .revhyper-share-buttons-block .share-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .revhyper-share-buttons-block .share-button span {
        display: none;
    }
    
    .revhyper-share-buttons-block .share-button svg {
        width: 20px;
        height: 20px;
    }
}

