/* Styles for the new catalog */

.slider-product-item__wrapper {
	height: stretch;
	height: -webkit-fill-available;
}

#.slider-product-item,.products__item-title-wrapper,.products__item-price{
	display: none;
}

#.products__item {
    border: solid;
}

#.products__item-price, .products__item-title-wrapper, a.slider-product-item {
	border: solid 1px red;
}



.slider-product-item__wrapper {
    height: auto;
}
.slider-product-item__wrapper-dop {
    height: auto;
}

.slider-product-item__wrapper a {
    position: relative;
}

@media (max-width: 767px) {
	.slider-product-item__trigger-list {
		opacity: 1;
	}
}

/* 1. Ставим aspect-ratio для изображений */
.slider-product-item__list {
  aspect-ratio: 450 / 675;
  background: #f5f5f5;
  overflow: hidden;
}

/* 2. Фиксируем высоту для текстового контента */
.products__item-title-wrapper {
  min-height: 65px;
}

.products__item-price {
  min-height: 30px;
}

/* 3. Опционально - плавное появление */
.products__item {
  transition: opacity 0.2s;
}

.products__item.hide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
}


