.aoe-wrap {
	display: flex;
	align-items: stretch;
	gap: 16px;
	background: linear-gradient(90deg, #29ABE2 0%, #1C7ED6 100%);
	border-radius: 16px;
	padding: 24px;
	direction: rtl;
	overflow: hidden;
	box-sizing: border-box;
}

.aoe-wrap * {
	box-sizing: border-box;
}

.aoe-empty {
	padding: 24px;
	text-align: center;
	color: #888;
	background: #f5f5f5;
	border-radius: 12px;
}

/* Banner */
.aoe-banner {
	flex: 0 0 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
}

.aoe-banner-img {
	max-width: 100%;
	height: auto;
	margin-bottom: 12px;
}

.aoe-banner-title {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
}

/* Side: arrows + view all */
.aoe-side {
	flex: 0 0 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.aoe-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: transparent;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.aoe-arrow:hover {
	background: rgba(255, 255, 255, 0.15);
}

.aoe-arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.aoe-viewall {
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
	opacity: 0.9;
	margin-top: 6px;
}

.aoe-viewall:hover {
	opacity: 1;
	text-decoration: underline;
}

/* Track / Swiper */
.aoe-track-viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.aoe-swiper {
	width: 100%;
	overflow: visible;
}

.aoe-swiper .swiper-wrapper {
	align-items: stretch;
}

.swiper-slide.aoe-card {
	width: 220px;
	flex-shrink: 0;
	height: auto;
}

/* Card */
.aoe-card {
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.aoe-card-img {
	display: block;
	margin: 0 auto 12px;
}

.aoe-card-img img {
	max-width: 100%;
	height: 140px;
	width: auto;
	margin: 0 auto;
	object-fit: contain;
	display: block;
}

.aoe-card-title {
	display: block;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-decoration: none;
	margin-bottom: 12px;
	min-height: 44px;
}

.aoe-card-title:hover {
	color: #1C7ED6;
}

.aoe-card-bottom {
	margin-top: auto;
	position: relative;
}

.aoe-badge {
	position: absolute;
	top: -8px;
	right: 0;
	background: #E8384F;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 6px;
}

.aoe-prices {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-top: 20px;
}

.aoe-price-regular {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
}

.aoe-price-sale {
	font-size: 16px;
	font-weight: 700;
	color: #E8384F;
}

.aoe-profit {
	font-size: 12px;
	color: #1C7ED6;
	margin-top: 6px;
}

.aoe-countdown {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #E8384F;
	direction: ltr;
	letter-spacing: 1px;
}

.aoe-countdown.aoe-expired {
	color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
	.aoe-banner {
		flex-basis: 130px;
	}
	.aoe-banner-title {
		font-size: 17px;
	}
	.swiper-slide.aoe-card {
		width: 180px;
	}
}

@media (max-width: 767px) {
	.aoe-wrap {
		flex-wrap: wrap;
	}
	.aoe-banner {
		flex-basis: 100%;
		flex-direction: row;
		justify-content: center;
		gap: 12px;
	}
	.aoe-banner-img {
		max-width: 60px;
		margin-bottom: 0;
	}
	.aoe-side {
		flex-basis: 100%;
		flex-direction: row;
		justify-content: center;
	}
}
