.experience-custom-productSetImage {
  display: flex;
}
.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-button-prev::after{
  content: '';
}

.swiper-button-next::after{
  content: '';
}

.custom-product-set {
  width: 100%;
  display: flex;
}

.custom-product-set.left {
  justify-content: flex-end;
}

.product-set-global-container {
  max-width: 350px;
  position: relative;
}

@media (max-width: 1280px) {
  .product-set-global-container {
    max-width: 280px;
  }
}

@media (max-width: 1024px) {
  .custom-product-set {
    justify-content: center !important;
  }
}

/* Product card */

.product-cards {
  position: absolute;
  right: -70%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
  min-height: 100px;
}

.custom-product-set.left .product-cards {
  left: -70%;
  right: unset;
}

@media (max-width: 1280px) {
  .product-cards {
    right: -65%;
  }

  .custom-product-set.left .product-cards {
    left: -65%;
  }
}

@media (max-width: 680px) {
  .product-cards {
    right: -25%;
  }

  .custom-product-set.left .product-cards {
    left: -25%;
  }
}

.product-card-link:hover {
  color: #1e1e1e;
  text-decoration: none;
}

.product-card-link:hover .product-card,
.product-card.hovered {
  transform: scale(1.06);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.product-card {
  background-color: white;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  flex-direction: row-reverse;
  transition: 0.2s;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1280px) {
  .product-card {
    gap: 10px;
    padding: 10px 15px;
  }
}

@media (max-width: 680px) {
  .product-card {
    display: none;
  }

  .product-card.show {
    display: flex !important;
  }

  .left .experience-component.experience-custom-productCard {
    margin-left: 4rem;
  }

  .right .experience-component.experience-custom-productCard {
    margin-right: 4rem;
  }
}

.custom-product-set.left .product-cards .product-card {
  flex-direction: row;
  justify-content: flex-start;
}

.product-card-image-container {
  margin-left: auto;
}

.custom-product-set.left .product-card-image-container {
  margin-left: 0;
  margin-right: auto;
}

.product-card-image-container .product-tile-component-image {
  max-width: 60px;
  height: auto;
}

@media (max-width: 1280px) {
  .product-card-image-container .product-tile-component-image {
    max-width: 50px;
  }
}

.product-card-name-price {
  width: 160px;
}

.product-card-name-price .product-card-name {
  font-size: 16px;
  color: #1e293b;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-card-name-price .product-price {
  font-size: 14px;
  margin-top: 5px;
  color: #1e293b;
  font-weight: bold;
}

@media (max-width: 1280px) {
  .product-card-name-price {
    width: 130px;
  }

  .product-card-name-price .product-card-name {
    font-size: 14px;
  }

  .product-card-name-price .product-price {
    font-size: 13px;
  }
}

.custom-product-set.left .arrow {
  transform: rotate(180deg);
}

.product-card .arrow .arrow-product-card {
  width: 20px;
  height: auto;
  margin-right: 20px;
}

/* Points */
.product-card-point {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #64748b;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
  transition: 0.2s;
  position: absolute;
}

.product-card-point:hover {
  transform: scale(1.2);
}