.product-catalog-page {
    padding: 32px 0 70px;
}

.product-catalog-page__section .product__breadcrumbs {
    margin-bottom: 12px;
}

.product-catalog-page__title {
    margin: 0 0 36px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
}

.product-catalog-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.product-catalog-page__card {
    background: #f7f7f7;
    border-radius: 4px;
    padding: 45px 24px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-catalog-page__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.product-catalog-page__card-main-link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.product-catalog-page__image-wrap {
    width: 100%;
    max-width: 350px;
    height: 216px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-catalog-page__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-catalog-page__card-title {
    margin: 0;
    color: #428e19;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
}

.product-catalog-page__subcategories {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.product-catalog-page__subcategories li + li {
    margin-top: 8px;
}

.product-catalog-page__subcategories a {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-catalog-page__subcategories a:hover {
    color: #428e19;
}

@media (max-width: 1439px) {
    .product-catalog-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .product-catalog-page {
        padding: 24px 0 50px;
    }

    .product-catalog-page__title {
        font-size: 28px;
        margin-bottom: 26px;
    }

    .product-catalog-page__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .product-catalog-page__card {
        padding: 26px 16px 22px;
    }

    .product-catalog-page__image-wrap {
        height: 180px;
        margin-bottom: 14px;
    }

    .product-catalog-page__card-title {
        font-size: 24px;
    }

    .product-catalog-page__subcategories {
        margin-top: 14px;
    }

    .product-catalog-page__subcategories a {
        font-size: 15px;
    }
}
