/* =============================================
   Share Buttons
   ============================================= */

.share {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.share__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.share__buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.share__button:hover {
    transform: translateY(-2px);
}

.share__button svg {
    width: 18px;
    height: 18px;
}

/* Platform Colors - Default State */
.share__button--facebook {
    background: #1877f2;
    color: #fff;
}

.share__button--twitter {
    background: #000;
    color: #fff;
}

.share__button--linkedin {
    background: #0a66c2;
    color: #fff;
}

.share__button--whatsapp {
    background: #25d366;
    color: #fff;
}

.share__button--email {
    background: var(--theme-primary, #0f4c81);
    color: #fff;
}

.share__button--copy {
    background: #6b7280;
    color: #fff;
}

.share__button:hover {
    opacity: 0.85;
}

/* Copy Button States */
.share__button--copy .share__icon-check {
    display: none;
}

.share__button--copy.is-copied .share__icon-copy {
    display: none;
}

.share__button--copy.is-copied .share__icon-check {
    display: block;
}

.share__button--copy.is-copied {
    background: #10b981;
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .share__buttons {
        flex-wrap: wrap;
    }
}

