/*  Estilização do swiper de multiplas imgs nos cards de produtos */
.produto-single .img-prod-single .produtoSwiper,
.produto-single-home .img-prod-single .produtoSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.produto-single .img-prod-single .swiper-wrapper,
.produto-single-home .img-prod-single .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.produto-single .img-prod-single .swiper-slide,
.produto-single-home .img-prod-single .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.produto-single .img-prod-single .swiper-pagination,
.produto-single-home .img-prod-single .swiper-pagination {
    bottom: 10px !important;
}

.produto-single .img-prod-single .swiper-pagination-bullet,
.produto-single-home .img-prod-single .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
    margin: 0 4px !important;
}

.produto-single .img-prod-single .swiper-pagination-bullet-active,
.produto-single-home .img-prod-single .swiper-pagination-bullet-active {
    background-color: #467D50;
    width: 20px;
    border-radius: 4px;
}

.produto-single .img-prod-single .swiper-button-next,
.produto-single .img-prod-single .swiper-button-prev,
.produto-single-home .img-prod-single .swiper-button-next,
.produto-single-home .img-prod-single .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.produto-single .img-prod-single .swiper-button-next:after,
.produto-single .img-prod-single .swiper-button-prev:after,
.produto-single-home .img-prod-single .swiper-button-next:after,
.produto-single-home .img-prod-single .swiper-button-prev:after {
    font-size: 14px;
    color: #467D50;
    font-weight: bold;
}

.produto-single .img-prod-single .swiper-button-next,
.produto-single-home .img-prod-single .swiper-button-next {
    right: 10px !important;
}

.produto-single .img-prod-single .swiper-button-prev,
.produto-single-home .img-prod-single .swiper-button-prev {
    left: 10px !important;
}

.produto-single:hover .img-prod-single .swiper-button-next,
.produto-single:hover .img-prod-single .swiper-button-prev,
.produto-single-home:hover .img-prod-single .swiper-button-next,
.produto-single-home:hover .img-prod-single .swiper-button-prev {
    opacity: 1;
}

@media all and (max-width: 551px) {
    .produto-single .img-prod-single .swiper-pagination,
    .produto-single-home .img-prod-single .swiper-pagination {
        bottom: 5px !important;
    }
}

@media all and (max-width: 781px) {
    .produto-single .img-prod-single .swiper-button-next,
    .produto-single .img-prod-single .swiper-button-prev,
    .produto-single-home .img-prod-single .swiper-button-next,
    .produto-single-home .img-prod-single .swiper-button-prev {
        display: none !important;
    }

    .produto-single .img-prod-single .swiper-pagination-bullet,
    .produto-single-home .img-prod-single .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .produto-single .img-prod-single .swiper-pagination-bullet-active,
    .produto-single-home .img-prod-single .swiper-pagination-bullet-active {
        width: 16px;
    }
}

.produto-single .img-prod-single > img:first-child:not(.swiper-slide img),
.produto-single-home .img-prod-single > img:first-child:not(.swiper-slide img) {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produto-single .img-prod-single:not(:has(.swiper)) img,
.produto-single-home .img-prod-single:not(:has(.swiper)) img {
    transition: transform 0.3s ease;
}

.produto-single:hover .img-prod-single:not(:has(.swiper)) img,
.produto-single-home:hover .img-prod-single:not(:has(.swiper)) img {
    transform: scale(1.05);
}

.produto-single .etiqueta-lanc,
.produto-single .etiqueta-off,
.produto-single-home .etiqueta-lanc,
.produto-single-home .etiqueta-off {
    z-index: 30;
}