/**
 * Totoland Homepage V1.
 *
 * Stage 16 production release.
 *
 * @version 1.15.0
 */

.tt-homepage-v1 {
	--tt-homepage-v1-stage: 16;
	--tt-homepage-cyan: #00aeef;
	--tt-homepage-green: #58c63a;
	--tt-homepage-pink: #ff5aa5;
	--tt-homepage-yellow: #ffc83d;
	--tt-homepage-dark: #111827;
	--tt-homepage-border: #cfe6f2;
	--tt-homepage-surface: #f7fbfd;
}

.tt-homepage-v1__page {
	width: 100%;
}

.tt-homepage-v1__layout {
	width: min(1320px, calc(100% - 40px));
	margin-inline: auto;
	padding-block: 48px 72px;
}

.tt-homepage-v1__hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	min-height: 520px;
	margin-bottom: 28px;
	padding: clamp(44px, 6vw, 84px);
	overflow: hidden;
	border: 1px solid var(--tt-homepage-border);
	border-radius: 28px;
	background:
		radial-gradient(
			circle at 92% 14%,
			rgba(0, 174, 239, 0.2) 0 100px,
			transparent 101px
		),
		radial-gradient(
			circle at 76% 94%,
			rgba(255, 90, 165, 0.12) 0 115px,
			transparent 116px
		),
		linear-gradient(135deg, #ffffff 0%, #f5fcff 68%, #e9f9ff 100%);
}

.tt-homepage-v1__hero-content {
	position: relative;
	z-index: 2;
}

.tt-homepage-v1__kicker {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin-bottom: 24px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #e6f8ff;
	color: #007eae;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tt-homepage-v1__hero h1 {
	max-width: 720px;
	margin: 0;
	color: var(--tt-homepage-dark);
	font-size: clamp(42px, 5.5vw, 72px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.tt-homepage-v1__hero-introduction {
	max-width: 720px;
	margin: 28px 0 0;
	color: #586a82;
	font-size: clamp(17px, 1.7vw, 21px);
	line-height: 1.75;
}

.tt-homepage-v1__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.tt-homepage-v1__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 13px 24px;
	border: 2px solid transparent;
	border-radius: 13px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.tt-homepage-v1__button:hover {
	transform: translateY(-2px);
}

.tt-homepage-v1__button:focus-visible {
	outline: 3px solid rgba(255, 200, 61, 0.8);
	outline-offset: 3px;
}

.tt-homepage-v1__button--primary {
	background: var(--tt-homepage-cyan);
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(0, 174, 239, 0.2);
}

.tt-homepage-v1__button--primary:hover {
	background: #009bd5;
	color: #ffffff;
}

.tt-homepage-v1__button--secondary {
	border-color: #b8dbea;
	background: #ffffff;
	color: #16617f;
}

.tt-homepage-v1__button--secondary:hover {
	border-color: var(--tt-homepage-cyan);
	background: #f2fbff;
	color: #005f83;
}

.tt-homepage-v1__hero-media,
.tt-homepage-v1__hero-media-placeholder {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 360px;
	margin: 0;
	overflow: hidden;
	border: 1px solid #c9e4ef;
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 249, 255, 0.92));
	box-shadow: 0 24px 52px rgba(26, 77, 101, 0.11);
}

.tt-homepage-v1__hero-media {
	aspect-ratio: 4 / 3;
	padding: 16px;
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.98),
			rgba(234, 249, 255, 0.94)
		);
}

.tt-homepage-v1__hero-image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 440px;
	border-radius: 16px;
	object-fit: contain;
	object-position: center;
}

.tt-homepage-v1__hero-media-label {
	position: relative;
	z-index: 2;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: #42637a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tt-homepage-v1__hero-orb {
	position: absolute;
	border-radius: 50%;
}

.tt-homepage-v1__hero-orb:nth-child(1) {
	top: 42px;
	right: 44px;
	width: 150px;
	height: 150px;
	background: rgba(0, 174, 239, 0.22);
}

.tt-homepage-v1__hero-orb:nth-child(2) {
	right: 110px;
	bottom: 46px;
	width: 118px;
	height: 118px;
	background: rgba(255, 90, 165, 0.2);
}

.tt-homepage-v1__hero-orb:nth-child(3) {
	bottom: 72px;
	left: 54px;
	width: 96px;
	height: 96px;
	background: rgba(88, 198, 58, 0.18);
}

.tt-homepage-v1__categories {
	margin-block: 32px;
	padding: clamp(32px, 5vw, 56px);
	scroll-margin-top: 120px;
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 48px rgba(31, 75, 96, 0.07);
}

.tt-homepage-v1__section-header {
	max-width: 760px;
	margin-bottom: 30px;
}

