/* BB Button Module - Frontend Styles */

.fl-module-bb-button .bb-button-wrapper {
    display: inline-flex;
    align-items: center;
}

.fl-module-bb-button .bb-button {
    all: unset;
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: auto;
    height: auto;
    min-height: 3rem;
    padding-left: 3.5rem;
    padding-right: 1rem;
    white-space: nowrap;
}

.fl-module-bb-button .bb-button .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 3rem;
    height: 3rem;
    background: #69b42d;
    border-radius: 1.625rem;
}

.fl-module-bb-button .bb-button .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 1rem;
    width: 1.125rem;
    height: 1.125rem;
}

.fl-module-bb-button .bb-button .bb-button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    color: #69b42d;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
}

.fl-module-bb-button .bb-button:hover .circle {
    width: 100%;
}

.fl-module-bb-button .bb-button:hover .bb-button-text {
    color: #ffffff;
}

/* Assurer la compatibilité avec le style existant */
.fl-module-bb-button .bb-button.learn-more .button-text {
    /* Compatibilité avec l'ancien nom de classe */
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    color: #69b42d;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
}

.fl-module-bb-button .bb-button.learn-more:hover .button-text {
    color: #ffffff;
}