/* WooCommerce Multiple Buy Now Buttons - Frontend Styles */

.wc-mbnb-frontend-buttons {
    clear: both;
    margin-top: 20px !important;
    margin-bottom: 25px !important;
    padding-top: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid #e5e7eb;
}

.wc-mbnb-buy-now-button {
    display: inline-block !important;
    width: auto !important;
    min-width: 140px !important;
    max-width: max-content !important;
    padding: 10px 24px !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    line-height: 1.4 !important;
    position: relative !important;
    flex: 0 0 auto !important;
    align-self: flex-start !important;
}

.wc-mbnb-buy-now-button:hover {
    opacity: 0.85 !important;
    text-decoration: none !important;
    filter: brightness(1.1) !important;
}

.wc-mbnb-buy-now-button:active {
    opacity: 0.9 !important;
    transform: scale(0.98) !important;
}

/* Remove separator line for cleaner look */

/* Keep buttons stacked vertically on all screen sizes */

/* Mobile adjustments */
@media (max-width: 767px) {
    .wc-mbnb-buy-now-button {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }
}
