/* ============================================
   Why TandoStone — Scoped Styles
   File: css/why-tandostone.css
   ============================================ */

/* --- Hero --- */

#ts-common-hero {
	padding-top: 150px !important;
	padding-bottom: 150px !important;
}

/* --- Comparison --- */

#ts-comparison .ts-vs {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

/* --- Video --- */

#ts-video .ts-video-wrap {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	cursor: pointer;
}

#ts-video .ts-video-wrap video {
	width: 100%;
	display: block;
}

#ts-video .ts-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: opacity 0.3s;
}

#ts-video .ts-play-btn i {
	font-size: 28px;
	color: var(--ts-dark);
	margin-left: 4px;
}

#ts-video .ts-video-wrap.playing .ts-play-btn {
	opacity: 0;
}

/* --- Timeless --- */

#ts-timeless .ts-timeless-img {
	overflow: hidden;
}

#ts-timeless .ts-timeless-img img {
	transition: transform 0.6s ease;
}

#ts-timeless .ts-timeless-img:hover img {
	transform: scale(1.05);
}

#ts-timeless .ts-timeless-img .ts-inset-border {
	top: 12px;
	left: 12px;
	height: calc(100% - 24px);
	width: calc(100% - 24px);
}

/* --- Reviews --- */

#ts-why-reviews .ts-review-img {
	object-fit: cover;
	height: 100%;
	min-height: 400px;
}

.ts-why-reviews-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 1px solid var(--ts-gold);
	opacity: 1;
}

.ts-why-reviews-swiper .swiper-pagination-bullet-active {
	background: var(--ts-gold);
}

/* --- Contact --- */

#ts-why-contact .ts-contact-video {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
}

/* --- Responsive --- */

@media (max-width: 992px) {
	#ts-common-hero {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}

	#ts-timeless .d-flex {
		gap: 0.5rem !important;
	}
}

@media (max-width: 576px) {
	#ts-video .ts-play-btn {
		width: 60px;
		height: 60px;
	}

	#ts-video .ts-play-btn i {
		font-size: 20px;
	}
}