.tt-homepage-v1__section-header .tt-homepage-v1__kicker {
	margin-bottom: 16px;
}

.tt-homepage-v1__section-header h2 {
	margin: 0;
	color: var(--tt-homepage-dark);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.tt-homepage-v1__section-header p {
	margin: 16px 0 0;
	color: #607087;
	font-size: 17px;
	line-height: 1.7;
}

.tt-homepage-v1__category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.tt-homepage-v1__category-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #d7e7ef;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(34, 77, 98, 0.07);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.tt-homepage-v1__category-card:hover {
	border-color: #9bdcf3;
	box-shadow: 0 18px 38px rgba(0, 174, 239, 0.13);
	transform: translateY(-4px);
}

.tt-homepage-v1__category-link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.tt-homepage-v1__category-link:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: -3px;
}

.tt-homepage-v1__category-media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 80% 15%,
			rgba(0, 174, 239, 0.14),
			transparent 35%
		),
		linear-gradient(145deg, #f9fdff, #edf9fd);
}

.tt-homepage-v1__category-image {
	display: block;
	width: 100%;
	height: 100%;
	padding: 12px;
	object-fit: contain;
	object-position: center;
	transition: transform 220ms ease;
}

.tt-homepage-v1__category-card:hover .tt-homepage-v1__category-image {
	transform: scale(1.035);
}

.tt-homepage-v1__category-fallback {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: var(--tt-homepage-cyan);
	color: #ffffff;
	font-size: 38px;
	font-weight: 800;
	text-transform: uppercase;
	box-shadow: 0 14px 30px rgba(0, 174, 239, 0.2);
}

.tt-homepage-v1__category-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
}

.tt-homepage-v1__category-content h3 {
	margin: 0;
	color: var(--tt-homepage-dark);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
}

.tt-homepage-v1__category-count {
	margin-top: 8px;
	color: #6a7a8e;
	font-size: 13px;
	line-height: 1.4;
}

.tt-homepage-v1__category-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
	color: #007fae;
	font-size: 14px;
	font-weight: 800;
}

.tt-homepage-v1__products-section {
	margin-block: 32px;
	padding: clamp(32px, 5vw, 56px);
	scroll-margin-top: 120px;
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background:
		linear-gradient(145deg, #ffffff 0%, #f8fcfe 100%);
	box-shadow: 0 18px 48px rgba(31, 75, 96, 0.07);
}

.tt-homepage-v1__products-heading {
	display: flex;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 30px;
}

.tt-homepage-v1__products-heading .tt-homepage-v1__section-header {
	margin-bottom: 0;
}

.tt-homepage-v1__text-link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 9px;
	margin-bottom: 4px;
	color: #007fae;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.tt-homepage-v1__text-link:hover {
	color: #006386;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.tt-homepage-v1__text-link:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: 4px;
}

.tt-homepage-v1__product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.tt-homepage-v1__product-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid #d7e7ef;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(34, 77, 98, 0.07);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.tt-homepage-v1__product-card:hover {
	border-color: #9bdcf3;
	box-shadow: 0 18px 38px rgba(0, 174, 239, 0.13);
	transform: translateY(-4px);
}

.tt-homepage-v1__product-media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f4fafc;
}

.tt-homepage-v1__product-media:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: -3px;
}

.tt-homepage-v1__product-image {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	object-fit: contain;
	object-position: center;
	transition: transform 220ms ease;
}

.tt-homepage-v1__product-card:hover .tt-homepage-v1__product-image {
	transform: scale(1.035);
}

.tt-homepage-v1__product-badge {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 12px;
	padding: 6px 11px;
	border-radius: 999px;
	background: var(--tt-homepage-pink);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tt-homepage-v1__product-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
}

.tt-homepage-v1__product-category {
	margin-bottom: 9px;
	color: #007fae;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.035em;
	line-height: 1.4;
	text-transform: uppercase;
}

.tt-homepage-v1__product-content h3 {
	width: 100%;
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.tt-homepage-v1__product-content h3 a {
	color: var(--tt-homepage-dark);
	text-decoration: none;
}

.tt-homepage-v1__product-content h3 a:hover {
	color: #007fae;
}

.tt-homepage-v1__product-content h3 a:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: 3px;
}

.tt-homepage-v1__product-price {
	margin-top: 14px;
	color: var(--tt-homepage-cyan);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
}

.tt-homepage-v1__product-price del {
	margin-right: 6px;
	color: #7c8a9b;
	font-size: 13px;
	font-weight: 500;
}

.tt-homepage-v1__product-price ins {
	color: var(--tt-homepage-cyan);
	text-decoration: none;
}

