.interactive-image-slider {
  padding: 2rem 0;
}

.interactive-slider-wrapper {
  position: relative;
}

/* Banner Slide Layout */
.banners-slide {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .banners-slide {
    flex-direction: row;
    gap: 0;
    position: relative;
    /* padding-left: clamp(0rem, -4.6154rem + 9.6154vw, 5rem);
    padding-right: clamp(0rem, -4.6154rem + 9.6154vw, 5rem); */
  }
}

/* Banner Image Wrapper */
.banner-image-wrapper {
  width: 100%;
  position: relative;
  aspect-ratio: 1 / 0.67;
}

@media (min-width: 768px) {
  .banner-image-wrapper {
    width: calc(65%);
  }
}

.interactive-image-slider .product-item .content {
  background-color: transparent;
}

body.dark .interactive-image-slider .product-item .content {
  background-color: transparent;
}

.banner-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.67;
}

/* Interactive Points */
.interactive-point-container {
  position: absolute;
  transform: translate(-50%, -50%);
}

.interactive-point {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease-in-out;
}

.interactive-point:hover {
  transform: scale(1.3);
}

.spot-wrapper {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 2s ease-in-out infinite alternate ping;
}

@media (min-width: 768px) {
  .spot-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.spot {
  background-color: white;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  animation: 2s ease-in-out infinite alternate ping-reverse;
}

@media (min-width: 768px) {
  .spot {
    width: 1.125rem;
    height: 1.125rem;
  }
}

@keyframes ping {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}

@keyframes ping-reverse {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Banner Product Wrapper */
.banner-product-wrapper {
  width: 100%;
  background-color: var(--card-bg-color);
}

body.dark .banner-product-wrapper {
  background-color: var(--card-bg-color-dark);
}

@media (min-width: 768px) {
  .banner-product-wrapper {
    width: calc(35%);
  }
}

/* Products Slider */
.interactive-products-slider {
  padding-bottom: 35px;
}

@media (max-width: 768px) {
  .interactive-products-slider {
    margin-bottom: 1rem;
  }
}

.interactive-products-slider .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
}

.interactive-products-slider .swiper-slide.swiper-slide-active {
  pointer-events: auto;
}

/* Product Card */
.product-card-wrapper {
  background-color: transparent;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 500px) and (max-width: 768px) {
  .product-card-wrapper {
    padding-left: clamp(3.75rem, -1.6174rem + 22.9008vw, 9.375rem);
    padding-right: clamp(3.75rem, -1.6174rem + 22.9008vw, 9.375rem);
  }
}

.interactive-products-slider .product-item {
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .interactive-products-slider .product-item {
    padding-bottom: 1.25rem;
  }
}

.interactive-products-slider .product-item .product-category {
  font-size: 16px;
}

@media (min-width: 768px) {
  .interactive-products-slider .product-item .product-category {
    font-size: 21px;
  }
}

.interactive-products-slider .product-item .product-title {
  font-size: 18px;
}

@media (min-width: 768px) {
  .interactive-products-slider .product-item .product-title {
    font-size: 24px;
  }
}

.interactive-products-slider .product-item .product-price {
  font-size: 18px;
}

@media (min-width: 768px) {
  .interactive-products-slider .product-item .product-price {
    font-size: 24px;
  }
}

.interactive-products-slider .product-item .product-prev-price {
  font-size: 16px;
}

@media (min-width: 768px) {
  .interactive-products-slider .product-item .product-prev-price {
    font-size: 21px;
  }
}

.interactive-products-slider .product-item .slide-text-wrapper {
  display: none !important;
}

.product-button-wrapper {
  display: flex;
  justify-content: center;
}

.product-view-btn {
  padding: 0.75rem 1.5rem;
  min-width: 9rem;
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .product-view-btn {
    padding: 12px 1.5rem;
  }
}

@media (min-width: 1024px) {
  .product-view-btn {
    min-width: 12rem;
    font-size: 1.25rem;
  }
}

.interactive-products-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 0 !important;
}

.interactive-products-slider .swiper-pagination-bullet {
  background-color: transparent;
  width: 22px;
  height: 22px;
  align-content: center;
  position: relative;
  margin: 0 !important;
}

.interactive-products-slider .swiper-pagination-bullet .circular-progress-wrapper {
  background-color: #0000004b;
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: background-color 0.4s ease;
}

.interactive-products-slider .swiper-pagination-bullet .circular-progress {
  transform: rotate(-90deg) translate(10px, 1px);
  transition: opacity 0.4s ease;
}

.interactive-products-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  opacity: 1;
}

.interactive-products-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) .circular-progress {
  opacity: 0;
}

.interactive-products-slider .swiper-pagination-bullet-active .circular-progress-wrapper {
  background-color: transparent;
}

.interactive-products-slider .swiper-pagination-bullet-active .circular-progress {
  opacity: 1;
}

.interactive-products-slider .swiper-pagination-bullet-active circle:last-child {
  stroke-dasharray: var(--stroke-dasharray);
  stroke-dashoffset: var(--stroke-dasharray);
  animation: animateCircularProgress var(--animation-transition) linear;
  stroke: var(--primary-color);
}

@keyframes animateCircularProgress {
  0% {
    stroke-dashoffset: var(--stroke-dasharray);
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Navigation Buttons */
.interactive-image-slider .swiper-navigation {
  --swiper-navigation-sides-offset: -5px;
  position: relative;
  /* display: flex; */
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-bottom: 10px;
  display: none;
}

@media (min-width: 768px) {
  .interactive-image-slider .swiper-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    z-index: 10;
    margin-top: 0;
    padding-bottom: 0;
    height: 0px;
    padding-inline: 16px;
  }
}

.interactive-image-slider .swiper-button-next,
.interactive-image-slider .swiper-button-prev {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  color: transparent;
  box-shadow: 0px 4px 8.4px 0px #00000040;
}

.interactive-image-slider .swiper-button-next:focus,
.interactive-image-slider .swiper-button-prev:focus {
  outline: none;
}

@media (min-width: 768px) {
  .interactive-image-slider .swiper-button-next,
  .interactive-image-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}

.interactive-image-slider .swiper-button-next:hover,
.interactive-image-slider .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 1);
}

.interactive-image-slider .swiper-button-next::after,
.interactive-image-slider .swiper-button-prev::after {
  content: none !important;
}

.interactive-image-slider .swiper-button-next svg,
.interactive-image-slider .swiper-button-prev svg {
  width: 24px;
}

.ltr .interactive-image-slider .swiper-button-prev svg {
  transform: rotate(180deg);
}

.ltr .interactive-image-slider .swiper-button-next svg {
  transform: rotate(0deg);
}

.rtl .interactive-image-slider .swiper-button-next svg {
  transform: rotate(180deg);
}

.rtl .interactive-image-slider .swiper-button-prev svg {
  transform: rotate(0deg);
}

body.dark .interactive-image-slider .swiper-button-next,
body.dark .interactive-image-slider .swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.9);
}

body.dark .interactive-image-slider .swiper-button-next::after,
body.dark .interactive-image-slider .swiper-button-prev::after {
  border-color: #fff;
}
