@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Section Wrapper ── */
.ts-fdad5d7d-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	font-family: 'Inter', sans-serif;
}

/* ── Header ── */
.ts-fdad5d7d-header {
	text-align: center;
	margin-bottom: 50px;
}
.ts-fdad5d7d-label {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.ts-fdad5d7d-heading {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 12px;
}
.ts-fdad5d7d-subheading {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 400;
	margin: 0;
}

/* ── Slider Area ── */
.ts-fdad5d7d-slider-area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
.ts-fdad5d7d-track-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 1000px;
	padding-bottom: 120px;
}
.ts-fdad5d7d-track {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	gap: 0;
	position: relative;
	height: 480px;
}

/* ── Slide ── */
.ts-fdad5d7d-slide {
	flex: 0 0 200px;
	max-width: 200px;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(0.85);
	opacity: 0.55;
	z-index: 1;
	position: relative;
	cursor: pointer;
	filter: saturate(0.7);
}
.ts-fdad5d7d-slide.is-active {
	transform: scale(1.25);
	opacity: 1;
	z-index: 10;
	filter: saturate(1);
}
.ts-fdad5d7d-slide.is-adjacent {
	transform: scale(0.95);
	opacity: 0.7;
	z-index: 5;
	filter: saturate(0.85);
}

/* ── Card ── */
.ts-fdad5d7d-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
	transition: box-shadow 0.4s ease, transform 0.4s ease;
	background: #EDE8E0;
}
.ts-fdad5d7d-slide.is-active .ts-fdad5d7d-card {
	box-shadow: 0 30px 80px rgba(0,0,0,0.14);
}
.ts-fdad5d7d-card:hover {
	transform: translateY(-4px);
}
.ts-fdad5d7d-img-wrap {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	position: relative;
}
.ts-fdad5d7d-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.ts-fdad5d7d-card:hover .ts-fdad5d7d-img-wrap img {
	transform: scale(1.06);
}
.ts-fdad5d7d-card-name {
	text-align: center;
	padding: 12px 8px;
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	font-weight: 500;
	color: #2C2C2C;
	background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.6));
}

/* ── VS Badge ── */
.ts-fdad5d7d-vs-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -70%);
	z-index: 20;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #C4A87C, #A8926C);
	box-shadow: 0 8px 30px rgba(168,146,108,0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	animation: ts-fdad5d7d-pulse 2.5s ease-in-out infinite;
}
.ts-fdad5d7d-vs-badge span {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}
@keyframes ts-fdad5d7d-pulse {
	0%, 100% { transform: translate(-50%, -70%) scale(1); }
	50% { transform: translate(-50%, -70%) scale(1.08); }
}

/* ── Floating Content Card ── */
.ts-fdad5d7d-floating-wrap {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
	width: 340px;
}
.ts-fdad5d7d-floating {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 24px;
	padding: 24px 26px 22px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
	border: 1px solid rgba(255,255,255,0.6);
	transition: opacity 0.45s ease, visibility 0.45s ease;
}
.ts-fdad5d7d-floating-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(196,168,124,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.ts-fdad5d7d-floating-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 600;
	color: #2C2C2C;
	margin: 0 0 8px;
}
.ts-fdad5d7d-floating-text {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.65;
	color: #6B6158;
	margin: 0 0 14px;
}
.ts-fdad5d7d-floating-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ts-fdad5d7d-floating-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 12.5px;
	color: #5A5249;
	padding: 4px 0;
}
.ts-fdad5d7d-floating-list li svg {
	flex-shrink: 0;
}

/* ── Navigation ── */
.ts-fdad5d7d-nav {
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 40;
	flex-shrink: 0;
}
.ts-fdad5d7d-nav:hover {
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transform: scale(1.05);
}
.ts-fdad5d7d-nav svg {
	width: 20px;
	height: 20px;
}

/* ── Dots ── */
.ts-fdad5d7d-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}
.ts-fdad5d7d-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: all 0.35s ease;
	padding: 0;
}
.ts-fdad5d7d-dot.active {
	width: 28px;
	border-radius: 10px;
}

/* ── Stats Row ── */
.ts-fdad5d7d-stats {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.ts-fdad5d7d-stat {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 20px;
	padding: 20px 28px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	transition: all 0.4s ease;
	min-width: 140px;
}
.ts-fdad5d7d-stat-num {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: #2C2C2C;
	line-height: 1;
	margin-bottom: 4px;
}
.ts-fdad5d7d-stat-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #6B6158;
}
.ts-fdad5d7d-stat-sub {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: #A89A8C;
	margin-top: 2px;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
	.ts-fdad5d7d-heading { font-size: 36px; }
	.ts-fdad5d7d-track { height: 400px; }
	.ts-fdad5d7d-slide { flex: 0 0 170px; max-width: 170px; }
	.ts-fdad5d7d-slide.is-active { transform: scale(1.18); }
	.ts-fdad5d7d-floating-wrap { width: 300px; }
	.ts-fdad5d7d-stats { gap: 10px; }
	.ts-fdad5d7d-stat { padding: 16px 20px; min-width: 120px; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 767px) {
	.ts-fdad5d7d-heading { font-size: 28px; }
	.ts-fdad5d7d-subheading { font-size: 13px; }
	.ts-fdad5d7d-header { margin-bottom: 30px; }
	.ts-fdad5d7d-track { height: 360px; }
	.ts-fdad5d7d-slide { flex: 0 0 200px; max-width: 200px; }
	.ts-fdad5d7d-slide.is-active { transform: scale(1.12); }
	.ts-fdad5d7d-track-wrapper { padding-bottom: 0; overflow: visible; }
	.ts-fdad5d7d-floating-wrap {
		position: relative;
		left: auto;
		transform: none;
		width: 100%;
		max-width: 340px;
		margin: 20px auto 0;
	}
	.ts-fdad5d7d-floating {
		position: relative;
		display: none;
	}
	.ts-fdad5d7d-floating.is-mobile-active {
		display: block;
		opacity: 1 !important;
		visibility: visible !important;
	}
	.ts-fdad5d7d-vs-badge { width: 40px; height: 40px; }
	.ts-fdad5d7d-vs-badge span { font-size: 13px; }
	.ts-fdad5d7d-nav { width: 40px; height: 40px; }
	.ts-fdad5d7d-stats {
		gap: 8px;
		margin-top: 24px;
	}
	.ts-fdad5d7d-stat {
		padding: 14px 16px;
		min-width: 100px;
		border-radius: 16px;
	}
	.ts-fdad5d7d-stat-num { font-size: 22px; }
}
