/* Price Action Badges */
.bpa-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 10px;
    font-weight: bold;
    background: white;
    line-height: 1;
    letter-spacing: 0.3px;
    transition: transform 0.2s, border-color 0.2s;
}

/* Action Type Specific Badges */
.bpa-badge-superdeal {
    color: #cc0000;
    border: 0.5px solid #cc0000;
}

.bpa-badge-sale {
    color: #cc3300;
    border: 0.5px solid #cc3300;
}

.bpa-badge-blackfriday {
    color: #000000;
    border: 0.5px solid #000000;
}

.bpa-badge-cybermonday {
    color: #003366;
    border: 0.5px solid #003366;
}

.bpa-badge-custom {
    color: #330066;
    border: 0.5px solid #330066;
}

/* Product Image Container */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
}

.woocommerce div.product div.images {
    position: relative;
}

/* Hide WooCommerce sale badge when BPA badge is present */
.bpa-badge ~ .onsale,
.bpa-badge ~ .woocommerce-onsale {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bpa-badge {
        font-size: 8px;
        padding: 2px 4px;
        bottom: 5px;
        left: 5px;
        background: white;
        border-radius: 4px;
    }
}

/* Badge hover effect */
.bpa-badge:hover {
    transform: translateY(-2px);
}

/* Filter buttons styling */
.bpa-filter-buttons {
    margin: 20px 0;
    text-align: center;
}

.bpa-filter-button {
    display: inline-block;
    margin: 0 5px 10px 5px;
    padding: 8px 16px;
    background-color: #f8f8f8;
    border: 2px solid #ddd;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bpa-filter-button:hover,
.bpa-filter-button.active {
    background-color: #0073aa;
    border-color: #0073aa;
    color: white;
    text-decoration: none;
}

.bpa-filter-button-superdeal.active {
    background-color: #ff4444;
    border-color: #cc0000;
}

.bpa-filter-button-sale.active {
    background-color: #ff6600;
    border-color: #cc3300;
}

.bpa-filter-button-blackfriday.active {
    background-color: #1a1a1a;
    border-color: #000000;
}

.bpa-filter-button-cybermonday.active {
    background-color: #0066cc;
    border-color: #003366;
}

.bpa-filter-button-custom.active {
    background-color: #6600cc;
    border-color: #330066;
}