.toouch-rail-shell{
  --toouch-gap: 16px;
  --toouch-text: #111111;
  --toouch-muted: rgba(17,17,17,.62);
  --toouch-sale: #9b1d1d;
  --toouch-ratio: 4 / 5;
  width: 100%;
  font-family: inherit;
  color: var(--toouch-text);
}

.toouch-product-wrapper{
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 0 !important;
}

.toouch-product-wrapper .swiper-wrapper{
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  align-items: stretch;
}

.toouch-product-wrapper .swiper-slide{
  box-sizing: border-box;
  margin: 0 !important;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.toouch-product-card{
  position: relative;
  overflow: hidden;
  height: 100%;
}

.toouch-product-img{
  position: relative;
  aspect-ratio: var(--toouch-ratio);
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  background: #f6f5f3;
}

.toouch-product-img a{
  display: block;
  width: 100%;
  height: 100%;
}

.toouch-product-img img{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  max-width: none;
  filter: none !important;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transition: opacity .35s ease;
  will-change: opacity;
}

.toouch-product-img .main-img{
  opacity: 1;
}

.toouch-product-img .hover-img{
  opacity: 0;
  pointer-events: none;
}

.toouch-product-card.is-hovered .main-img,
.toouch-product-card:hover .main-img{
  opacity: 0;
}

.toouch-product-card.is-hovered .hover-img,
.toouch-product-card:hover .hover-img{
  opacity: 1;
}

.toouch-product-info{
  padding: 14px 0 0;
  text-align: center;
}

.toouch-product-info .product-title{
  margin: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.toouch-product-info .product-title a{
  color: inherit;
  text-decoration: none;
}

.toouch-product-info .product-title a:hover{
  opacity: .7;
}

.toouch-product-info .price,
.toouch-product-info .sale-price,
.toouch-product-info .price .amount,
.toouch-product-info .sale-price .amount{
  font-family: inherit;
  font-size: 11px;
  line-height: 1.5;
}

.toouch-price-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  letter-spacing: .05em;
}

.toouch-product-info .price{
  color: var(--toouch-muted);
  font-weight: 500;
}

.toouch-product-info .price.price-regular{
  text-decoration: line-through;
  opacity: .72;
}

.toouch-product-info .sale-price{
  color: var(--toouch-sale);
  font-weight: 600;
}

.toouch-rail-footer,
.toouch-rail-progress,
.toouch-rail-progress-fill,
.toouch-rail-btn{
  display: none !important;
}

.toouch-product-wrapper.swiper-initialized .swiper-slide,
.toouch-product-wrapper.swiper-initialized .swiper-slide:not(.swiper-slide-visible),
.toouch-product-wrapper.swiper-initialized .swiper-slide-visible{
  opacity: 1 !important;
  filter: none !important;
}

.toouch-product-wrapper[data-toouch-editor="1"]{
  overflow: visible !important;
}

.toouch-product-wrapper[data-toouch-editor="1"] .swiper-wrapper{
  display: grid !important;
  grid-template-columns: repeat(var(--toouch-col-mobile, 2), minmax(0,1fr));
  gap: var(--toouch-gap);
  transform: none !important;
  width: 100% !important;
}

.toouch-product-wrapper[data-toouch-editor="1"] .swiper-slide{
  width: auto !important;
  min-width: 0;
  margin-right: 0 !important;
}

.toouch-product-wrapper[data-toouch-editor="1"] .swiper-slide-duplicate{
  display: none !important;
}

@media (min-width: 768px){
  .toouch-product-wrapper[data-toouch-editor="1"] .swiper-wrapper{
    grid-template-columns: repeat(var(--toouch-col-tablet, 3), minmax(0,1fr));
  }
}

@media (min-width: 1024px){
  .toouch-product-wrapper[data-toouch-editor="1"] .swiper-wrapper{
    grid-template-columns: repeat(var(--toouch-col-laptop, 4), minmax(0,1fr));
  }
}

@media (min-width: 1280px){
  .toouch-product-wrapper[data-toouch-editor="1"] .swiper-wrapper{
    grid-template-columns: repeat(var(--toouch-col-desktop, 5), minmax(0,1fr));
  }
}

@media (max-width: 1024px){
  .toouch-rail-shell{
    --toouch-gap: 13px;
  }

  .toouch-product-info{
    padding-top: 12px;
  }

  .toouch-product-info .product-title,
  .toouch-price-row,
  .toouch-product-info .price,
  .toouch-product-info .sale-price,
  .toouch-product-info .price .amount,
  .toouch-product-info .sale-price .amount{
    font-size: 10px;
  }
}

@media (max-width: 767px){
  .toouch-rail-shell{
    --toouch-gap: 10px;
  }

  .toouch-product-info{
    padding-top: 10px;
  }

  .toouch-product-info .product-title{
    font-size: 9px;
    letter-spacing: .12em;
    line-height: 1.45;
  }

  .toouch-price-row,
  .toouch-product-info .price,
  .toouch-product-info .sale-price,
  .toouch-product-info .price .amount,
  .toouch-product-info .sale-price .amount{
    font-size: 9px;
  }
}
