/** Shopify CDN: Minification failed

Line 243:1 Expected "}" to go with "{"

**/
/* ---- Общие стили для всех устройств ---- */

.ts-product-list__container {
    max-width: 1450px;
    padding: 0 13px;
    margin: 0 auto;
}

.ts-product-list__title {
    color: #000;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 auto;
}

.ts-product-list__before-title {
    color: #000;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto;
    padding-bottom: 15px;
}
.ts-product-list__subtitle {
    color: #000;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto;
    padding-top: 15px;
}

.ts-product-list__item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex-grow: 1;
    text-decoration: none;
    min-width: 170px;
}

.ts-product-list__item-image {
    max-width: 350px;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ts-product-list__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s linear;
}

.ts-product-list__hover-image {
    opacity: 0;
}

.ts-product-list__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 54px;
}

.ts-product-list__item-title {
    margin: 0;
    color: #000;
    font-family: Lato, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 16px;
    transition: all 0.3s ease;
}

.ts-product-list__item-subtitle {
    margin: 0;
    padding-top: 9px;
    color: #000;
    font-family: Lato, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease;
}

.ts-product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #f66737;
    text-align: right;
    font-family: "Avenir Next";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

/* --- Стили для цен --- */

.ts-product-list__item-price {
    font-family: "Avenir Next", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    padding-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px; /* Добавлен небольшой отступ между ценами */
}

/* Стиль для обычной цены (зачеркнутой, если есть скидка) */
.ts-product-list__item-price .price-item--regular {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

/* Стиль для цены со скидкой (новая цена) */
.ts-product-list__item-price .price-item--sale {
    color: #f66737; /* Цвет для цены со скидкой */
    font-size: 18px;
    font-weight: 700;
}

/* ---- Стили наведения для десктопов (больше 768px) ---- */

@media screen and (min-width: 769px) {
    .ts-product-list__item:hover .ts-product-list__hover-image {
        opacity: 1;
    }
    .ts-product-list__item:hover .ts-product-list__main-image {
        opacity: 0;
    }

    .ts-product-list__item:hover .ts-product-list__item-title,
    .ts-product-list__item:hover .ts-product-list__item-subtitle {
        color: #f8662b;
    }
}

/* ---- Стили для мобильных устройств (до 768px) ---- */

@media screen and (max-width: 768px) {
    /* Контейнер списка товаров */
    .ts-product-list__container {
        max-width: 100%;
        padding: 0 10px;
    }

    /* Сетка товаров на мобильных - 2 колонки */
    .ts-product-list__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        row-gap: 24px;
        margin: 0;
        padding: 0;
    }

    /* Квадратный блок с изображением */
    .ts-product-list__item-image {
        height: 0;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    /* Изображение внутри квадратного блока */
    .ts-product-list__item-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }

    /* Остальные стили для текста на мобильных */
    .ts-product-list__item-title {
        padding-top: 12px;
        font-size: 15px;
    }
    
    .ts-product-list__item-subtitle {
        padding-top: 8px;
        font-size: 15px;
    }

    .ts-product-list__item-price {
        font-size: 16px;
    }
/* Переопределение стилей для зачеркнутой цены на главной странице */
.ts-product-list__item-price .price-on-sale.price-item--regular {
  text-decoration: line-through !important;
  color: #999 !important;
  font-size: 14px !important; 
  font-weight: 500 !important;
}

/* Переопределение стилей для цены со скидкой */
.ts-product-list__item-price .price-item--sale {
  color: #f66737 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}