hs-product-carousel {
  display: block;
  min-width: 0;
}

hs-product-carousel .hs-product-carousel__splide {
  padding-block: 10px;
}

hs-product-carousel .splide__slide > product-card {
  display: block;
  width: var(--card-width, 241px);
  min-width: 0;
}

hs-product-carousel .hs-product-carousel__skeleton {
  display: flex;
  gap: 10px;
  padding-block: 22px;
  overflow: hidden;
}

hs-product-carousel .hs-product-carousel__skeleton-card {
  position: relative;
  display: flex;
  flex: 0 0 var(--card-width, 241px);
  flex-direction: column;
  gap: 10px;
  min-height: 500px;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.078);
}

hs-product-carousel .hs-product-carousel__skeleton-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  animation: hs-product-carousel-shimmer 1.4s infinite;
}

hs-product-carousel .hs-product-carousel__skeleton-image,
hs-product-carousel .hs-product-carousel__skeleton-line,
hs-product-carousel .hs-product-carousel__skeleton-price,
hs-product-carousel .hs-product-carousel__skeleton-button {
  display: block;
  background: #e9ecef;
  border-radius: 6px;
}

hs-product-carousel .hs-product-carousel__skeleton-image {
  height: var(--card-width, 241px);
  margin-bottom: 10px;
}

hs-product-carousel .hs-product-carousel__skeleton-line {
  width: 100%;
  height: 14px;
}

hs-product-carousel .hs-product-carousel__skeleton-line--short {
  width: 45%;
}

hs-product-carousel .hs-product-carousel__skeleton-line--medium {
  width: 70%;
}

hs-product-carousel .hs-product-carousel__skeleton-price {
  width: 40%;
  height: 24px;
  margin-top: auto;
}

hs-product-carousel .hs-product-carousel__skeleton-button {
  width: 100%;
  height: 40px;
  border-radius: 20px;
}

@keyframes hs-product-carousel-shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  hs-product-carousel .hs-product-carousel__skeleton-card::after {
    animation: none;
  }
}

hs-product-carousel .splide__track {
  padding-block: 12px;
}

hs-product-carousel product-card .product-card {
  --box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.078);
}

hs-product-carousel .splide__arrow {
  width: 30px;
  height: 30px;
  background: var(--ppt-orange);
  opacity: 1;
}

hs-product-carousel .splide__arrow svg {
  fill: white;
}

hs-product-carousel .splide__arrow:disabled {
  opacity: 0;
}

hs-product-carousel .splide__arrow--next {
  right: -15px;
}

hs-product-carousel .splide__arrow--prev {
  left: -15px;
}