.wc-collection-layout { display: block; margin-top: 20px; }
.wc-filter-column {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.filter-header { display: flex; justify-content: space-between; align-items: center; }
.filter-header h3 { color: #ff6b35; margin: 0; font-size: 18px; }
.filter-header .clear-text { color: #0073aa; font-size: 14px; cursor: pointer; }
.filter-header .clear-text:hover { text-decoration: underline; }
.filter-section { margin-bottom:15px; }
input[type='checkbox'] { accent-color:#ff6b35; cursor:pointer; }
#price-slider { margin-top: 10px; }
#price-slider .ui-slider-handle {
  top: -6px; width: 18px; height: 18px;
  background: #ff6a00; border: 3px solid #fff;
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
#price-slider .ui-slider-range { background: #ff6a00; border-radius: 10px; }
#price-labels { display: flex; justify-content: space-between; font-size: 12px; margin-top: 8px; }
.mobile-filter-toggle {
  display:none;
  position:fixed;
  bottom:20px; right:20px;
  background:#fff; border:1px solid #ccc;
  padding:10px 16px; border-radius:30px;
  box-shadow:0 2px 6px rgba(0,0,0,0.2);
  z-index:9999; gap:6px; align-items:center;
}
.mobile-filter-toggle i { color:#ff6b35; }
@media(max-width:768px){
  .mobile-filter-toggle { display:flex; }
  #wc-collection-filters {
    position:fixed;
    top:0; right:-100%;
    width:80%; height:100%;
    background:#fff;
    z-index:9998;
    overflow-y:auto;
    transition:right 0.3s ease;
  }
  #wc-collection-filters.active { right:0; }
}
