.legacy-featured-products {
  display: none;
}

.product-slider-section {
  background: #f6f6f4;
}

.product-slider-section .section {
  position: relative;
}

.product-slider-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: -46px 0 26px;
}

.product-slider-btn {
  align-items: center;
  background: #242424;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  transition: background .2s ease;
  width: 42px;
}

.product-slider-btn:hover {
  background: #ff5400;
}

.product-slider-btn .svg-arrow {
  fill: #fff;
  height: 14px;
  width: 9px;
}

.product-slider-prev .svg-arrow {
  transform: rotate(180deg);
}

.product-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-slider::-webkit-scrollbar {
  height: 8px;
}

.product-slider::-webkit-scrollbar-track {
  background: #e1e1df;
}

.product-slider::-webkit-scrollbar-thumb {
  background: #242424;
}

.product-slide {
  background: #fff;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
  flex: 0 0 31%;
  min-width: 300px;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-slide .product-list-item-preview {
  background: #f4f4f2;
  border-bottom: 1px solid #ededed;
  height: 265px;
  min-height: 265px;
  overflow: hidden;
}

.product-slide .product-img {
  align-items: center;
  display: flex;
  height: 265px;
  justify-content: center;
  margin: 0;
  padding: 12px;
  width: 100%;
}

.product-slide .product-img img {
  display: block;
  max-height: 245px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.product-slide .product-list-item-info {
  box-sizing: border-box;
  min-height: 184px;
  padding: 18px 20px 20px;
  text-align: left;
}

.product-slide .product-list-item-info a {
  display: block;
  text-decoration: none;
}

.product-slide .product-list-item-info .title {
  color: #242424;
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 14px;
  min-height: 42px;
  text-decoration: underline;
  text-decoration-color: #1f61ff;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
}

.product-slide .product-description {
  color: #666;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 18px;
  min-height: 46px;
}

.product-slide .product-list-item-price {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 24px;
}

.product-slide .rating {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
}

.product-slide .rating-item {
  display: block;
  float: none;
  height: 15px;
  margin: 0;
  width: 15px;
}

.product-slide .rating-item .svg-star {
  display: block;
  fill: #ff5400;
  height: 15px;
  width: 15px;
}

.product-slide .product-price {
  color: #242424;
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}

@media screen and (max-width: 960px) {
  .product-slider-controls {
    justify-content: center;
    margin: 0 0 22px;
  }

  .product-slide {
    flex-basis: 48%;
  }
}

@media screen and (max-width: 620px) {
  .product-slide {
    flex-basis: 88%;
    min-width: 260px;
  }

  .product-slide .product-list-item-preview,
  .product-slide .product-img {
    height: 235px;
    min-height: 235px;
  }

  .product-slide .product-img img {
    max-height: 215px;
  }

  .product-slide .product-list-item-info {
    padding: 16px;
  }
}
