/* ── Bouton Pro ───────────────────────────────────────────────────────── */

.bp-wrapper {
    line-height: 1;
}

.bp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 300ms ease;
    background-color: #e05a1a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    box-sizing: border-box;
}

.bp-button:hover {
    text-decoration: none;
    color: inherit;
}

/* Icon à droite */
.bp-button.bp-icon-right {
    flex-direction: row-reverse;
}

.bp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.bp-icon i,
.bp-icon svg {
    display: block;
    line-height: 1;
}

.bp-text {
    line-height: 1;
}
