/* -------------------------------------------------------------
 * Estilos Generales del Carrusel de Banners - Danilza Market
 * ------------------------------------------------------------- */

.danilza-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: visible;
}

.danilza-carousel-container {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

/* Imagen Adaptativa Responsive */
.danilza-responsive-picture {
	display: block;
	width: 100%;
	height: auto;
}

.danilza-carousel-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	margin: 0 auto;
}

.danilza-slide-link,
.danilza-slide-media {
	display: block;
	width: 100%;
	height: auto;
	text-decoration: none;
	outline: none;
}

/* Botones de Navegación */
.danilza-nav-btn {
	position: absolute;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	font-size: 20px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	color: #ffffff;
}

.danilza-nav-btn-prev {
	left: 20px;
}

.danilza-nav-btn-next {
	right: 20px;
}

.danilza-nav-btn:hover {
	background-color: rgba(0, 0, 0, 0.75);
	color: #fc6a03;
}

.danilza-nav-btn i,
.danilza-nav-btn svg {
	display: block;
	line-height: 1;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Estilos de Paginación */
.danilza-carousel-container .swiper-pagination {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0,0,0);
	z-index: 10;
	width: 100%;
	left: 0;
	bottom: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.danilza-carousel-container .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	margin: 0 4px !important;
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	cursor: pointer;
	transition: all 0.3s ease;
}

.danilza-carousel-container .swiper-pagination-bullet-active {
	background: #fc6a03;
}
