/*
 * Product gallery
 *
 * @since 2.0.0
 */

.woocommerce-product-gallery .swiper,
.woocommerce-product-gallery .swiper.swiper-thumbs .swiper-slide {
  max-width: 600px;
  border-radius: 17px;
  overflow: hidden;
}

.woocommerce-product-gallery .swiper .swiper-slide {
  width: 100%;
  height: 480px;
  background-color: #ededef;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-product-gallery .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.woocommerce-product-gallery .product-gallery-thumbs {
  width: 100%;
  margin: 0 auto;
}

.woocommerce-product-gallery .swiper.swiper-thumbs {
  border-radius: 0 !important;
}

.woocommerce-product-gallery .swiper.swiper-thumbs .swiper-slide {
  height: auto;
  border-radius: 14px;
  cursor: pointer;
}

.woocommerce-product-gallery
  .swiper.swiper-thumbs
  .swiper-slide.swiper-slide-thumb-active {
  border: 3px solid var(--bs-warning);
}

@media (min-width: 992px) {
  .woocommerce-product-gallery .swiper {
    border-radius: 20px;
  }
  .woocommerce-product-gallery .swiper .swiper-slide {
    height: 420px;
  }

  .woocommerce-product-gallery .swiper.swiper-thumbs .swiper-slide {
    width: 120px;
    height: 120px;
    border-radius: 17px;
  }
}

@media (min-width: 1200px) {
  .woocommerce-product-gallery .swiper {
    width: 500px;
    border-radius: 24px;
  }

  .woocommerce-product-gallery .swiper .swiper-slide {
    height: 550px;
  }

  .woocommerce-product-gallery .swiper.swiper-thumbs {
    width: 140px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 15px;
  }
  .woocommerce-product-gallery .swiper.swiper-thumbs .swiper-slide {
    width: 140px;
    height: 155px;
    border-radius: 20px;
  }
}

@media (min-width: 1400px) {
  .woocommerce-product-gallery .swiper {
    width: 600px;
    border-radius: 32px;
  }

  .woocommerce-product-gallery .swiper .swiper-slide {
    height: 650px;
  }

  .woocommerce-product-gallery .swiper.swiper-thumbs .swiper-slide {
    border-radius: 24px;
  }
}
