/* Κουμπί Φίλτρα */
.sueno-filters-toggle-wrapper {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.sueno-filters-btn {
    background: transparent;
    color: #333;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.sueno-filters-btn:hover {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.sueno-filters-icon {
    font-size: 18px;
    line-height: 1;
}

/* Off-Canvas Panel - ΑΡΙΣΤΕΡΑ */
.sueno-filters-panel {
    position: fixed;
    top: 0;
    left: -350px;
    width: 100%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    z-index: 100000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.sueno-filters-panel.active {
    left: 0;
}

.sueno-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sueno-filters-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sueno-filters-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    color: #666;
    transition: color 0.3s ease;
}

.sueno-filters-close:hover {
    color: #000;
}

.sueno-filters-content {
    padding: 20px;
}

/* Overlay */
.sueno-filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}

.sueno-filters-overlay.active {
    display: block;
}

body.sueno-filters-open {
    overflow: hidden;
}

/* Για να στοιχηθεί σωστά με το toolbar */
.wc-toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sueno-filters-panel {
        max-width: 280px;
    }
    
    .sueno-filters-toggle-wrapper {
        margin-left: 10px;
    }
    
    .sueno-filters-btn {
        font-size: 13px;
    }
}

/* Filter sections */
.sueno-filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.sueno-filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    cursor: pointer;
    position: relative;
}

.sueno-filter-title:after {
    content: '▼';
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 5px;
    transition: transform 0.3s ease;
}

.sueno-filter-title.collapsed:after {
    transform: rotate(-90deg);
}

.sueno-filter-content {
    transition: all 0.3s ease;
}

.sueno-filter-content.collapsed {
    display: none;
}

/* Brands list */
.sueno-brands-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.sueno-brands-list li {
    margin-bottom: 8px;
}

.sueno-brands-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* Color swatches */
.sueno-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sueno-color-item {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.sueno-color-item:hover {
    transform: scale(1.1);
}

.sueno-color-item.active {
    border-color: #333;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}

/* Apply button */
.sueno-apply-filters {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.sueno-apply-filters:hover {
    background: #555;
}