/* Kontener galerii */
.hypercon-gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 682px;
    overflow: hidden;
}

/* Stylizacja głównej galerii */
.hypercon-gallery-wrapper .gallery-top {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    position: relative;
}

.hypercon-gallery-wrapper .gallery-top .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hypercon-gallery-wrapper .gallery-top .swiper-slide img,
.hypercon-gallery-wrapper .gallery-top .swiper-slide video {
    width: 100%;
    height: auto;
    min-height: 640px;
    object-fit: cover;
    border-radius: 8px;
}

/* Stylizacja miniaturek */
.hypercon-gallery-wrapper .gallery-thumbs {
    box-sizing: border-box;
    padding: 10px 0;
}

.hypercon-gallery-wrapper .gallery-thumbs .swiper-slide {
    /* width: auto; */
    height: auto;
    opacity: 0.4;
    cursor: pointer;
    
}

.hypercon-gallery-wrapper .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.hypercon-gallery-wrapper .gallery-thumbs .swiper-slide img {
    width: 100%;
    height: auto;
}

/* Przyciski nawigacji */
.hypercon-gallery-wrapper .swiper-button-next,
.hypercon-gallery-wrapper .swiper-button-prev {
    color: #838383;
    width: 25px;
    height: 25px;
    padding: 25px;
    border: 1px solid #838383;
    display: flex;
    transition: all 0.2s;

}
.hypercon-gallery-wrapper .swiper-button-next:hover,
.hypercon-gallery-wrapper .swiper-button-prev:hover {
    box-shadow: rgba(228, 228, 228, 0.2) 0px 2px 8px 0px;
}

.hypercon-gallery-wrapper .swiper-button-next {
    right: 10px;
}

.hypercon-gallery-wrapper .swiper-button-prev {
    left: 10px;
}
.hypercon-gallery-wrapper .swiper-button-next::after,
.hypercon-gallery-wrapper .swiper-button-prev::after {
    font-size: 20px;
    color: #838383
}

.hypercon-swiper-container.gallery-thumbs{
    position: relative;
}

/* Dostosowanie dla mniejszych ekranów */
@media (max-width: 767px) {
    .gallery-thumbs {
        padding: 5px 0;
    }
}


/* Zdjecia produktow */

.hypercon-swiper-container.gallery-top{
	border: 1px solid #EFE6E1;
	border-radius: 8px;
	/* padding: 10px; */
}
.hypercon-swiper-container.gallery-thumbs{
max-width: 100%;
width: 100%;
}
.hypercon-swiper-container.gallery-thumbs .swiper-slide{
	border: 1px solid #EFE6E1;
	border-radius: 8px;
    box-sizing: border-box;
	padding: 10px;
}


@media only screen and (max-width: 768px) {
   .hypercon-gallery-wrapper .gallery-top .swiper-slide img, .hypercon-gallery-wrapper .gallery-top .swiper-slide video{
            min-height: initial;
            aspect-ratio: 1/1;
   }
   .hypercon-gallery-wrapper .gallery-thumbs{
    padding: 0px;
   }
  }
  