/* Compartilhamento - botoes compactos alinhados ao padrao da boutique */
.bp-share {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bp-share__label {
    color: var(--bp-muted);
    font-size: .68rem;
    font-weight: 750;
}

.bp-share__btn {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 1px solid var(--bp-border);
    border-radius: 999px;
    color: var(--bp-muted);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--bp-sans);
    font-size: .68rem;
    font-weight: 700;
    gap: 4px;
    line-height: 1;
    min-height: 28px;
    padding: 3px 9px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.bp-share__btn svg {
    fill: currentColor;
    flex: 0 0 auto;
    height: 13px;
    width: 13px;
}

.bp-share__btn:hover,
.bp-share__btn:focus {
    background: var(--bp-soft);
    border-color: var(--bp-primary);
    color: var(--bp-primary);
    text-decoration: none;
}

.bp-share__btn--whatsapp:hover,
.bp-share__btn--whatsapp:focus {
    background: #e6f5ec;
    border-color: #25d366;
    color: #128c4a;
}

html.bp-theme-dark .bp-share__btn--whatsapp:hover,
body.bp-theme-dark .bp-share__btn--whatsapp:hover,
html.bp-theme-dark .bp-share__btn--whatsapp:focus,
body.bp-theme-dark .bp-share__btn--whatsapp:focus {
    background: rgba(37, 211, 102, .12);
    color: #79e6a1;
}

.bp-share__status {
    color: var(--bp-muted);
    font-size: .62rem;
    min-height: 1em;
}

@media (max-width: 599px) {
    .bp-share {
        gap: 8px;
    }

    .bp-share__label {
        flex: 0 0 100%;
    }

    .bp-share__btn {
        min-height: 32px;
        padding: 5px 11px;
    }
}
