/* ==========================================================
   PRODUCT TILES — special-offers / filters
   Не конфликтует с min-lp.css
   ========================================================== */

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
    padding: 0;
}

/* Карточка товара */
.product-tile {
    width: calc(25% - 18px);
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover */
.product-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

/* Ссылка целиком */
.product-tile a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Картинка */
.product-tile__img {
    height: 180px;
    background: #f1f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tile__img img {
    max-width: 90%;
    max-height: 160px;
    object-fit: contain;
}

/* Название */
.product-tile__title {
    padding: 16px;
    font-size: 15px;
    line-height: 22px;
    font-family: SeroPro-Bold, Arial, sans-serif;
    color: #222;
    min-height: 66px;
}

/* Доп. инфо (если понадобится позже) */
.product-tile__meta {
    padding: 0 16px 16px;
    font-size: 13px;
    color: #777;
}

/* =========================================
   АДАПТИВ
   ========================================= */

@media (max-width: 1300px) {
    .product-tile {
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 900px) {
    .products-grid {
        gap: 16px;
    }

    .product-tile {
        width: calc(50% - 8px);
    }

    .product-tile__img {
        height: 160px;
    }
}

@media (max-width: 520px) {
    .product-tile {
        width: 100%;
    }

    .product-tile__img {
        height: 140px;
    }
}

/* === Текст категории (как article-box) === */
.category-intro,
.category-seo p,
.category-seo li {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 12px;
    color: #222;
}

/* Заголовок SEO-блока */
.category-seo h2 {
    font-size: 22px;
    line-height: 28px;
    margin: 32px 0 16px 0;
    font-family: 'SeroPro-Bold';
}

.product-tile__price {
    font-size: 18px;
    font-family: 'SeroPro-Bold';
    color: #cc1617;
    margin-top: 8px;
}

/* =========================================
   H1 категории (Filters)
   ========================================= */

.category-title h1 {
    font-size: 48px;
    line-height: 64px;
    font-family: 'SeroPro-Bold', Arial, sans-serif;
    color: #1b1b1b;
    margin: 0 0 24px 0;
}

/* Адаптив H1 */
@media (max-width: 900px) {
    .category-title h1 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 520px) {
    .category-title h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

