

/* Start:/local/templates/supertex/components/bitrix/catalog.section.list/promo_tiles_home/style.css?17556146071815*/
/* Контейнер плиток */
.promo-tiles{ margin: 12px 0 24px; }

/* Сетка 4 колонки */
.promo-tiles__grid{
    display:grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

/* Карточка */
.promo-tiles__card{
    position:relative;
    display:block;
    min-height: 440px;                 /* подгоните под макет */
    background:#ddd center/cover no-repeat;
    border-radius: 6px;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    transition: 0.5s;
}

.promo-tiles__card:hover{
    color:#3171C6;
}


/* затемняющая подложка для читаемости */
.promo-tiles__overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.35) 100%);
}

/* контент */
.promo-tiles__inner{
    position:absolute; inset:0;
    display:flex; flex-direction:column;
    justify-content:space-between;
    padding: 28px;
}

.promo-tiles__title{
    font-weight:700;
    font-size: 28px;
    line-height: 1.15;
    text-transform: uppercase;         /* как в макете */
    letter-spacing: .5px;
    max-width: 80%;
}

.promo-tiles__cta{
    align-self:flex-start;
    font-weight:600;
    font-size: 16px;
    padding: 8px 0;
    opacity:.95;
    transition: opacity .2s ease;
}
.promo-tiles__card:hover .promo-tiles__cta{ opacity: 1; }

/* адаптив */
@media (max-width: 1199px){
    .promo-tiles__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .promo-tiles__card{ min-height: 360px; }
}
@media (max-width: 575px){
    .promo-tiles__grid{ grid-template-columns: 1fr; }
    .promo-tiles__card{ min-height: 300px; }
    .promo-tiles__title{ font-size: 22px; }
}

/* End */


/* Start:/local/templates/supertex/components/bitrix/news.list/filter_presets_tiles/style.css?17555783501176*/
.preset-tiles{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}
@media (max-width:1199px){
    .preset-tiles{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:991px){
    .preset-tiles{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:575px){
    .preset-tiles{ grid-template-columns:1fr; }
}
.preset-tile{
    display:flex; flex-direction:column; text-decoration:none;
    border-radius:14px; overflow:hidden; background: transparent;
    box-shadow:0 6px 24px rgba(0,0,0,.06);
    transition:transform .15s ease, box-shadow .15s ease;
    color:#111;
}
.preset-tile:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 32px rgba(0,0,0,.10);
}
.preset-tile__img{
    padding-top:68%; background-size:cover; background-position:center; height: 480px;
}
.preset-tile__bottom{
    padding:14px 16px 16px 16px; position:relative; min-height:78px;
}
.preset-tile__title{ font-weight:800; font-size:18px; margin:0 40px 2px 0; }
.preset-tile__note{ color:#6b6b6b; font-size:14px; }
.preset-tile__arrow{
    position:absolute; right:14px; bottom:16px; font-size:20px; opacity:.45;
}

/* End */


/* Start:/local/templates/supertex/components/bitrix/catalog.section/new_arrivals_slider/style.css?17558466395995*/
/* ===== Новые поступления: базовые переменные ===== */
:root {
    --hna-title: #2F66C7;
    /* синий заголовка */
    --hna-accent: #F47A28;
    /* активная вкладка и стрелки */
    --hna-text: #1F2328;
    /* основной текст */
    --hna-muted: #7A8087;
    /* подписи/серый */
    --hna-card-bg: #fff;
    --hna-border: #E9EEF3;
    --hna-shadow: 0 8px 30px rgba(20, 31, 51, .06);
    --hna-badge-bg: #E9F9EC;
    --hna-badge-text: #1C8B2E;
}

/* ===== Заголовок блока ===== */
.home-new-arrivals {
    padding: 40px 0 24px;
}


/* ===== Вкладки ===== */
.hna-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin: 10px auto 28px;
}

.hna-tab {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    color: var(--hna-muted);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    transition: color .2s ease;
}

.hna-tab:hover {
    color: var(--hna-text);
}

.hna-tab.active {
    color: var(--hna-accent);
}

.hna-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 3px;
    background: var(--hna-accent);
    transform: translateY(0);
}

/* ===== Слайдер / карточки ===== */
.hna-slider {
    position: relative;
}

.hna-slider .swiper {
    overflow: visible;
}

.hna-card {
    display: block;
    background: var(--hna-card-bg);
    border-radius: 14px;
    padding: 10px 10px 14px;
    box-shadow: var(--hna-shadow);
    text-decoration: none;
    color: var(--hna-text);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hna-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(20, 31, 51, .10);
}

/* изображение — 1:1 с радиусом, как в макете */
.hna-card__img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #F3F5F7;
    padding-top: 100%;
    /* квадрат */
    margin: 2px 2px 12px;
}

.hna-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .25s ease;
}

.hna-card:hover .hna-card__img img {
    transform: scale(1.03);
}

/* зелёный бейдж «В наличии» в левом верхнем углу картинки */
.hna-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--hna-badge-bg);
    color: var(--hna-badge-text);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