.tt-homepage-v1__stock-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 13px;
	margin-bottom: 20px;
	color: #42546a;
	font-size: 12px;
	line-height: 1.4;
}

.tt-homepage-v1__stock-status > span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #a6afba;
	box-shadow: 0 0 0 4px rgba(166, 175, 186, 0.15);
}

.tt-homepage-v1__stock-status.is-in-stock > span {
	background: #12bd66;
	box-shadow: 0 0 0 4px rgba(18, 189, 102, 0.14);
}

.tt-homepage-v1__stock-status.is-out-of-stock > span {
	background: #e45b68;
	box-shadow: 0 0 0 4px rgba(228, 91, 104, 0.14);
}

.tt-homepage-v1__product-action {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 48px;
	margin-top: auto;
	padding: 13px 16px;
	border-radius: 12px;
	background: var(--tt-homepage-cyan);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(0, 174, 239, 0.16);
}

.tt-homepage-v1__product-action:hover {
	background: #009bd5;
	color: #ffffff;
}

.tt-homepage-v1__product-action:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: 3px;
}

.tt-homepage-v1__deals {
	background:
		radial-gradient(
			circle at 94% 6%,
			rgba(255, 90, 165, 0.11) 0 92px,
			transparent 93px
		),
		linear-gradient(135deg, #ffffff 0%, #fff9fc 100%);
}

.tt-homepage-v1__deal-media {
	background:
		linear-gradient(145deg, #ffffff 0%, #fff6fa 100%);
}

.tt-homepage-v1__deal-card .tt-homepage-v1__product-badge {
	background: var(--tt-homepage-pink);
}

.tt-homepage-v1__deal-action {
	background: var(--tt-homepage-pink);
	box-shadow: 0 12px 24px rgba(255, 90, 165, 0.2);
}

.tt-homepage-v1__deal-action:hover {
	background: #eb3f92;
}

.tt-homepage-v1__benefits {
	margin-block: 28px;
	padding: clamp(32px, 5vw, 56px);
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background:
		radial-gradient(
			circle at 92% 8%,
			rgba(88, 198, 58, 0.12) 0 90px,
			transparent 91px
		),
		linear-gradient(135deg, #ffffff 0%, #f8fff5 100%);
	box-shadow: 0 18px 48px rgba(31, 75, 96, 0.07);
}

.tt-homepage-v1__benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.tt-homepage-v1__benefit-card {
	position: relative;
	min-width: 0;
	min-height: 250px;
	padding: 28px 24px;
	overflow: hidden;
	border: 1px solid #d8e8ef;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.tt-homepage-v1__benefit-card::after {
	position: absolute;
	right: -34px;
	bottom: -34px;
	width: 108px;
	height: 108px;
	border-radius: 50%;
	background: rgba(0, 174, 239, 0.08);
	content: "";
}

.tt-homepage-v1__benefit-card:nth-child(2)::after {
	background: rgba(88, 198, 58, 0.1);
}

.tt-homepage-v1__benefit-card:nth-child(3)::after {
	background: rgba(255, 200, 61, 0.16);
}

.tt-homepage-v1__benefit-card:nth-child(4)::after {
	background: rgba(255, 90, 165, 0.1);
}

.tt-homepage-v1__benefit-card:hover {
	border-color: #9ddff7;
	box-shadow: 0 18px 38px rgba(0, 174, 239, 0.12);
	transform: translateY(-4px);
}

.tt-homepage-v1__benefit-number {
	display: inline-grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border-radius: 15px;
	background: #e5f8ff;
	color: #007fae;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.tt-homepage-v1__benefit-card:nth-child(2) .tt-homepage-v1__benefit-number {
	background: #ebf9e6;
	color: #347f20;
}

.tt-homepage-v1__benefit-card:nth-child(3) .tt-homepage-v1__benefit-number {
	background: #fff6d9;
	color: #956900;
}

.tt-homepage-v1__benefit-card:nth-child(4) .tt-homepage-v1__benefit-number {
	background: #ffebf4;
	color: #b72b70;
}

.tt-homepage-v1__benefit-card h3 {
	position: relative;
	z-index: 1;
	margin: 22px 0 0;
	color: var(--tt-homepage-dark);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.3;
}

.tt-homepage-v1__benefit-card p {
	position: relative;
	z-index: 1;
	margin: 13px 0 0;
	color: #5c6f86;
	font-size: 14px;
	line-height: 1.75;
}

.tt-homepage-v1__seo {
	margin-block: 28px;
	padding: clamp(32px, 5vw, 60px);
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background:
		radial-gradient(
			circle at 96% 4%,
			rgba(0, 174, 239, 0.11) 0 100px,
			transparent 101px
		),
		linear-gradient(135deg, #ffffff 0%, #f7fcff 100%);
	box-shadow: 0 18px 48px rgba(31, 75, 96, 0.07);
}

.tt-homepage-v1__seo-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
	gap: clamp(28px, 4vw, 52px);
	align-items: start;
	margin-top: 30px;
}

.tt-homepage-v1__seo-body {
	min-width: 0;
}

.tt-homepage-v1__seo-body > :first-child {
	margin-top: 0;
}

.tt-homepage-v1__seo-body > :last-child {
	margin-bottom: 0;
}

.tt-homepage-v1__seo-body h3 {
	margin: 30px 0 10px;
	color: var(--tt-homepage-dark);
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.3;
}

.tt-homepage-v1__seo-body p {
	margin: 0 0 18px;
	color: #53677f;
	font-size: 16px;
	line-height: 1.85;
}

.tt-homepage-v1__seo-links {
	padding: 26px;
	border: 1px solid #d7e7ef;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.tt-homepage-v1__seo-links-label {
	display: block;
	margin-bottom: 15px;
	color: #007fae;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tt-homepage-v1__seo-links > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid #e3edf2;
	color: inherit;
	text-decoration: none;
}

.tt-homepage-v1__seo-links > a:first-of-type {
	border-top: 1px solid #e3edf2;
}

.tt-homepage-v1__seo-links > a:hover strong {
	color: #007fae;
}

.tt-homepage-v1__seo-links > a:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: 4px;
}

.tt-homepage-v1__seo-links strong,
.tt-homepage-v1__seo-links small {
	display: block;
}

.tt-homepage-v1__seo-links strong {
	color: var(--tt-homepage-dark);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
}

.tt-homepage-v1__seo-links small {
	margin-top: 4px;
	color: #6a7a8e;
	font-size: 12px;
	line-height: 1.45;
}

.tt-homepage-v1__seo-links > a > span:last-child {
	color: #007fae;
	font-size: 18px;
	font-weight: 800;
}

.tt-homepage-v1__seo-links > p {
	margin: 20px 0 0;
	padding: 16px;
	border-radius: 12px;
	background: #f1f9fc;
	color: #5c6f86;
	font-size: 12px;
	line-height: 1.65;
}

.tt-homepage-v1__age-section {
	margin-block: 28px;
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background:
		linear-gradient(135deg, #ffffff 0%, #f6fcff 100%);
}

.tt-homepage-v1__age-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.tt-homepage-v1__age-card {
	position: relative;
	isolation: isolate;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #d9e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease;
}

.tt-homepage-v1__age-card:hover {
	transform: translateY(-4px);
	border-color: #9ddff7;
	box-shadow: 0 18px 36px rgba(0, 174, 239, 0.12);
}

.tt-homepage-v1__age-link {
	position: relative;
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.tt-homepage-v1__age-link:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: -3px;
}

.tt-homepage-v1__age-media {
	position: relative;
	z-index: 1;
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 100%;
	height: 190px;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 78% 18%,
			rgba(255, 255, 255, 0.82) 0 34px,
			transparent 35px
		),
		linear-gradient(145deg, #e8f9ff 0%, #d8f4ff 100%);
}

.tt-homepage-v1__age-card:nth-child(2) .tt-homepage-v1__age-media {
	background:
		radial-gradient(
			circle at 78% 18%,
			rgba(255, 255, 255, 0.82) 0 34px,
			transparent 35px
		),
		linear-gradient(145deg, #fff0f7 0%, #ffe2ef 100%);
}

.tt-homepage-v1__age-card:nth-child(3) .tt-homepage-v1__age-media {
	background:
		radial-gradient(
			circle at 78% 18%,
			rgba(255, 255, 255, 0.82) 0 34px,
			transparent 35px
		),
		linear-gradient(145deg, #f1fbe8 0%, #e2f6d2 100%);
}

.tt-homepage-v1__age-card:nth-child(4) .tt-homepage-v1__age-media {
	background:
		radial-gradient(
			circle at 78% 18%,
			rgba(255, 255, 255, 0.82) 0 34px,
			transparent 35px
		),
		linear-gradient(145deg, #fff9e5 0%, #fff0b8 100%);
}

.tt-homepage-v1__age-card:nth-child(5) .tt-homepage-v1__age-media {
	background:
		radial-gradient(
			circle at 78% 18%,
			rgba(255, 255, 255, 0.82) 0 34px,
			transparent 35px
		),
		linear-gradient(145deg, #f1edff 0%, #e4dbff 100%);
}

.tt-homepage-v1__age-image {
	position: absolute;
	inset: 14px;
	display: block;
	width: calc(100% - 28px);
	height: calc(100% - 28px);
	max-width: none;
	margin: 0;
	object-fit: contain;
	object-position: center;
	transition: transform 220ms ease;
}

.tt-homepage-v1__age-card:hover .tt-homepage-v1__age-image {
	transform: scale(1.035);
}

.tt-homepage-v1__age-fallback {
	display: grid;
	width: min(118px, 64%);
	aspect-ratio: 1;
	place-items: center;
	padding: 14px;
	border: 6px solid rgba(255, 255, 255, 0.84);
	border-radius: 50%;
	background: var(--tt-homepage-cyan);
	color: #ffffff;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 800;
	line-height: 1.12;
	text-align: center;
	box-shadow: 0 14px 28px rgba(0, 174, 239, 0.2);
}

.tt-homepage-v1__age-card:nth-child(2) .tt-homepage-v1__age-fallback {
	background: var(--tt-homepage-pink);
}

.tt-homepage-v1__age-card:nth-child(3) .tt-homepage-v1__age-fallback {
	background: var(--tt-homepage-green);
}

.tt-homepage-v1__age-card:nth-child(4) .tt-homepage-v1__age-fallback {
	background: #d39a00;
}

.tt-homepage-v1__age-card:nth-child(5) .tt-homepage-v1__age-fallback {
	background: #7662d9;
}

.tt-homepage-v1__age-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 158px;
	padding: 20px;
	background: #ffffff;
}

.tt-homepage-v1__age-content h3 {
	display: flex;
	min-height: 52px;
	align-items: flex-start;
	margin: 0;
	color: var(--tt-homepage-dark);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
}

.tt-homepage-v1__age-count {
	margin-top: 7px;
	color: #64758a;
	font-size: 13px;
	line-height: 1.4;
}

.tt-homepage-v1__age-action {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 20px;
	color: #007fae;
	font-size: 13px;
	font-weight: 800;
}

.tt-homepage-v1__collections {
	margin-block: 28px;
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background: #ffffff;
}

.tt-homepage-v1__collection-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.tt-homepage-v1__collection-card {
	position: relative;
	isolation: isolate;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #d9e8f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.07);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease;
}

.tt-homepage-v1__collection-card:hover {
	transform: translateY(-4px);
	border-color: #9ddff7;
	box-shadow: 0 20px 42px rgba(0, 174, 239, 0.13);
}

.tt-homepage-v1__collection-link {
	display: grid;
	height: 100%;
	min-height: 300px;
	grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
	color: inherit;
	text-decoration: none;
}

.tt-homepage-v1__collection-link:focus-visible {
	outline: 3px solid var(--tt-homepage-yellow);
	outline-offset: -3px;
}

.tt-homepage-v1__collection-media {
	position: relative;
	display: grid;
	min-width: 0;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 18% 18%,
			rgba(255, 255, 255, 0.88) 0 48px,
			transparent 49px
		),
		linear-gradient(145deg, #e8f9ff 0%, #dff6ff 100%);
}

.tt-homepage-v1__collection-card:nth-child(2) .tt-homepage-v1__collection-media {
	background:
		radial-gradient(
			circle at 18% 18%,
			rgba(255, 255, 255, 0.88) 0 48px,
			transparent 49px
		),
		linear-gradient(145deg, #fff0f7 0%, #ffe5f0 100%);
}

.tt-homepage-v1__collection-card:nth-child(3) .tt-homepage-v1__collection-media {
	background:
		radial-gradient(
			circle at 18% 18%,
			rgba(255, 255, 255, 0.88) 0 48px,
			transparent 49px
		),
		linear-gradient(145deg, #fff8df 0%, #fff0b8 100%);
}

.tt-homepage-v1__collection-card:nth-child(4) .tt-homepage-v1__collection-media {
	background:
		radial-gradient(
			circle at 18% 18%,
			rgba(255, 255, 255, 0.88) 0 48px,
			transparent 49px
		),
		linear-gradient(145deg, #eefae5 0%, #e0f4d2 100%);
}

.tt-homepage-v1__collection-image {
	display: block;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	max-width: none;
	margin: 16px;
	object-fit: contain;
	object-position: center;
	transition: transform 220ms ease;
}

.tt-homepage-v1__collection-card:hover .tt-homepage-v1__collection-image {
	transform: scale(1.035);
}

.tt-homepage-v1__collection-fallback {
	display: grid;
	width: 120px;
	aspect-ratio: 1;
	place-items: center;
	border: 7px solid rgba(255, 255, 255, 0.84);
	border-radius: 50%;
	background: var(--tt-homepage-cyan);
	color: #ffffff;
	font-size: 42px;
	font-weight: 800;
	box-shadow: 0 16px 34px rgba(0, 174, 239, 0.2);
}

.tt-homepage-v1__collection-card:nth-child(2) .tt-homepage-v1__collection-fallback {
	background: var(--tt-homepage-pink);
}

.tt-homepage-v1__collection-card:nth-child(3) .tt-homepage-v1__collection-fallback {
	background: #d39a00;
}

.tt-homepage-v1__collection-card:nth-child(4) .tt-homepage-v1__collection-fallback {
	background: var(--tt-homepage-green);
}

.tt-homepage-v1__collection-content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: clamp(24px, 3vw, 38px);
	background: #ffffff;
}

.tt-homepage-v1__collection-label {
	color: #007fae;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-transform: uppercase;
}

.tt-homepage-v1__collection-content h3 {
	margin: 12px 0 0;
	color: var(--tt-homepage-dark);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.tt-homepage-v1__collection-content p {
	margin: 15px 0 0;
	color: #5c6f86;
	font-size: 14px;
	line-height: 1.7;
}

.tt-homepage-v1__collection-action {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 24px;
	color: #007fae;
	font-size: 14px;
	font-weight: 800;
}

.tt-homepage-v1__reviews {
	position: relative;
	margin-block: 28px;
	padding: clamp(32px, 5vw, 64px);
	overflow: hidden;
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background:
		radial-gradient(
			circle at 96% 4%,
			rgba(255, 200, 61, 0.2) 0 90px,
			transparent 91px
		),
		linear-gradient(145deg, #fffefd 0%, #f7fcff 100%);
}

.tt-homepage-v1__review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.tt-homepage-v1__review-card {
	display: flex;
	min-width: 0;
	min-height: 300px;
	flex-direction: column;
	padding: 26px;
	border: 1px solid #d7e8f0;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(31, 78, 99, 0.08);
}

.tt-homepage-v1__review-rating {
	display: flex;
	gap: 3px;
	color: #cad6df;
	font-size: 18px;
	line-height: 1;
}

.tt-homepage-v1__review-rating .is-filled {
	color: #d69300;
}

.tt-homepage-v1__review-card blockquote {
	margin: 22px 0 26px;
	padding: 0;
	border: 0;
	color: #465b72;
	font-size: 15px;
	font-style: normal;
	line-height: 1.75;
}

.tt-homepage-v1__review-card blockquote p {
	margin: 0;
}

.tt-homepage-v1__review-footer {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid #e4eef3;
}

.tt-homepage-v1__review-footer > div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.tt-homepage-v1__review-footer strong {
	color: var(--tt-homepage-dark);
	font-size: 14px;
}

.tt-homepage-v1__verified-review {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 9px;
	border-radius: 999px;
	background: #eaf9ed;
	color: #287b19;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tt-homepage-v1__review-footer a {
	color: #007fae;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
}

.tt-homepage-v1__review-footer a:hover {
	color: #005f83;
	text-decoration: underline;
}

.tt-homepage-v1__review-footer a:focus-visible,
.tt-homepage-v1__reviews-empty a:focus-visible {
	outline: 3px solid rgba(255, 200, 61, 0.8);
	outline-offset: 3px;
}

.tt-homepage-v1__reviews-empty {
	display: grid;
	justify-items: start;
	max-width: 720px;
	margin-top: 30px;
	padding: 28px;
	border: 1px solid #d7e8f0;
	border-radius: 18px;
	background: #ffffff;
}

.tt-homepage-v1__reviews-empty > div {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff5d8;
	color: #d69300;
	font-size: 23px;
}

.tt-homepage-v1__reviews-empty h3 {
	margin: 18px 0 0;
	color: var(--tt-homepage-dark);
	font-size: 22px;
	line-height: 1.3;
}

.tt-homepage-v1__reviews-empty p {
	margin: 12px 0 22px;
	color: #5c6f86;
	font-size: 15px;
	line-height: 1.7;
}

.tt-homepage-v1__faq {
	margin-block: 28px;
	padding: clamp(32px, 5vw, 64px);
	border: 1px solid var(--tt-homepage-border);
	border-radius: 24px;
	background:
		linear-gradient(
			145deg,
			rgba(247, 252, 255, 0.98),
			rgba(255, 255, 255, 0.98)
		);
}

.tt-homepage-v1__faq-list {
	display: grid;
	gap: 12px;
	margin-top: 30px;
}

.tt-homepage-v1__faq-item {
	overflow: hidden;
	border: 1px solid #d5e7ef;
	border-radius: 15px;
	background: #ffffff;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.tt-homepage-v1__faq-item[open] {
	border-color: #9cd9ef;
	box-shadow: 0 12px 28px rgba(31, 78, 99, 0.07);
}

.tt-homepage-v1__faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 72px;
	padding: 19px 22px;
	color: var(--tt-homepage-dark);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
	cursor: pointer;
	list-style: none;
}

.tt-homepage-v1__faq-question::-webkit-details-marker {
	display: none;
}

.tt-homepage-v1__faq-question::marker {
	content: "";
}

.tt-homepage-v1__faq-question:hover {
	color: #007fae;
}

.tt-homepage-v1__faq-question:focus-visible {
	outline: 3px solid rgba(255, 200, 61, 0.8);
	outline-offset: -4px;
}

.tt-homepage-v1__faq-icon {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	place-items: center;
	border-radius: 50%;
	background: #e8f8fe;
	color: #007fae;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	transition:
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.tt-homepage-v1__faq-item[open] .tt-homepage-v1__faq-icon {
	transform: rotate(45deg);
	background: var(--tt-homepage-cyan);
	color: #ffffff;
}

.tt-homepage-v1__faq-answer {
	padding: 0 22px 22px;
	color: #566b82;
	font-size: 15px;
	line-height: 1.75;
}

.tt-homepage-v1__faq-answer p {
	max-width: 1040px;
	margin: 0;
}

.tt-homepage-v1__support {
	position: relative;
	margin-block: 28px 0;
	padding: clamp(34px, 5vw, 68px);
	overflow: hidden;
	border: 1px solid #a9dded;
	border-radius: 24px;
	background:
		radial-gradient(
			circle at 96% 8%,
			rgba(255, 200, 61, 0.23) 0 95px,
			transparent 96px
		),
		linear-gradient(135deg, #eaf9ff 0%, #f8fdff 54%, #fffaf0 100%);
}

.tt-homepage-v1__support-introduction {
	max-width: 820px;
}

.tt-homepage-v1__support-introduction h2 {
	margin: 0;
	color: var(--tt-homepage-dark);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.13;
}

.tt-homepage-v1__support-introduction > p {
	max-width: 760px;
	margin: 18px 0 0;
	color: #566b82;
	font-size: 17px;
	line-height: 1.7;
}

.tt-homepage-v1__support-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.tt-homepage-v1__support-card {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-width: 0;
	min-height: 172px;
	padding: 24px;
	border: 1px solid #cfe4ed;
	border-radius: 18px;
	background: #ffffff;
	color: var(--tt-homepage-dark);
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(31, 78, 99, 0.08);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.tt-homepage-v1__support-card:hover {
	transform: translateY(-3px);
	border-color: var(--tt-homepage-cyan);
	color: var(--tt-homepage-dark);
	box-shadow: 0 18px 38px rgba(0, 174, 239, 0.16);
}

.tt-homepage-v1__support-card:focus-visible {
	outline: 3px solid rgba(255, 200, 61, 0.9);
	outline-offset: 3px;
}

.tt-homepage-v1__support-icon {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 15px;
	background: #e6f8ff;
	color: #007fae;
}

.tt-homepage-v1__support-card--whatsapp .tt-homepage-v1__support-icon {
	background: #eaf9ed;
	color: #2c8b1d;
}

.tt-homepage-v1__support-card--directions .tt-homepage-v1__support-icon {
	background: #fff0f7;
	color: #d93683;
}

.tt-homepage-v1__support-icon svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.tt-homepage-v1__support-card-content {
	display: grid;
	min-width: 0;
	gap: 7px;
}

.tt-homepage-v1__support-card-content strong {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
}

.tt-homepage-v1__support-card-content > span {
	color: #5b6e84;
	font-size: 13px;
	line-height: 1.55;
}

.tt-homepage-v1__support-card-content small {
	color: #007fae;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.5;
}

.tt-homepage-v1__support-card--whatsapp
.tt-homepage-v1__support-card-content small {
	color: #2c8b1d;
}

.tt-homepage-v1__support-card--directions
.tt-homepage-v1__support-card-content small {
	color: #bc2c70;
}

.tt-homepage-v1__support-arrow {
	color: #007fae;
	font-size: 22px;
	font-weight: 800;
	transition: transform 180ms ease;
}

.tt-homepage-v1__support-card:hover .tt-homepage-v1__support-arrow {
	transform: translateX(4px);
}

@media (max-width: 767px) {
	.tt-homepage-v1__layout {
		width: min(100% - 24px, 1320px);
		padding-block: 28px 48px;
	}

	.tt-homepage-v1__hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 34px 24px;
		border-radius: 20px;
	}

	.tt-homepage-v1__hero h1 {
		font-size: clamp(38px, 12vw, 54px);
	}

	.tt-homepage-v1__hero-introduction {
		font-size: 17px;
		line-height: 1.65;
	}

	.tt-homepage-v1__hero-actions {
		flex-direction: column;
	}

	.tt-homepage-v1__button {
		width: 100%;
	}

	.tt-homepage-v1__hero-media,
	.tt-homepage-v1__hero-media-placeholder {
		min-height: 260px;
	}

	.tt-homepage-v1__hero-media {
		aspect-ratio: 16 / 11;
		padding: 12px;
	}

	.tt-homepage-v1__categories {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.tt-homepage-v1__category-content {
		padding: 15px;
	}

	.tt-homepage-v1__category-content h3 {
		font-size: 16px;
	}

	.tt-homepage-v1__category-action {
		font-size: 13px;
	}

	.tt-homepage-v1__products-section {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__products-heading {
		display: block;
	}

	.tt-homepage-v1__text-link {
		margin-top: 18px;
	}

	.tt-homepage-v1__product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.tt-homepage-v1__product-content {
		padding: 15px;
	}

	.tt-homepage-v1__product-content h3 {
		font-size: 15px;
	}

	.tt-homepage-v1__product-price {
		font-size: 17px;
	}

	.tt-homepage-v1__product-action {
		padding-inline: 13px;
		font-size: 13px;
	}

	.tt-homepage-v1__benefits {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__benefit-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tt-homepage-v1__benefit-card {
		min-height: 0;
		padding: 24px 20px;
	}

	.tt-homepage-v1__seo {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__seo-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.tt-homepage-v1__seo-body p {
		font-size: 15px;
		line-height: 1.75;
	}

	.tt-homepage-v1__seo-links {
		padding: 20px;
	}

	.tt-homepage-v1__reviews {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__review-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tt-homepage-v1__review-card {
		min-height: 0;
		padding: 22px 20px;
	}

	.tt-homepage-v1__reviews-empty {
		padding: 22px 20px;
	}

	.tt-homepage-v1__faq {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__faq-question {
		min-height: 66px;
		padding: 17px 16px;
		font-size: 15px;
	}

	.tt-homepage-v1__faq-answer {
		padding: 0 16px 18px;
		font-size: 14px;
	}

	.tt-homepage-v1__support {
		margin-block: 24px 0;
		padding: 30px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__support-introduction > p {
		font-size: 15px;
	}

	.tt-homepage-v1__support-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.tt-homepage-v1__support-card {
		min-height: 148px;
		padding: 20px;
	}

	.tt-homepage-v1__age-section {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__age-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.tt-homepage-v1__age-content {
		min-height: 150px;
		padding: 16px;
	}

	.tt-homepage-v1__age-content h3 {
		font-size: 17px;
	}

	.tt-homepage-v1__age-media {
		height: 165px;
	}

	.tt-homepage-v1__collections {
		margin-block: 24px;
		padding: 28px 18px;
		border-radius: 18px;
	}

	.tt-homepage-v1__collection-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tt-homepage-v1__collection-link {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.tt-homepage-v1__collection-media {
		height: 220px;
	}

	.tt-homepage-v1__collection-content {
		min-height: 230px;
		padding: 24px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.tt-homepage-v1__hero {
		grid-template-columns: 1fr 0.8fr;
		padding: 48px;
	}

	.tt-homepage-v1__hero-media,
	.tt-homepage-v1__hero-media-placeholder {
		min-height: 310px;
	}

	.tt-homepage-v1__category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-homepage-v1__product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-homepage-v1__benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-homepage-v1__seo-layout {
		grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.7fr);
		gap: 28px;
	}

	.tt-homepage-v1__review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-homepage-v1__support-grid {
		grid-template-columns: 1fr;
	}

	.tt-homepage-v1__age-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tt-homepage-v1__age-media {
		height: 180px;
	}

	.tt-homepage-v1__collection-link {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.tt-homepage-v1__collection-media {
		height: 240px;
	}

	.tt-homepage-v1__collection-content {
		min-height: 250px;
	}
}

@media (max-width: 420px) {
	.tt-homepage-v1__product-grid {
		grid-template-columns: 1fr;
	}

	.tt-homepage-v1__age-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tt-homepage-v1__button,
	.tt-homepage-v1__category-card,
	.tt-homepage-v1__category-image,
	.tt-homepage-v1__product-card,
	.tt-homepage-v1__product-image,
	.tt-homepage-v1__age-card,
	.tt-homepage-v1__age-image,
	.tt-homepage-v1__collection-card,
	.tt-homepage-v1__collection-image,
	.tt-homepage-v1__benefit-card,
	.tt-homepage-v1__seo-links > a,
	.tt-homepage-v1__review-footer a,
	.tt-homepage-v1__faq-item,
	.tt-homepage-v1__faq-icon,
	.tt-homepage-v1__support-card,
	.tt-homepage-v1__support-arrow {
		transition: none;
	}
}
