#pk_flex_content .flex_layout.featured_products {
  max-width: 100%;
  padding: clamp(
      40px,
      40px + (80 - 40) * ((100vw - 320px) / (1215 - 320)),
      80px
    )
    0;
}

/* Wanneer bg is grijs */
.flex_bg_grey .flex_layout.featured_products .pk-item {
  background: var(--white);
}

/* Einde wanneer bg is grijs */
.featured_products .pk-swiper {
  overflow: visible;
  cursor: none;
}

.flex_layout.featured_products .pk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Swiper Nav */
.pk-featured__prod .pk-swiper__nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

#pk_flex_content .pk-featured__prod .pk-swiper-btn {
  position: relative;
  left: 0;
  right: 0;
  width: 32px;
  height: 32px;
  margin-top: 0;
  border-radius: 999px;
}

#pk_flex_content .pk-featured__prod .pk-swiper-btn[aria-disabled='true'] {
  opacity: 0.6;
  pointer-events: none;
}

#pk_flex_content .pk-featured__prod .pk-swiper-btn::after {
  font-family: 'Material Symbols Outlined';
  font-weight: 100;
  font-size: 24px;
  color: var(--white);
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.pk-featured__prod .swiper-pagination {
  display: none;
}

#pk_flex_content .pk-featured__prod .swiper-button-next::after {
  content: '\e5c4';
}
#pk_flex_content .pk-featured__prod .swiper-button-prev::after {
  content: '\e5c8';
}
@media screen and (max-width: 767px) {
  .flex_layout.featured_products .pk-row {
    margin-bottom: 32px;
  }

  .pk-featured__prod .pk-swiper {
    cursor: unset;
  }

  .pk-featured__prod .pk-swiper__nav {
    display: none;
  }
  .pk-featured__prod .swiper-pagination {
    display: block;
    position: relative;
    margin-top: 32px;
  }
  .pk-featured__prod
    .swiper-pagination-progressbar
    .swiper-pagination-progressbar-fill {
    background: var(--midnight);
  }
  .pk-featured__prod .swiper-pagination.swiper-pagination-progressbar {
    height: 2px;
    background: rgba(219, 222, 227, 1);
  }
}

/* End Swiper Nav */

.pk-featured__prod .pk-item {
  height: auto;
  padding: 24px 20px 24px 20px;
  border-radius: 5px;
  background: var(--gray);
}

.pk-featured__prod .pk-item__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--midnight);
}
.pk-featured__prod .pk-item .pk-item__image {
  width: 100%;
  height: auto;
  aspect-ratio: 250/185;
  margin-bottom: 32px;
  overflow: hidden;
}

.pk-featured__prod .pk-item .pk-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pk-featured__prod .pk-item:hover .pk-item__image img {
  transform: scale(1.1);
}

.pk-featured__prod .pk-item__content h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pk-featured__prod .pk-item__content h3::after {
  content: '\e5c8';
  font-family: 'Material Symbols Outlined';
  font-weight: 100;
  font-size: 16px;
  color: var(--white);
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  opacity: 0;
  border-radius: 999px;
  background: var(--marine);
  transform: translateX(-5px);
  transition: all 0.5s ease-in-out;
}

.pk-featured__prod .pk-item:hover h3::after {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  .pk-featured__prod .pk-item__content h3::after {
    content: '\e5c8';
    opacity: 1;
    transform: translateX(0px);
  }
}

@media screen and (min-width: 991px) {
  .pk-featured__prod .pk-swiper:hover .dragger {
    opacity: 1;
  }

  .pk-featured__prod .dragger {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    width: max-content;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: var(--midnight);
    transition: opacity 300ms ease-in-out;
    z-index: 1;
  }

  .pk-featured__prod .dragger {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
