/* ================================
   West Product Filter — Styles
   ================================ */

.west-filter-wrap {
    width: 100%;
    margin-bottom: 32px;
}

.west-filter-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

/* Groupe de filtres */
.west-filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.west-filter-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

/* Tags */
.west-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.west-filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid #e0e0e0;
    background: transparent;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}

.west-filter-tag:hover {
    border-color: #222;
    background: #f5f5f5;
}

.west-filter-tag.active {
    background: #222;
    border-color: #222;
    color: #fff;
}

/* Bouton reset */
.west-filter-reset {
    margin-top: 4px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid #e0e0e0;
    background: transparent;
    color: #888;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.18s ease;
    align-self: center;
}

.west-filter-reset:hover {
    border-color: #e00;
    color: #e00;
}

/* Loading state */
.elementor-loop-container.west-filter-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* No results */
.west-filter-no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 40px 0;
    font-size: 14px;
}
