

/* Start:/local/components/novadial/product.list/templates/.default/style.css?17736695554846*/
/* Основной контейнер */
.product-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Секция фильтров */
.filters-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.filters-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.filters-section h4 {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

/* Фильтр категорий */
.category-filter {
    margin-bottom: 20px;
}

.category-filter select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    min-width: 200px;
}

.reset-filter-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 12px;
    background: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
}

.reset-filter-btn:hover {
    background: #c82333;
    text-decoration: none;
    color: white;
}

/* Фильтр тегов */
.tags-filter {
    margin-bottom: 15px;
}

.selected-tags-info {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.selected-tag-name {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 5px;
    margin-left: 5px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tag-filter-item {
    display: inline-block;
    padding: 6px 12px;
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #dee2e6;
    transition: all 0.2s;
    cursor: pointer;
}

.tag-filter-item:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.tag-filter-item.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 500;
}

.tag-filter-item.selected:hover {
    background: #dc3545;
    border-color: #dc3545;
}

/* Секция продукции */
.products-section {
    margin-top: 30px;
}

.category-section {
    margin-bottom: 40px;
}

.category-products-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

/* Информация о категории */
.category-info h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.category-description {
    color: #666;
    line-height: 1.5;
}

/* Сетка продукции */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Карточка продукции */
.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
    margin-bottom: 15px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.product-title {
    margin-bottom: 10px;
    font-size: 18px;
}

.product-title a {
    color: #333;
    text-decoration: none;
}

.product-title a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Теги продукции */
.product-tags {
    margin-bottom: 10px;
}

.product-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 12px;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 3px;
    border: 1px solid #e9ecef;
}

/* Описание продукции */
.product-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Ссылка на детальную страницу */
.product-link {
    text-align: right;
}

.detail-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.detail-link:hover {
    text-decoration: underline;
}

/* Разделитель категорий */
.category-separator {
    border: 0;
    height: 2px;
    background: #e9ecef;
    margin: 40px 0;
}

/* Сообщение об отсутствии продукции */
.no-products {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

/* Адаптивность */
@media (max-width: 768px) {
    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .tags-list {
        gap: 5px;
    }
    
    .category-filter select {
        width: 100%;
        min-width: auto;
    }
}
/* End */
/* /local/components/novadial/product.list/templates/.default/style.css?17736695554846 */