/* кнопки-иконки в правом верхнем углу (избранное/сравнение и т.п.) */
.hna-card__actions {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.hna-card__act-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    display: grid;
    place-items: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(20, 31, 51, .08);
    transition: transform .15s ease;
}

.hna-card__act-btn:hover {
    transform: translateY(-1px);
}

/* подписи */
.hna-card__name {
    margin: 6px 6px 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 16px;
    min-height: 2.6em;
    /* 2 строки */
}

.hna-card__price {
    margin: 2px 6px 0;
    font-size: 16px;
    font-weight: 800;
}

.hna-card__per {
    margin-left: 6px;
    font-weight: 500;
    color: var(--hna-muted);
}

/* ===== Навигация слайдера — оранжевые круглые кнопки ===== */
.hna-swiper-nav {
    position: absolute;
    bottom: -8px;
    /* как в макете — под карточками */
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--hna-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(244, 122, 40, .35);
    cursor: pointer;
    z-index: 5;
    transition: transform .15s ease, box-shadow .2s ease, opacity .15s;
}

.hna-swiper-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(244, 122, 40, .45);
}

.hna-swiper-nav--prev {
    left: calc(50% - 56px);
}

.hna-swiper-nav--next {
    left: calc(50% + 12px);
}

.hna-swiper-nav.swiper-button-disabled {
    opacity: .45;
    cursor: default;
    transform: none;
}

.hna-list {
    margin-bottom: 72px;
}



/* ===== Адаптив ===== */
@media (max-width: 1280px) {
    .hna-card__name {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .hna-swiper-nav--prev {
        left: calc(50% - 52px);
    }

    .hna-swiper-nav--next {
        left: calc(50% + 8px);
    }
}

@media (max-width: 768px) {
    .home-new-arrivals {
        padding: 28px 0 18px;
    }

    .hna-tabs {
        gap: 16px;
    }

    .hna-card {
        border-radius: 12px;
    }

    .hna-card__img {
        border-radius: 12px;
        margin: 2px 2px 10px;
    }

    .hna-card__name {
        font-size: 14px;
    }

    .hna-swiper-nav {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hna-tab {
        font-weight: 600;
    }

    .hna-swiper-nav--prev {
        left: calc(50% - 48px);
    }

    .hna-swiper-nav--next {
        left: calc(50% + 8px);
    }
}
/* End */


/* Start:/local/templates/supertex/components/bitrix/catalog.section/in_transit_slider/style.css?17557457734558*/
/* ===== В пути на склад (hnt-*) ===== */
:root{
    --hnt-title:  #2F66C7;   /* цвет заголовков (если потребуется) */
    --hnt-accent: #F47A28;   /* оранжевые стрелки/акценты */
    --hnt-text:   #1F2328;
    --hnt-muted:  #7A8087;
    --hnt-card-bg:#fff;
    --hnt-border: #E9EEF3;
    --hnt-shadow: 0 8px 30px rgba(20,31,51,.06);
    --hnt-badge-green-bg:  #E9F9EC;
    --hnt-badge-green-text:#1C8B2E;
    --hnt-badge-orange-bg: #FFF2E8;
    --hnt-badge-orange-text:#D06116;
}

/* контейнер */
.hnt-slider { position: relative; }
.hnt-slider .swiper{ overflow: visible; }

/* карточка */
.hnt-card{
    display:block;
    background: var(--hnt-card-bg);
    border-radius: 14px;
    padding: 10px 10px 14px;
    box-shadow: var(--hnt-shadow);
    text-decoration:none; color: var(--hnt-text);
    transition: transform .2s ease, box-shadow .2s ease;
}
.hnt-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(20,31,51,.10);
}

/* изображение 1:1 */
.hnt-card__img{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #F3F5F7;
    padding-top: 100%;
    margin: 2px 2px 12px;
}
.hnt-card__img img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .25s ease;
}
.hnt-card:hover .hnt-card__img img{ transform: scale(1.03); }

/* бейджи */
.hnt-badge{
    position:absolute; left:10px; top:10px; z-index:2;
    display:inline-flex; align-items:center;
    padding: 4px 8px; border-radius: 6px; font-weight:700;
    font-size: 12px; line-height: 1;
}
.hnt-badge--green  { background: var(--hnt-badge-green-bg);  color: var(--hnt-badge-green-text); }
.hnt-badge--orange { background: var(--hnt-badge-orange-bg); color: var(--hnt-badge-orange-text); }

/* actions (если понадобятся) */
.hnt-card__actions{
    position:absolute; right:10px; top:10px; z-index:2;
    display:flex; gap:8px;
}

/* подписи */
.hnt-card__name{
    margin: 6px 6px 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 16px;
    min-height: 2.6em;
}
.hnt-card__price{
    margin: 2px 6px 0;
    font-size: 16px; font-weight: 800;
}
.hnt-card__per{
    margin-left: 6px;
    font-weight: 500;
    color: var(--hnt-muted);
}

