/* .product-carousel {
  padding: 24px;
} */
.product-carousel h2 {
  margin: 0;
}
/* .product-carousel a {
  text-decoration: none;
  color: #fff;
} */
/* .product-carousel img {
  aspect-ratio: 1/1;
  width: 175px;
  height: 175px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  margin-bottom: 16px;
  border-radius: clamp(0px, ((100vw - 4px) - 100%) * 9999, 4px);
} */
/* .product-carousel h3 {
  font-size: 16px;
  margin: 0;
  margin-bottom: 4px;
} */
 .product-carousel {
  user-select: none;
}
.product-carousel .dragging a {
  pointer-events: none;
  /* user-select: none; */
}
.product-carousel .carousel__wrapper {
  position: relative;
  /* margin-bottom: 24px; */
}
@media only screen and (min-width: 1180px) {
  .product-carousel .carousel__wrapper.has-arrows .carousel__content {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 1180px) {
  .product-carousel .carousel__wrapper.has-arrows .carousel__arrows {
    display: flex;
  }
}
.product-carousel .carousel__header {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(var(--pico-spacing) *1.5);
}
.product-carousel .carousel__header h1,
.product-carousel .carousel__header h2 {
  margin-bottom: 0;
}
.product-carousel .carousel__content {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: grid;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0;
  margin: 0;
  grid-gap: 24px;
  grid-auto-flow: column;
  list-style: none;
}
.product-carousel .carousel__content::-webkit-scrollbar {
  display: none;
}
.product-carousel .carousel__item a {
  cursor: pointer;
}
.product-carousel .carousel__controls {
  display: grid;
  grid-auto-flow: column;
  grid-gap: calc(var(--pico-spacing) *0.75);
}
.product-carousel .carousel__arrow {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.product-carousel .carousel__arrow:before {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGw9IiNmNTZiM2QiIGQ9Ik0xMDQuNzA0IDY4NS4yNDhhNjQgNjQgMCAwIDAgOTAuNDk2IDBsMzE2LjgtMzE2LjggMzE2LjggMzE2LjhhNjQgNjQgMCAwIDAgOTAuNDk2LTkwLjQ5Nkw1NTcuMjQ4IDIzMi43MDRhNjQgNjQgMCAwIDAtOTAuNDk2IDBMMTA0LjcwNCA1OTQuNzUyYTY0IDY0IDAgMCAwIDAgOTAuNDk2eiIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 2rem;
  height: 1.25rem;
  cursor: pointer;
}
.product-carousel .carousel__arrow.arrow-prev:before {
  transform: rotate(-90deg);
}
.product-carousel .carousel__arrow.arrow-next:before {
  transform: rotate(90deg);
}
.product-carousel .carousel__arrow.disabled::before {
  filter: opacity(50%);
}

.product-carousel .product-card {
  --card-width: 19rem;
  width: var(--card-width);
  margin-bottom: 0;
}