/* 
Archivo: estilos-carrusel-vinos.css
Descripción: Estilos carrusel Nuestros Vinos y Plantilla Vinos mobile.
Autor: Nexbu
Fecha: 28 Marzo 2025
*/
/* CARRUSEL */
.carrusel-vinos {
    margin: auto auto!important;
}
/* PAGINACIÓN */
.swiper-3d .swiper-wrapper {
    padding-bottom: 5px;
}
.swiper-pagination {
    bottom: 5px!important;
}
.swiper-pagination-bullet {
    background: #FEFEFE;
    opacity: 1;
}
.swiper-pagination-bullet-active, .swiper-pagination-bullet:hover {
    background: #9F7342;
    opacity: 1;
}
/* FLECHAS */
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px;
}
.swiper-button-prev, .swiper-button-next {
    color: #FFF; 
    background: rgba(0, 0, 0, 0);
    padding: 0;
    opacity: 0.4;
    transition: .4s;
    width: 40px;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    opacity: 1;
    transition: .4s;
}
.swiper-button-prev {
    justify-content: flex-start;
}
.swiper-button-next {
    justify-content: flex-end;
}
/* ITEM */
.swiper-slide {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.swiper-slide .item {
    opacity: 0;
    pointer-events: none!important;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.swiper-slide-prev .item, .swiper-slide-next .item {
    filter: blur(4px);
    opacity: 0.3;
    pointer-events: none!important;
    transform: scale(0.9);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.swiper-slide-visible.swiper-slide-active .item {
    opacity: 1;
    pointer-events: auto!important;
    transform: scale(1);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.item {
    display: flex;
    justify-content: center;
}
.item img, .item:hover img {
    transition: .6s;
}
.item:hover img {
    opacity: 0.5;
}
img.img-vino {
    height: 55vh;
    margin: auto;
	object-fit: contain!important;
    width: auto;
}
.nombre-vino {
    bottom: 30px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}
.nombre-vino h2 {
    font-size: var(--e-global-typography-accent-font-size)!important;
    font-weight: var(--e-global-typography-accent-font-weight)!important;
    line-height: var(--e-global-typography-accent-line-height)!important;
    margin: 0;
}
/*** RESPONSIVE ***/
@media only screen and (min-width: 1500px) {
    #filtro {
        top: 130px!important;
    }
}
@media only screen and (min-width: 1900px) {
	.nombre-vino {
		bottom: 50px;
	}
}
@media only screen and (max-width: 1024px) {
    .nombre-vino {
        bottom: 35px;
    }
    .single-vino .nombre-vino {
        bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    .swiper-button-next {
        right: 60px;
    }
    .swiper-button-prev {
        left: 60px;
    }
}
@media only screen and (max-width: 600px) {
	.carrusel-mobile, .carrusel-vinos {
		padding-top: 15vh;
	}
	.swiper-wrapper {
		padding-bottom: 5vh!important;
	}
}
@media only screen and (max-width: 500px) {
    .nombre-vino {
        bottom: 30px;
    }
}
@media only screen and (max-width: 320px) {
	img.img-vino {
		height: 68vh;
	}
	.swiper {
        padding-bottom: 40px;
		padding-top: 140px!important;
    }
	.nombre-vino {
        bottom: 0px;
    }
	.single-vino .swiper-slide {
        padding-bottom: 0;
    }
	.single-vino .nombre-vino {
        bottom: -10px;
    }
	.swiper-button-prev, .swiper-button-next {
		top: 65%;
	}
}
@media screen and (max-width: 1150px) and (orientation: portrait) {
	.swiper-3d .swiper-wrapper {
		padding-bottom: 5vh;
	}
}
@media screen and (max-width: 900px) and (orientation: landscape) {
	img.img-vino {
		height: 68vh;
	}
	.nombre-vino {
        bottom: 0px;
    }
	.swiper-wrapper {
		margin-bottom: 8vh;
		margin-top: 22vh;
	}
	.swiper {
        padding-bottom: 20vh;
    }
	.swiper-pagination {
		bottom: 20vh!important;
	}
}
@media only screen and (max-width: 790px) and (orientation: landscape) {
	.carrusel-vinos {
		padding-top: 10vh;
	}
}
@media only screen and (max-width: 320px) {
	.carrusel-mobile, .carrusel-vinos {
		padding-bottom: 15vh!important;
	}
}
/*** FIN: RESPONSIVE ***/