.catalog-category-page {
    width: 100%;

}

.category__wrapper {
    width: 1400px;
    margin: 0 auto;
}

.category-navigation {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.category-navigation a {
    color: #828282;
}
.category-navigation a:nth-child(1){
    color: var(--grey-text);
}
.category-name {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 40px;
    color: var(--grey-text);
    font-size: 38px;
    font-weight: 600;
    text-align: center;
}

.subcategory__elements__wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.subcategory__element {
    width: 330px;
    height: 70px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding: 6px 8px;
    display: flex;

    align-items: center;
    margin-bottom: 30px;
}

.subcategory__element-image {
    height: 68px;
    width: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.subcategory__element-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.subcategory__element-text {
    font-size: 14px;
    color: var(--grey-text);
    font-weight: 500;
    margin-left: 20px;
}

.subcategory__goods {}

/* Только для компактности картинок товаров, не трогаем остальное */
.product-img--compact {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img{
    width: 150px;
    height: 150px;
    overflow: hidden;
}
.product-img--compact img {
  max-height: 110px;
  width: 100%;
  object-fit: contain;
  display: block;
}
