/* ==========================================================================
   Zeus Offroad Elements - Shared Styles
   Namespaced with .zoe- prefix to avoid collisions with theme/other plugins
   ========================================================================== */

/* ---------- 1. BANNER WIDGET ---------- */
.zoe-banner {
	position: relative;
	width: 100%;
	color: #fff;
}

/* Height is set responsively via the widget's "Banner Height" control */
.zoe-banner__media {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	border-radius: 4px;
}

.zoe-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
	transform: scale(1.02);
	background-color: #1a1a1a;
}

.zoe-banner__bg.zoe-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

/* CTA buttons - top right, always absolute over the image */
.zoe-banner__buttons {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 3;
	display: flex;
	gap: 0;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.zoe-banner__btn {
	padding: 14px 22px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
	transition: opacity 0.2s ease;
	display: block;
}

.zoe-banner__btn:hover { opacity: 0.85; }

.zoe-banner__btn--ghost {
	background: var(--zoe-accent, #ff5a1f) !important;
	color: #fff;
}

.zoe-banner__btn--solid {
	background: #fff;
	color: #111;
}

/* Stat groups - bottom left / bottom right, vertical layout */
.zoe-banner__stats {
	position: absolute;
	bottom: 24px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zoe-banner__stats--left {
	left: 24px;
	text-align: left;
}

.zoe-banner__stats--right {
	right: 24px;
	text-align: right;
}

.zoe-banner__stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 4px;
}

.zoe-banner__stat-value {
	font-size: 18px;
	font-weight: 700;
	white-space: nowrap;
}

/* ---------- Tablet ---------- */
@media (min-width: 768px) and (max-width: 1024px) {
	.zoe-banner__stat-value { font-size: 16px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	/* Image keeps its own height, buttons stay top-right over it */
	.zoe-banner__media { border-radius: 0; }

	.zoe-banner__buttons {
		top: 12px;
		right: 12px;
		flex-direction: row;
	}

	.zoe-banner__btn {
		padding: 10px 14px;
		font-size: 12px;
	}

	.zoe-banner__stats--left { left: 12px; bottom: 12px; }
	.zoe-banner__stats--right { right: 12px; bottom: 12px; }

	.zoe-banner__stat-label { font-size: 9px; }
	.zoe-banner__stat-value { font-size: 13px; }
}

/* ==========================================================================
   THUMBNAIL STRIP
   Desktop: overlaps bottom of banner via negative margin-top (Elementor control)
   Mobile:  sits below banner with dark bg, NO negative margin
   ========================================================================== */
.zoe-banner__thumbs {
	position: relative;
	z-index: 5;
	width: 100%;
	padding: 14px 0 18px;
	box-sizing: border-box;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
}

.zoe-banner__thumbs-inner {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	/* Side padding on inner so scaled active card border doesn't clip at edges */
	padding: 0 8px;
}

/* Overflow visible on the inner wrapper so scale() isn't clipped at edges */
.zoe-banner__thumb-track-wrap {
	overflow: visible;
	position: relative;
}

.zoe-banner__thumb-track {
	display: flex;
	justify-content: center;
	gap: 12px;
	overflow-x: auto;
	overflow-y: visible;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	user-select: none;
	cursor: grab;
	/* Padding so border of first/last card isn't clipped by the scroll container */
	padding: 8px 12px;
}

.zoe-banner__thumb-track.zoe-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.zoe-banner__thumb-track::-webkit-scrollbar { display: none; }

.zoe-banner__thumb {
	flex: 0 0 auto;
	width: 140px;
	cursor: pointer;
	background: rgba(15, 15, 15, 0.88);
	backdrop-filter: blur(6px);
	border: 2px solid rgba(255,255,255,0.12);
	border-radius: 3px;
	padding: 2px 3px;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.zoe-banner__thumb:hover {
	border-color: rgba(255,255,255,0.3);
}

.zoe-banner__thumb.zoe-active {
	border-color: var(--zoe-accent, #ff5a1f) !important;
	box-shadow: 0 0 0 1px var(--zoe-accent, #ff5a1f), 0 8px 24px rgba(0,0,0,0.5) !important;
	transform: scale(1.07);
	transform-origin: center center;
	z-index: 2;
}

.zoe-banner__thumb-img {
	width: 100%;
	height: 74px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	pointer-events: none;
}

.zoe-banner__thumb-label {
	position: absolute;
	top: 4px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 22px;
	font-weight: 800;
	font-family: Georgia, 'Times New Roman', serif;
	letter-spacing: 1px;
	opacity: 0.9;
	pointer-events: none;
	z-index: 1;
}

/* Chevron arrows — small, tight to the track */
.zoe-banner__thumb-nav {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	cursor: pointer;
	color: rgba(255,255,255,0.65);
	transition: color 0.2s ease, transform 0.2s ease;
}

.zoe-banner__thumb-nav svg {
	width: 14px;
	height: 14px;
	display: block;
}

.zoe-banner__thumb-nav:hover {
	color: var(--zoe-accent, #ff5a1f) !important;
	transform: scale(1.2);
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
	.zoe-banner__thumb { width: 120px; }
	.zoe-banner__thumb-img { height: 62px; }
	.zoe-banner__thumb-label { font-size: 18px; }
}

/* Mobile: strip sits BELOW the banner, no negative margin, dark bg, normal-size cards */
@media (max-width: 767px) {
	.zoe-banner__thumbs {
		margin-top: 0 !important;
		background: rgba(10, 10, 10, 0.92);
		padding: 12px 0 14px;
	}

	.zoe-banner__thumb-track {
		justify-content: flex-start;
		padding: 6px 16px;
		gap: 10px;
		scroll-snap-type: x mandatory;
	}

	.zoe-banner__thumb {
		width: 120px;
		scroll-snap-align: center;
	}

	.zoe-banner__thumb-img { height: 66px; }
	.zoe-banner__thumb-label { font-size: 20px; }
	.zoe-banner__thumb-nav { width: 22px; height: 22px; }
	.zoe-banner__thumb-nav svg { width: 14px; height: 14px; }
}

/* ---------- 2. CAROUSEL WIDGET ---------- */
.zoe-carousel {
	width: 100%;
	padding: 30px 0;
}

.zoe-carousel__track-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.zoe-carousel__track {
	display: flex;
	align-items: center;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 14px 4px;
	flex: 1;
}

.zoe-carousel__track::-webkit-scrollbar { display: none; }

.zoe-carousel__item {
	flex: 0 0 auto;
	width: 220px;
	cursor: pointer;
	border: 2px solid #ebebeb;
	border-radius: 8px;
	padding: 12px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
	background: #fff;
	opacity: 0.75;
	transform: scale(0.92);
}

.zoe-carousel__item:hover {
	opacity: 1;
	border-color: #d8d8d8;
}

.zoe-carousel__item.zoe-active {
	border-color: var(--zoe-accent, #ff5a1f) !important;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--zoe-accent, #ff5a1f) 15%, transparent) !important;
	opacity: 1;
	transform: scale(1);
}

.zoe-carousel__item img {
	width: 100%;
	height: 150px;
	object-fit: contain;
	display: block;
	pointer-events: none;
	border-radius: 4px;
}

.zoe-carousel__nav {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	cursor: pointer;
	color: #1a1a1a;
	transition: color 0.2s ease, transform 0.2s ease;
}

.zoe-carousel__nav svg {
	width: 20px;
	height: 20px;
	display: block;
}

.zoe-carousel__nav:hover {
	color: var(--zoe-accent, #ff5a1f) !important;
	transform: scale(1.1);
}

.zoe-carousel.zoe-no-nav .zoe-carousel__nav { display: none; }

@media (max-width: 767px) {
	.zoe-carousel__item { width: 160px; padding: 10px; transform: scale(0.94); }
	.zoe-carousel__item img { height: 100px; }
	.zoe-carousel__nav { width: 26px; height: 26px; }
	.zoe-carousel__nav svg { width: 16px; height: 16px; }
	.zoe-carousel__track { gap: 12px; }
}

/* ---------- 3. TIMELINE WIDGET ---------- */
.zoe-timeline {
	position: relative;
	width: 100%;
	background: #0c0c0c;
	color: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.zoe-timeline__stage {
	position: relative;
	width: 100%;
	height: 480px;
	overflow: hidden;
}

.zoe-timeline__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(0.96) rotateY(8deg);
	transition: opacity 0.6s ease, transform 0.7s ease;
	background-color: #1a1a1a;
}

.zoe-timeline__img.zoe-active {
	opacity: 1;
	transform: scale(1) rotateY(0deg);
	z-index: 1;
}

.zoe-timeline__caption {
	position: absolute;
	left: 40px;
	bottom: 110px;
	z-index: 3;
	max-width: 480px;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.zoe-timeline__caption.zoe-active {
	opacity: 1;
	transform: translateY(0);
}

.zoe-timeline__caption-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 6px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.zoe-timeline__caption-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	line-height: 1.5;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.zoe-timeline__nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 40px 24px;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
}

.zoe-timeline__line {
	position: absolute;
	top: 50%;
	left: 40px;
	right: 40px;
	height: 2px;
	background: rgba(255,255,255,0.25);
	z-index: 0;
	overflow: hidden;
}

.zoe-timeline__line-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: var(--zoe-accent, #ff5a1f) !important;
	transition: width 0.5s ease;
}

.zoe-timeline__dot-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	gap: 10px;
}

.zoe-timeline__dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1a1a1a;
	border: 2px solid rgba(255,255,255,0.45);
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.zoe-timeline__dot-wrap.zoe-active .zoe-timeline__dot {
	background: var(--zoe-accent, #ff5a1f) !important;
	border-color: var(--zoe-accent, #ff5a1f) !important;
	transform: scale(1.3);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--zoe-accent, #ff5a1f) 25%, transparent) !important;
}

.zoe-timeline__dot-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255,255,255,0.65);
	transition: color 0.3s ease;
	white-space: nowrap;
	text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.zoe-timeline__dot-wrap.zoe-active .zoe-timeline__dot-label { color: #fff; }

@media (min-width: 768px) and (max-width: 1024px) {
	.zoe-timeline__nav { padding: 40px 24px 20px; }
	.zoe-timeline__line { left: 24px; right: 24px; }
}

@media (max-width: 767px) {
	.zoe-timeline__caption { left: 16px; right: 16px; bottom: 84px; max-width: 100%; }
	.zoe-timeline__caption-title { font-size: 16px; }
	.zoe-timeline__caption-desc { font-size: 12px; }
	.zoe-timeline__nav { padding: 36px 16px 16px; }
	.zoe-timeline__line { left: 16px; right: 16px; }
	.zoe-timeline__dot { width: 12px; height: 12px; }
	.zoe-timeline__dot-wrap { gap: 6px; flex: 1; }
	.zoe-timeline__dot-label { font-size: 9px; letter-spacing: 0.5px; }
}

/* ==========================================================================
   4. PRODUCT SHOWCASE WIDGET
   Targets through Elementor's .elementor-widget-container wrapper
   ========================================================================== */

/* Reset Elementor container interference */
.elementor-widget-zoe-product-showcase,
.elementor-widget-zoe-product-showcase .elementor-widget-container {
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

.zoe-ps {
	--zoe-ps-accent: #ff5a1f !important;
	width: 100% !important;
	background: #ffffff !important;
	color: #111111;
	font-family: inherit;
	box-sizing: border-box;
	padding: 0 !important;
	margin: 0 !important;
	display: block !important;
}

.zoe-ps .zoe-ps__main {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	width: 100% !important;
	min-height: 460px;
	padding: 0 !important;
	margin: 0 !important;
	gap: 0 !important;
}

.zoe-ps .zoe-ps__image-wrap {
	flex: 0 0 50% !important;
	width: 50% !important;
	max-width: 50% !important;
	min-width: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 30px 24px !important;
	box-sizing: border-box !important;
}

.zoe-ps .zoe-ps__main-img {
	width: 100% !important;
	max-width: 100% !important;
	max-height: 420px !important;
	height: auto !important;
	object-fit: contain !important;
	display: block !important;
	transition: opacity 0.35s ease;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.zoe-ps .zoe-ps__main-img.zoe-ps-fade { opacity: 0 !important; }

.zoe-ps .zoe-ps__details {
	flex: 0 0 50% !important;
	width: 50% !important;
	max-width: 50% !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: center !important;
	padding: 40px 60px 40px 10px !important;
	box-sizing: border-box !important;
	gap: 0 !important;
}

.zoe-ps .zoe-ps__title {
	display: block !important;
	font-size: clamp(26px, 2.8vw, 40px) !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	color: #111111 !important;
	margin: 0 0 16px 0 !important;
	padding: 0 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.zoe-ps .zoe-ps__desc {
	display: block !important;
	font-size: 15px !important;
	line-height: 1.75 !important;
	color: #666666 !important;
	margin: 0 0 22px 0 !important;
	padding: 0 !important;
	max-width: 440px !important;
}

.zoe-ps .zoe-ps__price-row {
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
	margin: 0 0 16px 0 !important;
	padding: 0 !important;
}

.zoe-ps .zoe-ps__price-label {
	display: block !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 2.5px !important;
	text-transform: uppercase !important;
	color: var(--zoe-ps-accent, #ff5a1f) !important;
	line-height: 1.4 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.zoe-ps .zoe-ps__price-value {
	display: block !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #111111 !important;
	line-height: 1.4 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.zoe-ps .zoe-ps__buy-btn,
.zoe-ps a.zoe-ps__buy-btn {
	display: inline-block !important;
	background: var(--zoe-ps-accent, #ff5a1f) !important;
	background-color: var(--zoe-ps-accent, #ff5a1f) !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	padding: 14px 34px !important;
	border-radius: 0 !important;
	border: none !important;
	box-shadow: none !important;
	margin: 0 !important;
	cursor: pointer !important;
	line-height: 1.3 !important;
	transition: opacity 0.2s ease;
}

.zoe-ps .zoe-ps__buy-btn:hover,
.zoe-ps a.zoe-ps__buy-btn:hover {
	opacity: 0.85 !important;
	color: #ffffff !important;
	text-decoration: none !important;
}

.zoe-ps .zoe-ps__strip {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 0 !important;
	width: 100% !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}

.zoe-ps .zoe-ps__strip-item {
	position: relative !important;
	cursor: pointer !important;
	overflow: hidden !important;
	height: 190px !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
}

.zoe-ps .zoe-ps__strip-item::after {
	content: '' !important;
	position: absolute !important;
	top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
	background: transparent;
	transition: background 0.25s ease, box-shadow 0.25s ease;
	z-index: 1;
	pointer-events: none;
}

.zoe-ps .zoe-ps__strip-item:hover::after { background: rgba(0,0,0,0.15) !important; }

.zoe-ps .zoe-ps__strip-item.zoe-ps-active::after {
	background: transparent !important;
	box-shadow: inset 0 0 0 5px var(--zoe-ps-accent, #ff5a1f) !important;
}

.zoe-ps .zoe-ps__strip-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.4s ease;
	pointer-events: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	max-width: none !important;
}

.zoe-ps .zoe-ps__strip-item:hover img { transform: scale(1.04); }

.zoe-ps .zoe-ps__shop-wrap {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 32px 0 40px !important;
	margin: 0 !important;
}

.zoe-ps .zoe-ps__shop-btn,
.zoe-ps a.zoe-ps__shop-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	background: var(--zoe-ps-accent, #ff5a1f) !important;
	background-color: var(--zoe-ps-accent, #ff5a1f) !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	padding: 15px 44px !important;
	border-radius: 40px !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.zoe-ps .zoe-ps__shop-btn:hover,
.zoe-ps a.zoe-ps__shop-btn:hover {
	opacity: 0.88 !important;
	transform: translateY(-2px);
	color: #ffffff !important;
	text-decoration: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.zoe-ps .zoe-ps__main { min-height: 360px; }
	.zoe-ps .zoe-ps__image-wrap { padding: 24px 16px !important; }
	.zoe-ps .zoe-ps__details { padding: 32px 32px 32px 16px !important; }
	.zoe-ps .zoe-ps__strip-item { height: 155px !important; }
}

@media (max-width: 767px) {
	.zoe-ps .zoe-ps__main { flex-direction: column !important; min-height: unset !important; }
	.zoe-ps .zoe-ps__image-wrap { flex: 0 0 auto !important; width: 100% !important; max-width: 100% !important; padding: 24px 16px 12px !important; }
	.zoe-ps .zoe-ps__main-img { max-height: 240px !important; }
	.zoe-ps .zoe-ps__details { flex: 0 0 auto !important; width: 100% !important; max-width: 100% !important; padding: 16px 16px 24px !important; }
	.zoe-ps .zoe-ps__buy-btn,
	.zoe-ps a.zoe-ps__buy-btn { display: block !important; width: 100% !important; text-align: center !important; padding: 14px 24px !important; }
	.zoe-ps .zoe-ps__strip { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; }
	.zoe-ps .zoe-ps__strip-item { height: 140px !important; }
	.zoe-ps .zoe-ps__shop-wrap { padding: 24px 16px 28px !important; }
}
