/* Caja principal */
.lbp-box {
    position: relative;
    display: flex;
    flex-direction: column !important; /* Botón debajo del precio */
    align-items: flex-start;
    gap: 16px;
    padding: 18px 26px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #171922 0, #050609 55%, #020203 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.05);
    --lbp-price-font: 32px;
    --lbp-blur-amount: 7px;
}

/* Precio */
.lbp-price-wrapper {
    flex: 1 1 auto;
}

.lbp-price-text {
    font-weight: 600;
    font-size: var(--lbp-price-font);
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lbp-price-text.lbp-blurred {
    filter: blur(var(--lbp-blur-amount));
    transition: filter 0.25s ease;
}

.lbp-box.lbp-revealed .lbp-price-text.lbp-blurred {
    filter: blur(0);
}

/* Botón */
.lbp-button-wrapper {
    flex-shrink: 0;
    display: flex;
    width: 100%;
}

.lbp-toggle-btn {
    width: 100% !important;
    border: solid 2px #15bd68 !important;
    border-radius: 10px !important;
    padding: 15px !important;
    font-size: 1.05rem;
    font-weight: 700 !important;
    color: #03140a !important;
    background: #15bd68 !important;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7) !important;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.lbp-toggle-btn:hover {
    background: none !important;
    color: #15bd68 !important;
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.8)!important;
    opacity: .8;
}

.lbp-toggle-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,0.75) !important;
}

/* Alineación del botón */
.lbp-box.lbp-align-left .lbp-button-wrapper {
    justify-content: flex-start;
}

.lbp-box.lbp-align-center .lbp-button-wrapper {
    justify-content: center;
}

.lbp-box.lbp-align-right .lbp-button-wrapper {
    justify-content: flex-end;
}

.lbp-box.lbp-btn-full .lbp-toggle-btn {
    width: 100% !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .lbp-box {
        padding: 16px 18px;
    }

    .lbp-price-text {
        white-space: normal;
    }
}
