/**
 * BestBargains Discount Rules - Frontend Styles
 * Version: 1.3.1
 */

/* Product Badges Container */
.bbdr-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 6px 0;
}

/* Individual Badge - Compact size like BB Payment Gateway */
.bbdr-product-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #e74c3c;
    background-color: #fff;
    border: 1px solid #e74c3c;
    border-radius: 12px;
    line-height: 1.5;
    white-space: nowrap;
}

/* Badge hover effect */
.bbdr-product-badge:hover {
    background-color: #fef5f5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bbdr-product-badges {
        justify-content: flex-start;
    }

    .bbdr-product-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
}
