/* Basic styling - tweak if you want */
.bnb-buy-now-wrap {
    margin-top: 8px;
}

.bnb-buy-now-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 125px;
    padding: 12px 15px;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    margin: auto;
}

/* Make button full width on narrow screens if needed */
@media (max-width: 480px) {
    .bnb-buy-now-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}

