/**
 * JT Fashion Hero Slider widget styles.
 *
 * Extracted verbatim from the shared jt-widgets.css Fashion Hero
 * Slider section. Already scoped by stable classes, not per-instance
 * IDs, so no selector rewriting was needed.
 */

/* --- JT Fashion Hero Slider --- */
.jt-fashion-hero-wrapper {
	position: relative;
	width: 100%;
	max-width: 1920px;
	padding: 0;
	margin: 0 auto;
}
.jt-fashion-hero-wrapper .jt-fhs-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
	transform: translateZ(0); /* Hardware Accel */
	height: var(--mj-fhs-height, 500px);
	border-radius: 16px;
}

/* Track & Slides (CSS Snapping) */
.jt-fashion-hero-wrapper .jt-fhs-track {
	display: flex;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.jt-fashion-hero-wrapper .jt-fhs-track::-webkit-scrollbar {
	display: none;
}
.jt-fashion-hero-wrapper .jt-fhs-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 55% 45%;
}
.jt-fashion-hero-wrapper .jt-fhs-slide.img-right {
	grid-template-columns: 45% 55%;
}
.jt-fashion-hero-wrapper .jt-fhs-slide.img-right .jt-fhs-image {
	order: 2;
}
.jt-fashion-hero-wrapper .jt-fhs-slide.img-right .jt-fhs-content {
	order: 1;
}

/* Image Block */
.jt-fashion-hero-wrapper .jt-fhs-image {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #f1f5f9;
}
.jt-fashion-hero-wrapper .jt-fhs-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 6s ease;
}
.jt-fashion-hero-wrapper .jt-fhs-slide:hover .jt-fhs-image img {
	transform: scale(1.05); /* Premium Slow Zoom */
}

/* Content Block */
.jt-fashion-hero-wrapper .jt-fhs-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px 8% 50px 8%;
	align-items: center;
	text-align: center;
	overflow-y: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.jt-fashion-hero-wrapper .jt-fhs-content::-webkit-scrollbar {
	display: none;
}
.jt-fashion-hero-wrapper .jt-fhs-content-inner {
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: auto 0;
}

/* Typography (Pro Level) */
.jt-fashion-hero-wrapper .jt-fhs-stylish {
	font-family: 'Playfair Display', 'Georgia', serif;
	font-style: italic;
	font-size: clamp(18px, 2.5vw, 26px);
	font-weight: 500;
	margin-bottom: clamp(6px, 1vw, 12px);
	letter-spacing: 0.5px;
	display: inline-block;
	position: relative;
	z-index: 2;
}
.jt-fashion-hero-wrapper .jt-fhs-heading {
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -1px;
	margin: 0 0 clamp(8px, 1.5vw, 16px) 0;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.jt-fashion-hero-wrapper .jt-fhs-subheading {
	font-size: clamp(11px, 1vw, 13px);
	font-weight: 700;
	margin: 0 0 clamp(12px, 2vw, 24px) 0;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}
.jt-fashion-hero-wrapper .jt-fhs-offer {
	display: inline-block;
	background: #0f172a;
	color: #ffffff;
	padding: clamp(4px, 1vw, 6px) clamp(10px, 2vw, 14px);
	font-size: clamp(10px, 1vw, 12px);
	font-weight: 700;
	margin-bottom: clamp(16px, 3vw, 32px);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-radius: 4px;
}

/* Button */
.jt-fashion-hero-wrapper .jt-fhs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 40px);
	border-radius: 4px;
	font-size: clamp(12px, 1.2vw, 14px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(250, 52, 52, 0.2);
}
.jt-fashion-hero-wrapper .jt-fhs-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

/* Navigation Arrows */
.jt-fashion-hero-wrapper .jt-fhs-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #0f172a;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(4px);
}
.jt-fashion-hero-wrapper .jt-fhs-arrow:hover {
	background: #ffffff;
	color: var(--primary-color, #fa3434);
	transform: translateY(-50%) scale(1.05);
}
.jt-fashion-hero-wrapper .jt-fhs-arrow.prev {
	left: 30px;
}
.jt-fashion-hero-wrapper .jt-fhs-arrow.next {
	right: 30px;
}

/* Dots */
.jt-fashion-hero-wrapper .jt-fhs-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
}
.jt-fashion-hero-wrapper .jt-fhs-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 5px;
	border: none;
	background: rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
}
.jt-fashion-hero-wrapper .jt-fhs-dot.active {
	background: var(--primary-color, #fa3434);
	width: 28px;
}

/* Mobile Responsive (Stack Layout) */
@media (max-width: 768px) {
	.jt-fashion-hero-wrapper .jt-fhs-container {
		height: var(--mj-fhs-height, 550px);
	}
	.jt-fashion-hero-wrapper .jt-fhs-slide {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr max-content;
	}
	.jt-fashion-hero-wrapper .jt-fhs-slide.img-right {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr max-content;
	}
	.jt-fashion-hero-wrapper .jt-fhs-slide.img-right .jt-fhs-image, .jt-fashion-hero-wrapper .jt-fhs-slide .jt-fhs-image {
		order: 1;
		height: 100%;
		min-height: 150px;
	}
	.jt-fashion-hero-wrapper .jt-fhs-slide.img-right .jt-fhs-content, .jt-fashion-hero-wrapper .jt-fhs-slide .jt-fhs-content {
		order: 2;
		padding: 24px 20px 40px 20px;
		justify-content: center;
		overflow: visible;
	}
	.jt-fashion-hero-wrapper .jt-fhs-stylish {
		font-size: 20px;
		margin-bottom: 6px;
	}
	.jt-fashion-hero-wrapper .jt-fhs-heading {
		font-size: 34px;
		letter-spacing: -1px;
		margin-bottom: 10px;
	}
	.jt-fashion-hero-wrapper .jt-fhs-subheading {
		font-size: 11px;
		margin-bottom: 16px;
		letter-spacing: 1.5px;
	}
	.jt-fashion-hero-wrapper .jt-fhs-offer {
		padding: 5px 12px;
		font-size: 10px;
		margin-bottom: 20px;
	}
	.jt-fashion-hero-wrapper .jt-fhs-btn {
		width: 100%;
		padding: 14px;
		font-size: 13px;
	}
	.jt-fashion-hero-wrapper .jt-fhs-arrow {
		display: none; /* Hide arrows on mobile, use swipe */
	}
	.jt-fashion-hero-wrapper .jt-fhs-dots {
		bottom: 12px;
	}
}

