.catalog-page {
    padding: 80px 0;
}

.catalog-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.filters {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-bottom: 10px;
}

.filter-group ul {
    list-style: none;
}

.filter-group li {
    margin-bottom: 8px;
}

.price-range {
    display: flex;
    gap: 10px;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
