/**
 * ====================================================================
 * HUSKY Products Filter - Apple-Style Minimal Design
 * ====================================================================
 * Clean, simple design inspired by Apple - No backgrounds, subtle touches
 * Update-safe! This file won't be affected by plugin updates.
 */

/* ===== Filter Top Panel Container ===== */
.woof_products_top_panel {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d2d2d7;
    border-radius: 0;
    padding: 12px 0;
    margin-bottom: 24px;
}

.woof_products_top_panel_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woof_products_top_panel_ul > li {
    margin: 0;
}

/* ===== Clear All Button (Apple Blue) ===== */
.woof_reset_button_2 {
    background: transparent;
    color: #0071e3;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.woof_reset_button_2:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
    text-decoration-color: #0071e3;
}

/* ===== Filter Tags - Minimal Clean Design ===== */
.woof_products_top_panel_ul a {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 8px 4px 0;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.2s ease;
    line-height: 1.5;
}

.woof_products_top_panel_ul a:hover {
    background: transparent;
    border-color: transparent;
    color: #1d1d1f;
    opacity: 0.6;
}

/* Hide ALL red circle/dot icons from HUSKY */
.woof_products_top_panel_ul a::before,
.woof_products_top_panel_ul a > *::before,
.woof_products_top_panel_ul a img,
.woof_products_top_panel_ul a svg {
    display: none !important;
}

/* Hide any icon elements inside the remove link */
.woof_remove_ppi::before,
.woof_remove_ppi img,
.woof_remove_ppi svg {
    display: none !important;
}

/* Remove icon - Simple × symbol */
.woof_remove_ppi {
    display: inline-block;
    padding-right: 0;
}

.woof_products_top_panel_ul a::after {
    content: "×";
    margin-left: 6px;
    font-size: 18px;
    font-weight: 300;
    color: #86868b;
    transition: color 0.2s ease;
}

.woof_products_top_panel_ul a:hover::after {
    color: #1d1d1f;
}

/* ===== Category/Attribute Groups - Clean Layout ===== */
.woof_products_top_panel_ul ul[data-container] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.woof_products_top_panel_ul ul[data-container] > li:first-child {
    font-weight: 400;
    color: #86868b;
    font-size: 14px;
    margin-right: 4px;
}

.woof_products_top_panel_ul ul[data-container] a {
    background: transparent;
    border: none;
}

/* ===== Optional: Use Team Colors Instead of Apple Blue ===== */
/* Uncomment to use your basketball team's colors */

/*
.woof_reset_button_2 {
    color: #ff6b35;
}

.woof_reset_button_2:hover {
    text-decoration-color: #ff6b35;
}
*/

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .woof_products_top_panel {
        padding: 10px 0;
    }
    
    .woof_products_top_panel_ul {
        gap: 6px;
    }
    
    .woof_reset_button_2 {
        font-size: 13px;
    }
    
    .woof_products_top_panel_ul a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .woof_products_top_panel_ul {
        gap: 6px;
    }
    
    .woof_products_top_panel_ul ul[data-container] {
        width: 100%;
    }
}

