.tm-product-landing {
	--tm-bg: #ffffff;
	--tm-surface: #ffffff;
	--tm-surface-soft: #f8fafc;
	--tm-line: #e5e7eb;
	--tm-text: #111827;
	--tm-text-soft: #6b7280;
	--tm-accent: #f6cc00;
	--tm-accent-soft: #fff7cc;
	--tm-dark: #111827;
	--tm-radius-xl: 30px;
	--tm-radius-lg: 24px;
	--tm-radius-md: 18px;
	background: var(--tm-bg);
	color: var(--tm-text);
}

.tm-product-landing__shell {
	width: min(1240px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(20px, 4vw, 40px) 0 clamp(32px, 5vw, 56px);
}

.tm-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 420px);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}

.tm-product-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.tm-product-hero__breadcrumbs {
	margin-bottom: 18px;
}

.tm-product-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

.tm-product-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.tm-product-breadcrumbs a:hover {
	color: #4b5563;
}

.tm-product-breadcrumbs__item:last-child {
	color: #4b5563;
}

.tm-product-breadcrumbs__separator {
	color: #9ca3af;
	font-size: 11px;
}

.tm-product-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.tm-product-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background: #f9fafb;
	color: #1f2937;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tm-product-hero__title {
	margin: 0;
	font-size: clamp(42px, 5vw, 76px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--tm-text);
	text-wrap: balance;
}

.tm-product-hero__summary {
	max-width: 760px;
	margin: 20px 0 0;
	color: var(--tm-text-soft);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
}

.tm-product-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 14px;
	margin-top: 22px;
}

.tm-product-rating {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.tm-product-rating .star-rating {
	margin: 0;
	color: #f6cc00;
	font-size: 15px;
}

.tm-product-rating__value,
.tm-product-rating__count {
	color: var(--tm-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.tm-product-rating__count {
	color: var(--tm-text-soft);
	font-weight: 600;
}

.tm-product-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eef2f7;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.tm-product-chip--soft {
	background: var(--tm-accent-soft);
	color: #6d5600;
}

.tm-product-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.tm-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	padding: 16px 28px;
	border-radius: 20px;
	border: 1px solid transparent;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.tm-product-button:hover {
	transform: translateY(-1px);
}

.tm-product-button--primary {
	background: var(--tm-accent);
	color: #111827;
	box-shadow: 0 16px 32px rgba(246, 204, 0, 0.18);
}

.tm-product-button--primary:hover {
	color: #111827;
	box-shadow: 0 18px 36px rgba(246, 204, 0, 0.24);
}

.tm-product-button--secondary {
	background: #ffffff;
	border-color: var(--tm-line);
	color: var(--tm-dark);
}

.tm-product-button--secondary:hover {
	color: var(--tm-dark);
	border-color: #cbd5e1;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.tm-product-card {
	position: sticky;
	top: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 18px;
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-xl);
	background: var(--tm-surface);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.tm-product-card__media {
	overflow: hidden;
	border-radius: var(--tm-radius-lg);
	background: #f3f4f6;
	aspect-ratio: 16 / 10;
}

.tm-product-card__image,
.tm-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tm-product-card__price-prefix {
	margin: 0;
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.tm-product-card__price {
	margin: 0;
	color: var(--tm-dark);
	font-size: clamp(32px, 2.6vw, 50px);
	font-weight: 800;
	line-height: 1;
}

.tm-product-card__price .amount {
	color: inherit;
	font-weight: inherit;
}

.tm-product-card__price del {
	margin-inline-end: 10px;
	color: #9ca3af;
	font-size: 0.48em;
	font-weight: 700;
}

.tm-product-card__price ins {
	background: transparent;
	text-decoration: none;
}

.tm-product-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 62px;
	padding: 16px 22px;
	border-radius: 20px;
	background: #111827;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.tm-product-card__cta:hover {
	background: #000000;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(17, 24, 39, 0.14);
}

.tm-product-card__note {
	margin: 0;
	color: var(--tm-text-soft);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}

.tm-product-card__heading {
	color: #8b95a5;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tm-product-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tm-product-card__list li {
	position: relative;
	padding-left: 20px;
	color: #374151;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
}

.tm-product-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--tm-accent);
	transform: translateY(-50%);
}

.tm-product-details {
	margin-top: clamp(28px, 5vw, 56px);
}

.tm-product-details__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.tm-product-details__card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 22px;
	border: 1px solid var(--tm-line);
	border-radius: 20px;
	background: var(--tm-surface-soft);
}

.tm-product-details__label {
	color: #8b95a5;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tm-product-details__value {
	color: var(--tm-dark);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.tm-product-tabs {
	margin-top: clamp(28px, 5vw, 56px);
	padding: clamp(20px, 3vw, 32px);
	border: 1px solid var(--tm-line);
	border-radius: var(--tm-radius-xl);
	background: var(--tm-surface);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
}

.tm-product-tabs .woocommerce-tabs {
	margin: 0;
}

.tm-product-tabs .woocommerce-tabs::before,
.tm-product-tabs .woocommerce-tabs::after {
	display: none;
}

.tm-product-tabs .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}

.tm-product-tabs .woocommerce-tabs ul.tabs::before,
.tm-product-tabs .woocommerce-tabs ul.tabs::after {
	display: none;
}

.tm-product-tabs .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #f3f4f6;
}

.tm-product-tabs .woocommerce-tabs ul.tabs li::before,
.tm-product-tabs .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.tm-product-tabs .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	padding: 12px 18px;
	color: #4b5563;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.tm-product-tabs .woocommerce-tabs ul.tabs li.active {
	background: #111827;
}

.tm-product-tabs .woocommerce-tabs ul.tabs li.active a {
	color: #ffffff;
}

.tm-product-tabs .woocommerce-Tabs-panel {
	margin: 0;
	padding: 0;
	color: #374151;
	font-size: 16px;
	line-height: 1.7;
}

.tm-product-tabs .woocommerce-Tabs-panel > :first-child {
	margin-top: 0;
}

.tm-product-tabs .woocommerce-Tabs-panel > :last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.tm-product-hero {
		grid-template-columns: 1fr;
	}

	.tm-product-card {
		position: static;
		max-width: 560px;
	}

	.tm-product-details__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.tm-product-landing__shell {
		width: min(100%, calc(100% - 24px));
		padding-top: 16px;
	}

	.tm-product-hero__title {
		font-size: clamp(34px, 11vw, 48px);
	}

	.tm-product-hero__summary {
		font-size: 15px;
	}

	.tm-product-hero__actions {
		width: 100%;
		flex-direction: column;
	}

	.tm-product-button,
	.tm-product-card__cta {
		width: 100%;
	}

	.tm-product-card {
		padding: 16px;
		border-radius: 24px;
	}

	.tm-product-card__price {
		font-size: 38px;
	}

	.tm-product-tabs {
		padding: 18px;
		border-radius: 24px;
	}

	.tm-product-tabs .woocommerce-tabs ul.tabs li,
	.tm-product-tabs .woocommerce-tabs ul.tabs li a {
		width: 100%;
	}
}
