.store-banner-container {
	display: flex;
	justify-content: center;
	background-color: #202020;
	width: 100%;
	margin: 110px 0 0 0;
}

.store-banner-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-slide {
	min-width: 100%;
	border-radius: 5px;
	background-size: cover;
	background-position: center;
}

.carousel-btn {
	opacity: 0.5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
	color: white;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	padding: 0 22px;
	z-index: 10;
	transition: all 0.3s ease;
	user-select: none;
}

.carousel-btn.prev {
	background: linear-gradient(to right, #11111182, #ffffff00);
	left: 0px;
}

.carousel-btn.next {
	background: linear-gradient(to left, #11111182, #ffffff00);
	right: 0px;
}

.carousel-btn:hover {
	opacity: 1;
}

@media (min-width: 768px) {
}
@media (min-width: 992px) {
	.store-banner-inner {
		width: 80%;
	}
	.store-banner-container {
		margin: 150px 0 0 0;
	}
	.carousel-wrapper {
		aspect-ratio: 16/6;
	}
}
@media (min-width: 1200px) {
	.store-banner-container {
		margin: 170px 0 0 0;
	}
}
