/* Стили для каталога входных дверей (дополнения к catalog.css) */

/* ===== Дополнительные бейджи ===== */
.badge.mirror {
    background-color: #2196f3;
    color: white;
}
.badge.thermo {
    background-color: #ff9800;
    color: white;
}

/* ===== Два изображения в карточке товара ===== */
.product-images {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.product-images img {
    width: calc(50% - 4px);
    height: auto;
    object-fit: cover;

}

/* ===== Сетка товаров (3 колонки вместо 5) ===== */
.products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Адаптивность сетки */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }
}

.product-price .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* ===== Перекрёстные фильтры: недоступные опции ===== */
.filter-option--disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.filter-option--disabled input[type="checkbox"] {
    cursor: not-allowed;
}