/* навигация слайдера */
.hnt-swiper-nav{
    position: absolute; bottom: -8px;
    width: 44px; height: 44px; border-radius: 12px;
    display:grid; place-items:center;
    background: var(--hnt-accent);
    color:#fff; font-size: 18px; font-weight: 700;
    box-shadow: 0 10px 24px rgba(244,122,40,.35);
    cursor:pointer; z-index: 5;
    transition: transform .15s ease, box-shadow .2s ease, opacity .15s;
}
.hnt-swiper-nav:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(244,122,40,.45);
}
.hnt-swiper-nav--prev{ left: calc(50% - 56px); }
.hnt-swiper-nav--next{ left: calc(50% + 12px); }
.hnt-swiper-nav.swiper-button-disabled{
    opacity:.45; cursor: default; transform:none;
}

/* ===== Вкладки ===== */
.it-tabs{
    display:flex; flex-wrap:wrap; gap: 22px;
    justify-content:center; align-items:center;
    margin: 10px auto 28px;
}
.it-tab{
    position: relative;
    display:inline-block;
    padding: 6px 0;
    color: var(--hnt-muted);
    text-decoration:none;
    font-weight: 600;
    line-height: 1.2;
    transition: color .2s ease;
}
.it-tab:hover{ color: var(--hnt-text); }
.it-tab.active{
    color: var(--hnt-accent);
}
.it-tab.active::after{
    content:""; position:absolute; left:0; right:0; bottom:-8px;
    height:3px; border-radius:3px; background: var(--hnt-accent);
    transform: translateY(0);
}




/* адаптив */
@media (max-width: 1280px){
    .hnt-card__name{ font-size: 15px; }
}
@media (max-width: 1024px){
    .hnt-swiper-nav--prev{ left: calc(50% - 52px); }
    .hnt-swiper-nav--next{ left: calc(50% + 8px); }
}
@media (max-width: 768px){
    .hnt-card{ border-radius: 12px; }
    .hnt-card__img{ border-radius: 12px; margin: 2px 2px 10px; }
    .hnt-card__name{ font-size: 14px; }
    .hnt-swiper-nav{ width: 40px; height: 40px; border-radius: 12px; }
}
@media (max-width: 480px){
    .hnt-swiper-nav--prev{ left: calc(50% - 48px); }
    .hnt-swiper-nav--next{ left: calc(50% + 8px); }
}

/* End */


/* Start:/local/templates/supertex/components/bitrix/news.list/wholesale_tiles/style.css?17558699561154*/
.wh-section {
    text-align: center;
    margin-bottom: 40px;
}



.wh-section__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    /* серый */
    margin: 0;
}



.wh-tiles {
    margin: 48px 0;
}

.wh-tiles__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width:1200px) {
    .wh-tiles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .wh-tiles__grid {
        grid-template-columns: 1fr;
    }
}

.wh-tiles__item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wh-card {
    border-radius: 16px;
    overflow: hidden;
    /* скругляем саму картинку, ничего не обрезаем сверху */
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
}

.wh-card__img {
    display: block;
    width: 100%;
    /* показываем картинку как есть по ширине контейнера */
    height: auto;
    /* без принудительной обрезки/кропа */
}
/* End */


/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/round/style.min.css?17552081662530*/
.bx-pagination{margin:10px 0}.bx-pagination .bx-pagination-container{text-align:center;position:relative}.bx-pagination .bx-pagination-container ul{padding:0;margin:0;list-style:none;display:inline-block}.bx-pagination .bx-pagination-container ul li{display:inline-block;margin:0 2px 15px 2px}.bx-pagination .bx-pagination-container ul li span{-webkit-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-moz-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-ms-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-o-transition:color .3s ease,background-color .3s ease,border-color .3s ease;transition:color .3s ease,background-color .3s ease,border-color .3s ease;background:#eff0f1;padding:0 8px;display:block;height:32px;min-width:32px;line-height:32px;color:#444;font-size:14px;border-radius:16px;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-pagination .bx-pagination-container ul li a{text-decoration:none;display:block;border-radius:16px;height:32px;min-width:32px;line-height:32px;color:#444;vertical-align:middle}.bx-pagination .bx-pagination-container ul li a:hover span{background:#dadada}.bx-pagination .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a span{background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px;color:#444}.bx-pagination .bx-pagination-container ul li.bx-pag-all span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,.bx-pagination .bx-pagination-container ul li.bx-pag-next span{color:#aab1b4;background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px}.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span{background:#fff;border-color:#dadada;color:#000}.bx-pagination.bx-green .bx-pagination-container ul li.bx-active span{background:#3bc915;color:#fff}.bx-pagination.bx-yellow .bx-pagination-container ul li.bx-active span{background:#f9a91d;color:#fff}.bx-pagination.bx-red .bx-pagination-container ul li.bx-active span{background:#e22b2b;color:#fff}.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}
/* End */


/* Start:/local/templates/supertex/components/bitrix/catalog.item/bootstrap_v4/style.css?175638238629219*/
.product-item-container {
	position: relative;
}

.product-item-container.hover {
	z-index: 17;

}

.product-item {
	display: block;
	box-sizing: border-box;
	padding-top: 15px;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 2px;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .19);

}

.product-item-big-card .product-item,
.product-item-small-card .product-item {}

