.layout-products {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.filters-column {
    width: 220px;
}

.filters-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.filter-group {
    margin-bottom: 1rem;
}

.category-filter {
    display: block;
    padding: 4px 0;
    border: none;
    background: transparent;
    color: #0a58ca;
    text-decoration: none;
    font-size: 0.95rem;
}

.category-filter.active {
    font-weight: 600;
    color: #0a58ca;
}

.main-column {
    flex: 1;
}

.results-count {
    color: #666;
    margin-bottom: 1rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
}

.product-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background: #fafafa;
}

.product-meta {
    flex: 1;
}

.product-meta .category {
    font-size: 0.85rem;
    color: #777;
}

.product-meta .title {
    font-size: 1.25rem;
    margin: 6px 0;
    color: #112;
}

.product-actions {
    margin-top: 6px;
}

.btn-view {
    color: #0a58ca;
    background: transparent;
    border: none;
    padding: 0;
}

.product-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #e31837;
    color: #fff;
    font-size: 0.7rem;
    border-radius: 12px;
    margin-right: 8px;
}

.pagination-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .layout-products { flex-direction: column; }
    .filters-column { width: auto; }
    .product-item { flex-direction: row; }
    .product-item img { width: 100px; height: 64px; }
}
