.pdp-entry-carousel {
  width: 100%;
  overflow-x: hidden;
}

.pdp-entry-carousel__header {
  margin-top: 16px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .pdp-entry-carousel__header {
    margin-top: 24px;
    margin-bottom: 8px;
  }
}

.pdp-entry-carousel__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.pdp-entry-carousel__pills {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 16px;
  scrollbar-width: none;
  cursor: grab;
}

.pdp-entry-carousel__pills.is-dragging {
  cursor: grabbing;
  user-select: none;
}

@media (min-width: 768px) {
  .pdp-entry-carousel__pills {
    margin-bottom: 12px;
  }
}

.pdp-entry-carousel__pills::-webkit-scrollbar {
  display: none;
}

.pdp-entry-carousel__pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 11px 12px;
  border: 1px solid #e4e7f0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #053e64;
  transition: background-color 0.2s ease;
}

.pdp-entry-carousel__pill:hover {
  background-color: #dcf1f6;
  border-color: #dcf1f6;
  color: #053e64;
}

.pdp-entry-carousel .product-card__variants,
.pdp-entry-carousel .product-card__stitching,
.pdp-entry-carousel [data-oke-star-rating],
.pdp-entry-carousel .product-card__badge,
.pdp-entry-carousel .product-card__wishlist {
  display: none;
}

.pdp-entry-carousel__slide .product-card {
  margin: 0;
}

.pdp-entry-carousel .product-card__images {
  margin-bottom: 8px;
}

.pdp-entry-carousel .product-card__title {
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.pdp-entry-carousel .product-card__title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pdp-entry-carousel .product-card__title {
    font-size: 12px;
  }
}

.pdp-entry-carousel .product-card__price {
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .pdp-entry-carousel .product-card__images {
    margin-bottom: 16px;
  }
}

.pdp-entry-carousel .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.pdp-entry-carousel__widget {
  margin-right: -10px;
}

.pdp-entry-carousel .pdp-entry-carousel__widget .products-and-navigation {
  margin: 0;
}

.pdp-entry-carousel__track {
  position: relative;
  container-type: inline-size;
}

.pdp-entry-carousel__scroller {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pdp-entry-carousel__scroller::-webkit-scrollbar {
  display: none;
}

.pdp-entry-carousel__slide {
  flex: 0 0 calc((100% - 8px * 2.5) / 3.5);
  min-width: 0;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .pdp-entry-carousel__slide {
    flex-basis: calc((100% - 8px * 4.75) / 5.75);
  }
}

@media (min-width: 1200px) {
  .pdp-entry-carousel__slide {
    flex-basis: calc((100% - 8px * 7.75) / 8.75);
  }
}

.pdp-entry-carousel__scroller-spacer {
  flex: 0 0 10px;
  min-width: 0;
}

.pdp-entry-carousel__track::before,
.pdp-entry-carousel__track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
  display: none;
}

@media (min-width: 768px) {
  .pdp-entry-carousel__track::before,
  .pdp-entry-carousel__track::after {
    display: block;
  }
}

.pdp-entry-carousel__track::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.pdp-entry-carousel__track::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.pdp-entry-carousel__track:has(.pdp-entry-carousel__nav--prev.is-disabled)::before,
.pdp-entry-carousel__track:has(.pdp-entry-carousel__nav--next.is-disabled)::after {
  display: none;
}

.pdp-entry-carousel__nav {
  position: absolute;
  top: calc(0.75 * (100cqw - 8px * 2.5) / 3.5);
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 6;
}

@media (min-width: 768px) {
  .pdp-entry-carousel__nav {
    top: calc(0.75 * (100cqw - 8px * 4.75) / 5.75);
  }
}

@media (min-width: 1200px) {
  .pdp-entry-carousel__nav {
    top: calc(0.75 * (100cqw - 8px * 7.75) / 8.75);
  }
}

.pdp-entry-carousel__nav--prev {
  left: 16px;
  transform: translateY(-50%) scaleX(-1);
}

.pdp-entry-carousel__nav--next {
  right: 25px;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .pdp-entry-carousel__nav--next {
    right: 40px;
  }
}

.pdp-entry-carousel__nav svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pdp-entry-carousel__nav.is-disabled {
  opacity: 0 !important;
  pointer-events: none;
}

.pdp-entry-carousel__progress {
  position: relative;
  height: 2px;
  margin-top: 16px;
  margin-right: 10px;
  background: #e2e2e2;
}

.pdp-entry-carousel__progress-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #053e64;
}
