/* ============================================================
   Explore Activewear Widget
   ============================================================ */
.explore-widget-scope {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #171b31;
	color: #ffffff;
	display: flex;
	justify-content: center;
}
.explore-widget-scope *,
.explore-widget-scope *::before,
.explore-widget-scope *::after { box-sizing: border-box; margin: 0; padding: 0; }

.explore-widget-scope .ew-container {
	display: flex;
	width: 100%;
	background-color: #171b31;
	min-height: 600px;
}

/* Left */
.explore-widget-scope .ew-left {
	width: 40%;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.explore-widget-scope .ew-left-bg {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: opacity .5s ease;
}
.explore-widget-scope .ew-left-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(23,27,49,.45);
}
.explore-widget-scope .ew-left-title {
	position: relative;
	z-index: 2;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0,0,0,.5);
	transition: opacity .3s ease;
}

/* Right */
.explore-widget-scope .ew-right {
	width: 60%;
	padding: 60px 0 60px 50px;
	display: flex;
	flex-direction: column;
}
.explore-widget-scope .ew-main-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #fff;
	letter-spacing: .5px;
}

/* Tabs */
.explore-widget-scope .ew-tabs {
	display: flex;
	gap: 24px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.explore-widget-scope .ew-tab {
	background: none;
	border: none;
	color: #e5e7eb;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	padding-bottom: 6px;
	position: relative;
	transition: color .3s;
}
.explore-widget-scope .ew-tab::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%; height: 1px;
	background-color: transparent;
	transition: background-color .3s;
}
.explore-widget-scope .ew-tab:hover { color: #fff; }
.explore-widget-scope .ew-tab.active { color: #cc292b; }
.explore-widget-scope .ew-tab.active::after { background-color: #cc292b; }

/* Swiper */
.explore-widget-scope .ew-swiper-container {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
}
.explore-widget-scope .ew-swiper {
	width: 100%;
	padding-bottom: 10px;
	overflow: hidden;
}
.explore-widget-scope .ew-slide-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
}
.explore-widget-scope .ew-slide-img-wrapper {
	width: 100%;
	background-color: #fff;
	aspect-ratio: 4 / 5;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-bottom: 16px;
}
.explore-widget-scope .ew-slide-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.explore-widget-scope .ew-slide-img-wrapper:hover img { transform: scale(1.05); }
.explore-widget-scope .ew-slide-title {
	font-size: 13px;
	color: #d1d5db;
	text-align: center;
	line-height: 1.5;
	padding: 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Nav & link */
.explore-widget-scope .ew-nav-link-wrap {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: auto;
}
.explore-widget-scope .ew-nav-buttons {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}
.explore-widget-scope .ew-nav-btn {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,.8);
	background: #171b31;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .3s;
	font-size: 12px;
}
.explore-widget-scope .ew-nav-btn svg { width: 12px; height: 12px; fill: currentColor; }
.explore-widget-scope .ew-nav-btn:hover { background-color: rgba(255,255,255,.15); }
.explore-widget-scope .ew-nav-btn.swiper-button-disabled { opacity: .3; cursor: not-allowed; }

.explore-widget-scope .ew-bottom-link {
	color: #cc292b;
	font-size: 13px;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: all .3s;
	align-self: flex-start;
}
.explore-widget-scope .ew-bottom-link:hover {
	opacity: .8;
	text-decoration-color: #cc292b;
}

/* Mobile */
@media (max-width: 768px) {
	.explore-widget-scope .ew-container { flex-direction: column; }
	.explore-widget-scope .ew-left {
		width: 100% !important;
		height: 200px;
		margin-bottom: 30px;
	}
	.explore-widget-scope .ew-left-overlay { display: none; }
	.explore-widget-scope .ew-right {
		width: 100% !important;
		padding: 0 20px 40px 20px;
		align-items: center;
		text-align: center;
		max-width: none;
	}
	.explore-widget-scope .ew-main-title { text-align: center; }
	.explore-widget-scope .ew-tabs { justify-content: center; }
	.explore-widget-scope .ew-bottom-link { align-self: center; }

	.explore-widget-scope .ew-swiper-container .ew-nav-buttons {
		position: absolute;
		top: 40%;
		left: 0;
		width: 100%;
		transform: translateY(-50%);
		justify-content: space-between;
		pointer-events: none;
		z-index: 10;
		padding: 0 10px;
		margin-top: 0;
	}
	.explore-widget-scope .ew-swiper-container .ew-nav-btn {
		pointer-events: auto;
		background: transparent;
		border: none;
		color: #000;
		font-size: 24px;
		width: auto;
		height: auto;
	}
	.explore-widget-scope .ew-swiper-container .ew-nav-btn svg { width: 24px; height: 24px; }
	.explore-widget-scope .ew-swiper-container .ew-nav-btn:hover { background: transparent; color: #333; }

	.explore-widget-scope .ew-slide-img-wrapper { aspect-ratio: 1 / 1; }
	.explore-widget-scope .ew-slide-title { font-size: 15px; }
}
