/* TMENGHUB custom homepage — uses theme tokens: --wf-main-color, --wf-secondary-color, --wf-text-color, --wf-title-family */

.tmh-home {
	overflow: hidden;
}

.tmh-home h1,
.tmh-home h2,
.tmh-home h3 {
	font-family: var(--wf-title-family);
	color: var(--wf-secondary-color);
}

/* Hero */
.tmh-hero {
	position: relative;
	padding: 90px 0 70px;
	background: linear-gradient(135deg, #fff7f4 0%, var(--wf-gray-color) 60%);
}

.tmh-hero__eyebrow {
	display: inline-block;
	color: var(--wf-main-color);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 14px;
}

.tmh-hero__title {
	font-size: 52px;
	line-height: 1.12;
	font-weight: 700;
	margin: 0 0 18px;
}

.tmh-hero__desc {
	color: var(--wf-text-color);
	font-size: 17px;
	max-width: 480px;
	margin: 0 0 30px;
}

.tmh-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.tmh-hero__art {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}

.tmh-hero__blob {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 340px;
	height: 340px;
	max-width: 100%;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(254, 67, 34, 0.18), rgba(254, 67, 34, 0.04) 70%);
	z-index: 0;
}

.tmh-hero__img {
	position: relative;
	z-index: 1;
	max-height: 360px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.12));
}

@media (max-width: 991px) {
	.tmh-hero {
		padding: 60px 0 40px;
		text-align: center;
	}
	.tmh-hero__desc {
		margin-left: auto;
		margin-right: auto;
	}
	.tmh-hero__actions {
		justify-content: center;
	}
	.tmh-hero__title {
		font-size: 36px;
	}
	.tmh-hero__art {
		margin-top: 30px;
	}
}

/* USP strip */
.tmh-usp {
	background: var(--wf-secondary-color);
	padding: 26px 0;
}

.tmh-usp__item {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	margin-bottom: 10px;
}

.tmh-usp__item i {
	font-size: 22px;
	color: var(--wf-main-color);
	flex-shrink: 0;
}

.tmh-usp__item strong {
	display: block;
	font-size: 15px;
	color: #fff;
}

.tmh-usp__item span {
	display: block;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.65);
}

/* Section header */
.tmh-section {
	padding: 70px 0;
}

.tmh-section--alt {
	background: var(--wf-gray-color);
}

.tmh-section__head {
	text-align: center;
	margin-bottom: 40px;
}

.tmh-section__head h2 {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 8px;
	position: relative;
	display: inline-block;
}

.tmh-section__head p {
	color: var(--wf-text-color);
	margin: 0;
}

/* Category cards */
.tmh-cat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 220px;
	border-radius: 14px;
	overflow: hidden;
	background-color: var(--wf-secondary-color);
	background-size: cover;
	background-position: center;
	padding: 20px;
	text-decoration: none;
	margin-bottom: 24px;
	transition: transform 0.25s ease;
}

.tmh-cat-card:hover {
	transform: translateY(-4px);
}

.tmh-cat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%);
}

.tmh-cat-card__name {
	position: relative;
	z-index: 1;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tmh-cat-card__count {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
}

/* Promo banner */
.tmh-promo {
	padding: 70px 0;
}

.tmh-promo__inner {
	background: var(--wf-main-color);
	border-radius: 18px;
	padding: 60px 40px;
	text-align: center;
}

.tmh-promo__inner h2 {
	color: #fff;
	font-size: 30px;
	margin: 0 0 10px;
}

.tmh-promo__inner p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 26px;
}

.tmh-promo__inner .wf-btn-primary {
	background: #fff;
	color: var(--wf-main-color);
}

.tmh-promo__inner .wf-btn-primary:hover,
.tmh-promo__inner .wf-btn-primary:focus {
	background: var(--wf-secondary-color);
	color: #fff;
}
