/* Carousel Styles */
.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
	touch-action: pan-y;
	overflow: hidden;
}

.carousel-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	flex: 0 0 100%;
	min-width: 100%;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
	background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.carousel-dots {
		bottom: 15px;
		gap: 8px;
	}
	
	.carousel-dot {
		width: 10px;
		height: 10px;
	}
}
