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

.bnb-buy-now-button {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: #0073aa;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

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