.product-item-line-card .product-item {
	border-bottom: 1px solid #dadada;
}

.bx-no-touch .product-item-container.hover .product-item {
	position: absolute;
	right: -15px;
	left: -15px;
	padding: 15px 15px 0;
	width: auto;
	border-color: transparent;
	box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
	background: none;
}

.bx-touch .product-item {
	padding: 15px 0 0;
	width: auto;


}

.bx-no-touch .product-item-container.hover .product-item {
	-webkit-animation: product-item-hover 300ms 1 ease;
	animation: product-item-hover 300ms 1 ease;
}

@-webkit-keyframes product-item-hover {
	0% {
		position: absolute;
		left: 0;
		right: 0;
		border: 1px solid transparent;
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		padding-left: 0;
		padding-right: 0;
	}

	100% {
		border: 1px solid transparent;
		box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
		left: -15px;
		right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@keyframes product-item-hover {
	0% {
		position: absolute;
		left: 0;
		right: 0;
		border: 1px solid transparent;
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		padding-left: 0;
		padding-right: 0;
	}

	100% {
		border: 1px solid transparent;
		box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
		left: -15px;
		right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*Image*/
.product-item-image-wrapper {
	position: relative;
	display: block;
	margin-bottom: 0;
	padding-top: 116%;
	width: 100%;
	transition: all 300ms ease;
}

.product-item-image-wrapper:hover {}

.product-item-container.hover.product-item-scalable-card .product-item-image-wrapper {
	padding-top: 54%;
}

.product-item-image-original,
.product-item-image-alternative {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: opacity 300ms linear;
}

.product-item-image-original {
	z-index: 11;
}

.product-item-image-alternative {
	z-index: 13;
	opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-original {
	opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-alternative {
	opacity: 1;
}

.product-item-big-card .product-item-image-wrapper {
	margin-bottom: 25px;
}

/*Image Slider*/
.product-item-image-slider-slide-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	transition: opacity 300ms ease;
}

.product-item-image-slide {
	position: relative;
	display: none;
	height: 100%;
	background-color: #fff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .6s ease-in-out left;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
	.product-item-image-slide {
		transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px;
	}

	.product-item-image-slide.next,
	.product-item-image-slide.active.right {
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	.product-item-image-slide.prev,
	.product-item-image-slide.active.left {
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.product-item-image-slide.next.left,
	.product-item-image-slide.prev.right,
	.product-item-image-slide.active {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.product-item-image-slider-slide-container>.active,
.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
	display: block;
}

.product-item-image-slider-slide-container>.active {
	left: 0;
}

.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.product-item-image-slider-slide-container>.next {
	left: 100%;
}

.product-item-image-slider-slide-container>.prev {
	left: -100%;
}

.product-item-image-slider-slide-container>.next.left,
.product-item-image-slider-slide-container>.prev.right {
	left: 0;
}

.product-item-image-slider-progress-bar-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
}

.product-item-image-slider-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	height: 1px;
	background-color: var(--theme-color-primary);
	opacity: .8;
}

.product-item-image-slider-control-container {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	display: block;
	padding: 0;
	text-align: center;
	opacity: 0;
	transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container {
	opacity: 1;
}

.product-item-image-slider-control,
.product-item-image-slider-control.active {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(128, 128, 128, .8);
	opacity: .6;
	cursor: pointer;
	transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover {
	cursor: pointer;
}

.product-item-image-slider-control.active,
.product-item-image-slider-control:hover {
	background-color: var(--primary);
}

/*Label*/
.product-item-label-text,
.product-item-label-ring {
	position: absolute;
	z-index: 15;
}

.product-item-label-text span,
.product-item-label-ring {
	display: inline-block;
	clear: both;
	margin-bottom: 2px;
	background: #f42c2c;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	transition: all 250ms ease;
}

.bx-red .product-item-label-text span,
.bx-red .product-item-label-ring {
	background-color: #fba90c;
}

.product-item-label-text>div,
.product-item-label-ring>div {
	line-height: 0;
}

/* TEXT */
.product-item-label-text span {
	padding: 2px 5px;
	vertical-align: middle;
	font-weight: bold;
}

/*SMALL*/
.product-item-label-text.product-item-label-small span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
	margin-bottom: 1px;
	padding: 2px 7px;
	font-weight: normal;
	font-size: 13px;
	line-height: 14px;
}

.product-item-big-card .product-item-label-text.product-item-label-small span {
	padding: 5px 12px;
	font-size: 16px;
	line-height: 21px;
}

/* BIG */
.product-item-label-text.product-item-label-big span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
	padding: 4px 10px;
	font-size: 13px;
	line-height: 17px;
}

.product-item-big-card .product-item-label-text.product-item-label-big span {
	padding: 5px 17px;
	font-size: 22px;
	line-height: 33px;
}

@media (max-width: 767px) {
	.product-item-label-text>div {
		line-height: 0;
	}

	.product-item-label-text.product-item-label-small span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
		margin-bottom: 1px;
		padding: 2px 7px;
		font-size: 10px;
		line-height: 14px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-small span,
	.product-item-label-text.product-item-label-big span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
		margin-bottom: 1px;
		padding: 3px 12px;
		font-size: 14px;
		line-height: 16px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-big span {
		padding: 3px 12px;
		font-size: 20px;
		line-height: 25px;
	}
}

/*RING*/
.product-item-label-ring {
	box-sizing: border-box;
	border-radius: 50%;
	font-weight: bold;
}

.product-item-label-ring.product-item-label-small,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
}

.product-item-big-card .product-item-label-ring.product-item-label-small {
	width: 100px;
	height: 100px;
	font-size: 30px;
	line-height: 100px;
}

.product-item-label-ring.product-item-label-big,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
	width: 50px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
}

.product-item-big-card .product-item-label-ring.product-item-label-big {
	width: 120px;
	height: 120px;
	font-size: 42px;
	line-height: 120px;
}

@media (max-width: 767px) {

	.product-item-label-ring.product-item-label-small,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
		--product-item-label-ring-size: 40px;
		width: var(--product-item-label-ring-size);
		height: var(--product-item-label-ring-size);
		line-height: var(--product-item-label-ring-size);
		font-size: 14px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-small,
	.product-item-label-ring.product-item-label-big,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
		width: 35px;
		height: 35px;
		font-size: 12px;
		line-height: 35px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-big {
		width: 70px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
	}
}

.product-item-label-top {
	top: -5px;
}

.product-item-label-center {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.product-item-label-center>div {
	text-align: center;
}

.product-item-label-left {
	left: -5px;
}

.product-item-label-left>div {
	text-align: left;
}

.product-item-label-bottom {
	bottom: -5px;
}

.product-item-label-middle {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.product-item-label-right {
	right: -5px;
}

.product-item-label-right>div {
	text-align: right;
}

.product-item-label-center.product-item-label-middle {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/*Title*/
.product-item-title {
	overflow: hidden;
	margin: 0;
	padding: 0;
	text-overflow: ellipsis;
	white-space: nowrap;

	text-align: left;
	text-transform: uppercase;
	margin-top: -12px;

}

.product-item-title a {
	color: #3B3C3B;
	text-decoration: none;

	font-size: 18px;
	font-weight: 500;
	transition: 0.5s;

}

.product-item-title a:hover {
	color: #3171C6;

}


.product-item-line-card .product-item-title {
	white-space: normal;
	text-align: left;
}

.product-item-big-card .product-item-title a {
	font-size: 21px;
}

.product-item-line-card .product-item-title a {
	font-size: 20px;
}

@media (max-width: 1199px) {
	.product-item-big-card .product-item-title a {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.product-item-big-card .product-item-title a {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.product-item-big-card .product-item-title a {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.product-item-big-card .product-item-title a {
		font-size: 16px;
	}
}

/*Price*/
.product-item-price-container {
	text-align: center;
	line-height: 1;
}

.product-item-price-current {
	color: #3f3f3f;
	white-space: nowrap;
	font-weight: bold;
	font-size: 13px;
}

.product-item-price-old {
	color: #a5a5a5;
	text-decoration: line-through;
	white-space: nowrap;
	font-size: 12px;
}

.product-item-big-card .product-item-price-current,
.product-item-big-card .product-item-price-old {
	vertical-align: middle;
	line-height: 20px;
}

.product-item-big-card .product-item-price-container {
	margin: 0 0 10px;
}

.product-item-big-card .product-item-price-current {
	font-size: 18px;
}

.product-item-big-card .product-item-price-old {
	font-size: 15px;
}

/*Info*/
.product-item-info-container {
	clear: both;
	margin-bottom: 8px;
}

.product-item-info-container-title {
	font-size: 12px;
}

.bx-no-touch .product-item-container .product-item-info-container.product-item-hidden {
	display: none;
	opacity: 0;
	transition: opacity 300ms ease;
}

.bx-touch .product-item-info-container.product-item-touch-hidden {
	display: none !important
}

.bx-touch .product-item-info-container.product-item-hidden,
.bx-no-touch .product-item-container.hover .product-item-info-container.product-item-hidden,
.product-item-line-card .product-item-container .product-item-info-container.product-item-hidden {
	display: block;
	opacity: 1;
}

/*Amount*/
.product-item-amount {
	padding: 0 0 2px;
	text-align: center;
}

.product-item-amount-field-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	max-width: 150px;
	margin: 0 auto 15px;
}


.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
	position: relative;
	display: block;
	min-width: 22px;
	height: 22px;
	border-radius: 2px;
	background-color: #f2f2f2;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	transition: background 300ms ease, opacity 300ms ease;
}

.bx-retina .product-item-amount-field-btn-plus,
.bx-retina .product-item-amount-field-btn-minus {
	border-width: .5px;
}

.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-minus:hover {
	background: #d3d3d3;
}

.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-minus:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	opacity: .8;
	transition: opacity 300ms ease, background 300ms ease;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:after {
	opacity: .3 !important;
	cursor: default;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:hover {
	background-color: #f2f2f2;
}

.product-item-amount-field-btn-plus:after {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxwYXRoIGZpbGw9IiM1MjVDNjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE4LDEyIEwxOCwwIEwxMiwwIEwxMiwxMiBMMCwxMiBMMCwxOCBMMTIsMTggTDEyLDMwIEwxOCwzMCBMMTgsMTggTDMwLDE4IEwzMCwxMiBMMTgsMTIgWiIvPjwvc3ZnPg==) no-repeat center;
	background-size: 10px;
}

.product-item-amount-field-btn-minus:after {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSI2IiB5PSIxMiIgZmlsbD0iIzUyNUM2OCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) no-repeat center;
	background-size: 10px;
}

.product-item-amount-field-btn-plus:hover:after,
.product-item-amount-field-btn-minus:hover:after {
	opacity: 1;
}

.product-item-amount-field-block {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.product-item-amount-field {
	display: block;
	padding: 0;
	width: 100%;
	height: 22px;
	border: 1px solid transparent;
	border-radius: 2px;
	background: transparent !important;
	color: #000;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	line-height: 22px;
	transition: border 300ms ease;
}

.bx-retina .product-item-amount-field {
	border-width: .5px;
}

.product-item-amount-field:focus {
	outline: none !important;
}

.bx-no-touch input.product-item-amount-field::-webkit-outer-spin-button,
.bx-no-touch input.product-item-amount-field::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
	appearance: none
}

.product-item-amount-description-container {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	color: #a5a5a5;
	white-space: nowrap;
	font-size: 12px;
}

/*.product-item-big-card .product-item-amount-field-container { text-align: left; }*/

.product-item-amount-description-container strong {
	color: #333;
	white-space: nowrap;
}

.product-item-amount-label-container {
	margin: 5px 0;
	color: #a5a5a5;
	font-weight: bold;
	font-size: 12px;
}

/**/
.product-item-quantity {
	font-size: 12px;
}

/*region Properties */
.product-item-properties {
	display: block;
	margin: 0;
}

.product-item-properties dl {
	clear: both;
}

.product-item-properties dt {
	float: left;
	clear: both;
	font-weight: normal;
	font-size: 12px;
}

.product-item-properties dd {
	float: right;
	margin-bottom: 3px;
	margin-left: 5px;
	font-size: 12px;
}

/*endregion*/

/*Compare*/
.product-item-compare-container {
	position: relative;
	display: none;
	margin: 0 -15px;
	padding: 4px 15px;
	min-height: 30px;
	border-top: 1px solid #e6e6e6;
	background: #f3f3f3;
	box-shadow: inset 0 1px 1px 0 #eee;
	vertical-align: middle;
	font-size: 12px;
	line-height: 20px;
}

.product-item-line-card .product-item-compare-container {
	margin: 0;
	border: none;
	background-color: transparent;
	box-shadow: none;
	text-align: center;
}

.bx-touch .product-item-compare-container {
	display: none;
}

.product-item-line-card .product-item-compare-container,
.product-item-container.hover .product-item-compare-container {
	display: block;
}

.product-item-compare .checkbox {
	margin: 0;
	padding: 0;
}

/* SCU */
.product-item-line-card .product-item-scu-container {
	text-align: left;
}

.product-item-scu-container-title {
	color: #333;
	font-size: 12px;
}

.product-item-scu-block {}

.product-item-scu-block-title {
	font-size: 12px;
}

.product-item-scu-list {
	margin: 0;
}

.product-item-scu-item-list {
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-item-scu-item-color-container,
.product-item-scu-item-text-container {
	display: inline-block;
	box-sizing: border-box;
	padding: 5px 3px;
	max-width: 100%;
}

.product-item-scu-item-text-container {
	min-width: 32px;
}

.product-item-scu-item-color-container {
	max-width: 38px;
	width: 25%;
}

.product-item-scu-item-color-block {
	position: relative;
	padding-top: 100%;
	outline: 1px solid #c0cfda;
	cursor: pointer;
}

.bx-no-touch .product-item-scu-item-color-block {
	transition: outline 200ms ease;
}

.bx-retina .product-item-scu-item-color-block {
	outline-width: .5px;
}

.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
	outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-color-block {
	outline-width: 1px;
}

.product-item-scu-item-color {
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.product-item-scu-item-text-block {
	position: relative;
	padding: 0 5px;
	outline: 1px solid #c0cfda;
	cursor: pointer;
}

.bx-no-touch .product-item-scu-item-text-block {
	transition: outline 300ms ease;
}

.bx-retina .product-item-scu-item-text-block {
	outline-width: .5px;
}

.product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
	outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-text-block {
	outline-width: 1px;
}

.product-item-scu-item-text {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
	text-align: center;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 11px;
	line-height: 18px;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block {
	position: relative;
	outline-color: #a9adb4 !important;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block:after,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after {
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	background: rgba(255, 255, 255, 0.75) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
	background-size: 80% 80%;
	content: "";
}


.product-item-scu-item-text-block:hover,
.product-item-scu-item-color-block:hover,
.product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
	outline-color: #000;
}

/*Description*/
.product-item-description-container {}

.product-item-description-container p {
	color: #575757;
	font-size: 13px;
}

/*Buttons*/
.product-item-button-container {
	text-align: center;
}

.product-item-button-container .btn {
	margin-bottom: 2px;
}

/*Stickers*/
.product-item-sticker,
.product-item-sticker-round {
	display: none;
}

/*More*/
.product-item-more-container {
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 15px 15px 5px;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 2px;
	transition: all 300ms ease;
}

.product-item-more-wrapper {
	position: relative;
	display: block;
	margin-bottom: 15px;
	padding-top: 116%;
	width: 100%;
}

.product-item-more {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-size: 50%;
	opacity: .7;
	transition: opacity 300ms ease;
}

.bx-touch .product-item-more,
.product-item-container.hover .product-item-more {
	opacity: 1;
	background: none;
}

.product-item-more-title {
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input[type='number'] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}






/* === STX: статичные карточки === */
.product-item,
.product-item-container {
	transition: none !important;
}

.product-item:hover,
.product-item-container:hover {
	transform: none !important;
	box-shadow: none !important;
}

/* показать все секции на всякий случай */
.product-item [data-entity="price-block"],
.product-item [data-entity="props-block"],
.product-item [data-entity="sku-block"],
.product-item [data-entity="quantity-block"],
.product-item [data-entity="buttons-block"] {
	opacity: 1 !important;
	visibility: visible !important;
	height: auto !important;
	transform: none !important;
	display: block !important;
}

/* qty и price — в одну строку */
.product-item [data-entity="quantity-block"],
.product-item .product-item-price-container {
	display: inline-block;
	width: 50%;
	vertical-align: middle;
}

.product-item [data-entity="sku-block"],
.product-item [data-entity="buttons-block"],
.product-item [data-entity="props-block"] {
	display: block;
	width: 100%;
}

/* большая кнопка */
.product-item [data-entity="buttons-block"] .btn {
	width: 100%;
	height: 44px;
	font-size: 18px;
	border-radius: 10px;
	line-height: 32px;

}

/* скрыть следы слайдера/оверлеев, если где-то остались */
.product-item .product-item-image-slider,
.product-item .product-item-image-slider-control,
.product-item .product-item-image-slider-progress-bar,
.product-item .product-item-image-overlay {
	display: none !important;
}

/* иконки сравнения/избранного (если не нужны) */
.product-item .product-item-compare-container,
.product-item .product-item-favorite,
.product-item .product-item-favorite-container {
	display: none !important;
}

/* STX: фикс белого слоя — всегда показываем оригинальную картинку */
.product-item .product-item-image-original {
	display: block;
	opacity: 1;
}

.product-item:hover .product-item-image-original {
	display: block !important;
	opacity: 1 !important;
}

/* Никаких "вторых" картинок/слайдера/оверлеев при ховере */
.product-item:hover .product-item-image-alternative,
.product-item:hover .product-item-image-slider-slide-container,
.product-item:hover .product-item-image-slider-control-container,
.product-item:hover .product-item-image-slider-progress-bar-container,
.product-item:hover .product-item-image-overlay {
	display: none !important;
}

/* На всякий — убираем псевдо-оверлеи у обёртки, если были в теме */
.product-item .product-item-image-wrapper:before,
.product-item .product-item-image-wrapper:after {
	display: none !important;
	content: none !important;
}

/* краткая строка под названием */
.stx-brief {
	margin: -2px 0 8px;
	color: #8a8f98;
	font-size: 14px;
	line-height: 1.3;
}

/* блок цветов */
.stx-colors {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* текст влево, цвета вправо */
	margin: 6px 0 12px;
}

.stx-colors__label {
	font-size: 16px;
	margin-bottom: 6px;
	color: #4a4f57;
}

.stx-colors__list {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

.stx-colors__sw {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e3e5e8;
}

.stx-colors__sw img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.stx-qtyrow {
	display: flex;
	justify-content: space-between;
	/* qty слева, цена справа */
	align-items: center;
	gap: 16px;
	margin: 12px 0;
}

.stx-qty {
	display: flex;
	align-items: center;
	gap: 12px;
}

.product-item-amount-field-block {
	width: 56px;
}

.product-item-amount-field {
	width: 100%;
	text-align: center;
	-moz-appearance: textfield;
}

.product-item-amount-field::-webkit-outer-spin-button,
.product-item-amount-field::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.product-item-amount-field-btn-minus,
.product-item-amount-field-btn-plus {
	cursor: pointer;
	user-select: none;
	font-size: 20px;
	line-height: 1;
}

.stx-qty-price {
	text-align: right;
	margin-left: auto;
	white-space: nowrap;

}



.stx-price-old {
	text-decoration: line-through;
	opacity: .6;
	font-size: 12px;
}

.stx-price {
	font-weight: 700;
	font-size: 18px;
}

.product-item-price-current {
	display: none !important;
}

/* выстроить количество и цену в одну строку */
.product-item .stx-qtyrow[data-entity="quantity-block"] {
	display: flex !important;
	/* перебиваем block/inline-block */
	width: 100% !important;
	/* убираем старое 50% */
	align-items: center;
	gap: 16px;
	flex-wrap: nowrap;
	/* не переносить */
}

/* левая часть */
.stx-qty {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.stx-qty {
	display: flex;
	align-items: center;
	gap: 8px;
}

.product-item-amount-field-block {
	width: 80px;
}

.product-item-amount-field {
	width: 100%;
	text-align: center;
}

.product-item-amount-field-btn-minus,
.product-item-amount-field-btn-plus {
	cursor: pointer;
	padding: 4px 8px;
	user-select: none;
}

.stx-qty-unit {
	opacity: 0.7;
	font-size: 12px;
}

.stx-incart {
	margin-top: 8px;
}






@media (max-width: 480px) {
	.stx-qtyrow {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.stx-qty-price {
		text-align: left;
	}
}

.product-item-image-wrapper {
  position: relative;
}

/* === избранное === */
.stx-fav-btn {
  position: absolute;
  top: 36px;
  right: 12px;           /* край справа */
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  z-index: 999;
  pointer-events: auto;
}
.stx-fav-btn .stx-fav-hit {
  position: absolute;
  inset: -8px;
  content: "";
  display: block;
}

/* === сравнение === */
.stx-cmp-btn {
  position: absolute;
  top: 36px;
  right: 56px;           /* сместили левее сердца */
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  z-index: 999;
  pointer-events: auto;
}
.stx-cmp-btn .stx-cmp-hit {
  position: absolute;
  inset: -8px;
  content: "";
  display: block;
}

/* отключаем стандартные обводки */
.stx-fav-btn:focus,
.stx-fav-btn:focus-visible,
.stx-fav-btn:active,
.stx-cmp-btn:focus,
.stx-cmp-btn:focus-visible,
.stx-cmp-btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Чтобы картинки внутри не ловили клики */
.stx-fav-btn img,
.stx-cmp-btn img {
  pointer-events: none;
}










/* End */


/* Start:/local/templates/supertex/components/bitrix/news.list/blog_slider/style.css?17557578321422*/
/* секция */
.blog-slider{ margin:24px 0 48px 0; }

/* карточка */
.blog-card{
    position:relative;
    display:block;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
}
.blog-card__img{
    display:block; width:100%; height:320px; object-fit:cover;
}
@media (max-width:1024px){ .blog-card__img{ height:260px; } }
@media (max-width:768px){  .blog-card__img{ height:220px; } }

.blog-card__overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
    pointer-events:none;
}

.blog-card__title{
    position:absolute; left:20px; bottom:18px; right:56px;
    color:#fff; font-weight:700; line-height:1.25; font-size:18px;
    text-shadow:0 2px 8px rgba(0,0,0,.35);
}

.blog-card__arrow{
    position:absolute; right:16px; bottom:14px;
    width:28px; height:28px; border-radius:8px;
    background:#ff7a1a; color:#fff; display:flex; align-items:center; justify-content:center;
    font-size:16px; line-height:1;
}

/* стрелки под слайдером */
.blog-nav{
    display:flex; gap:12px; justify-content:center; margin-top:18px;
}
.blog-nav__btn{
    width:44px; height:44px; border-radius:10px; border:0; cursor:pointer;
    background:#ff7a1a; color:#fff; font-size:20px; line-height:1;
}
.blog-nav__btn:disabled{ opacity:.45; cursor:default; }

/* End */


/* Start:/local/templates/supertex/components/bitrix/news.list/plain_tiles_4/style.css?17558459761103*/
/* заголовок/подзаголовок — как выше делали */

.wh-section__desc {
    text-align: center;
    margin: 0 0 36px;
    font-size: 18px;
    color: #333;
}

/* сетка из 4 карточек */
.svc-tiles {
    margin: 32px 0 64px;
}

.svc-tiles__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:1200px) {
    .svc-tiles__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:900px) {
    .svc-tiles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .svc-tiles__grid {
        grid-template-columns: 1fr;
    }
}

.svc-tiles__item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.svc-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.svc-card__img {
    display: block;
    width: 100%;
    height: auto;
    /* картинку показываем как загрузили */
}
/* End */
/* /local/templates/supertex/components/bitrix/catalog.section.list/promo_tiles_home/style.css?17556146071815 */
/* /local/templates/supertex/components/bitrix/news.list/filter_presets_tiles/style.css?17555783501176 */
/* /local/templates/supertex/components/bitrix/catalog.section/new_arrivals_slider/style.css?17558466395995 */
/* /local/templates/supertex/components/bitrix/catalog.section/in_transit_slider/style.css?17557457734558 */
/* /local/templates/supertex/components/bitrix/news.list/wholesale_tiles/style.css?17558699561154 */
/* /bitrix/components/bitrix/system.pagenavigation/templates/round/style.min.css?17552081662530 */
/* /local/templates/supertex/components/bitrix/catalog.item/bootstrap_v4/style.css?175638238629219 */
/* /local/templates/supertex/components/bitrix/news.list/blog_slider/style.css?17557578321422 */
/* /local/templates/supertex/components/bitrix/news.list/plain_tiles_4/style.css?17558459761103 */
