.page-products { padding-top: var(--space-7); padding-bottom: var(--space-9); }

.page-products__head { margin-bottom: var(--space-6); }
.page-products__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-0);
    line-height: 1.05;
    margin-bottom: var(--space-3);
}
.page-products__desc {
    color: var(--text-2);
    max-width: 560px;
}

.page-products__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-6);
    align-items: flex-start;
}

.page-products__main { min-width: 0; }

.page-products__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    gap: var(--space-3);
}
.page-products__count {
    color: var(--text-2);
    font-size: 0.9rem;
}

.filters-toggle {
    display: none;
    align-items: center;
    gap: var(--space-2);
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg-0);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-0);
}

/* Sidebar */
.filters {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    background: var(--bg-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    max-height: calc(100vh - var(--header-h) - 32px);
    overflow-y: auto;
}

.filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}
.filters__head h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-0);
}
.filters__head .icon-btn { display: none; }

.filters__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.filters__group { display: flex; flex-direction: column; gap: var(--space-2); }

.filters__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: 0.02em;
}

.filters__search {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg-1);
    transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.filters__search:focus-within {
    border-color: var(--accent);
    background: var(--bg-0);
}
.filters__search svg { color: var(--text-3); flex-shrink: 0; }
.filters__search input {
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.9rem;
    width: 100%;
    color: var(--text-0);
}

.filters__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filters__range {
    width: 100%;
    accent-color: var(--accent);
}

.filters__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 26, 20, 0.5);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease);
}
.filters__backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 880px) {
    .page-products__layout { grid-template-columns: 1fr; }
    .filters-toggle { display: inline-flex; }

    .filters {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(380px, 90vw);
        max-height: 100vh;
        border-radius: 0;
        z-index: 90;
        transform: translateX(110%);
        transition: transform 0.3s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .filters.is-open { transform: translateX(0); }
    .filters__head .icon-btn { display: inline-flex; }
}
