#tompla .home {
	width: 100%;
	min-width: 0;
	background: var(--background);
	color: var(--text);
}

#tompla .home-hero {
	position: relative;
	width: 100%;
	padding: 46px 0;
	overflow: hidden;
	background: var(--background);
}

#tompla .home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 36px;
}

#tompla .home-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

#tompla .home-hero__title {
	max-width: 640px;
	margin-bottom: 0;
	font-size: 40px;
	line-height: 1.3;
	letter-spacing: -1.5px;
}

#tompla .home-hero__description {
	max-width: 620px;
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--text-muted);
	font-size: 18px;
	line-height: 1.6;
}

#tompla .home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
}

#tompla .home-hero__button {
	min-width: 160px;
}

#tompla .home-hero__secondary {
	min-width: 160px;
}

#tompla .home-hero__visual {
	width: 100%;
	min-width: 0;
}

#tompla .home-hero__image-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--background-soft);
	box-shadow: var(--shadow-medium);
}

#tompla .home-hero__image {
	width: 100%;
	height: 340px;
	object-fit: cover;
	object-position: center;
}

#tompla .home-benefits {
	width: 100%;
	padding: 46px 0;
	background: var(--background-soft);
}

#tompla .home-benefits__heading {
	max-width: 700px;
	margin: 0 auto 30px;
	text-align: center;
}

#tompla .home-benefits__title {
	margin-bottom: 0;
	font-size: 30px;
	line-height: 1.18;
	letter-spacing: -0.8px;
}

#tompla .home-benefits__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

#tompla .home-benefit {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	min-height: 180px;
	padding: 24px;
	background: var(--background);
    box-shadow: var(--shadow-small);
	transition: background-color 150ms ease;
}

#tompla .home-benefit__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 17px;
	border: 1px solid var(--border);
	background: var(--brand-soft);
	color: var(--brand);
}

#tompla .home-benefit__icon svg {
	width: 23px;
	height: 23px;
}

#tompla .home-benefit__title {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.35;
}

#tompla .home-benefit__text {
	margin-top: 7px;
	margin-bottom: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.55;
}

#tompla .home-products {
	width: 100%;
	padding-top: 46px;
	background: var(--background);
}

#tompla .home-products__inner {
	width: 100%;
}

#tompla .home-products__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 28px;
}

#tompla .home-products__heading > div {
	min-width: 0;
}

#tompla .home-products__title {
	max-width: 760px;
	margin-bottom: 0;
	font-size: 30px;
	line-height: 1.17;
	letter-spacing: -0.9px;
}

#tompla .home-products__all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--brand);
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
	transition: color 140ms ease;
}

#tompla .home-products__all svg {
	width: 17px;
	height: 17px;
	transition: transform 140ms ease;
}

#tompla .home-products__all:hover {
	color: var(--brand-hover);
}

#tompla .home-products__all:hover svg {
	transform: translateX(3px);
}

#tompla .home-products__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

#tompla .home-product {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--background);
	box-shadow: var(--shadow-small);
	transition:
		border-color 150ms ease,
		box-shadow 150ms ease,
		transform 150ms ease;
}

#tompla .home-product:hover {
	border-color: var(--border-strong);
	box-shadow: var(--shadow-medium);
	transform: translateY(-2px);
}

#tompla .home-product__image-link {
	display: block;
	width: 100%;
}

#tompla .home-product__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--background-soft);
}

#tompla .home-product__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 220ms ease;
}

#tompla .home-product:hover .home-product__image {
	transform: scale(1.025);
}

#tompla .home-product__sale {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 9px;
	background: var(--background-dark);
	color: var(--text-light);
	font-size: 10px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.2px;
}

#tompla .home-product__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
	min-width: 0;
	padding: 14px;
}

#tompla .home-product__title {
	width: 100%;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.4;
}

#tompla .home-product__title a {
	color: var(--text-heading);
	transition: color 140ms ease;
}

#tompla .home-product__title a:hover {
	color: var(--brand);
}

#tompla .home-product__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
	margin-top: 8px;
	color: var(--text-heading);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
}

#tompla .home-product__price del {
	color: var(--text-subtle);
	font-size: 12px;
	font-weight: 400;
}

#tompla .home-product__price ins {
	color: var(--brand);
	font-weight: 700;
	text-decoration: none;
}

#tompla .home-product__price .amount {
	color: inherit;
	font: inherit;
}

#tompla .home-product__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	padding-top: 14px;
	color: var(--brand);
	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;
	transition: color 140ms ease;
}

#tompla .home-product__link svg {
	width: 15px;
	height: 15px;
	transition: transform 140ms ease;
}

#tompla .home-product__link:hover {
	color: var(--brand-hover);
}

#tompla .home-product__link:hover svg {
	transform: translateX(2px);
}

@media (min-width: 768px) {
	#tompla .home-hero {
		padding: 56px 0;
	}

	#tompla .home-hero__inner {
		gap: 44px;
	}

	#tompla .home-hero__title {
		font-size: 50px;
		letter-spacing: -1.9px;
	}

	#tompla .home-hero__image {
		height: 410px;
	}

	#tompla .home-hero__badge {
		left: 18px;
		bottom: 18px;
	}

	#tompla .home-benefits {
		padding: 56px 0;
	}

	#tompla .home-benefits__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	#tompla .home-benefit {
		min-height: 190px;
		padding: 26px;
	}

	#tompla .home-products {
		padding-top: 56px;
    }

	#tompla .home-products__heading {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	#tompla .home-products__title {
		font-size: 32px;
	}

	#tompla .home-products__grid {
		gap: 20px;
	}

	#tompla .home-product__content {
		padding: 18px;
	}

	#tompla .home-product__title {
		font-size: 16px;
	}

	#tompla .home-product__price {
		font-size: 18px;
	}

	#tompla .home-product__link {
		font-size: 13px;
	}
}

@media (min-width: 1024px) {
	#tompla .home-hero {
		padding: 66px 0;
	}

	#tompla .home-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 58px;
	}

	#tompla .home-hero__title {
		font-size: 56px;
		line-height: 1.04;
		letter-spacing: -2.1px;
	}

	#tompla .home-hero__image {
		height: 520px;
        object-fit: top;
	}

    #tompla .home-benefits {
		padding: 66px 0;
	}

	#tompla .home-benefit {
		min-height: 210px;
		padding: 28px 24px;
	}

	#tompla .home-benefit__title {
		font-size: 17px;
	}

	#tompla .home-products {
		padding-top: 66px;
	}

	#tompla .home-products__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 22px;
	}
}

@media (min-width: 1280px) {
	#tompla .home-hero {
		padding: 72px 0;
	}

	#tompla .home-hero__inner {
		gap: 76px;
	}

	#tompla .home-hero__title {
		font-size: 60px;
		letter-spacing: -2.4px;
	}

	#tompla .home-hero__image {
		height: 520px;
	}

	#tompla .home-benefits {
		padding: 72px 0;
	}

	#tompla .home-benefits__title {
		font-size: 32px;
	}

	#tompla .home-products {
		padding-top: 72px;
	}

	#tompla .home-products__title {
		font-size: 34px;
	}
}