.home-hero {
	padding-block: 60px 0;
}

.home-hero__grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 22px;
}

.home-hero__side {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.hero-card {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

.hero-card h1,
.hero-card h2,
.hero-card p {
	color: #ffffff;
}

.hero-card--primary {
	min-height: 585px;
	background: var(--tilenjoy-blue-strong);
}

.hero-card__content {
	position: relative;
	z-index: 3;
	width: 64%;
	padding: 68px 0 50px 78px;
}

.hero-card__eyebrow {
	display: inline-block;
	padding: 7px 16px;
	margin-bottom: 18px;
	color: var(--toy-navy);
	background: #ffffff;
	font-size: 15px;
	font-weight: 700;
	transform: rotate(-1deg);
}

.hero-card h1 {
	max-width: 570px;
	margin-bottom: 18px;
	font-size: clamp(2.35rem, 2.75vw, 3.25rem);
	font-weight: 800;
	line-height: 1.04;
	text-wrap: balance;
}

.hero-card__content > p {
	max-width: 470px;
	margin-bottom: 17px;
	font-size: 18px;
}

.hero-card__price {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: #ffffff;
}

.hero-card__price strong {
	font-size: 42px;
	line-height: 1;
}

.hero-card__price span {
	font-size: 20px;
}

.hero-card__person {
	position: absolute;
	right: -35px;
	bottom: 0;
	z-index: 2;
	width: 58%;
	max-height: 96%;
	object-fit: contain;
	object-position: right bottom;
}

.hero-card__shape {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.hero-card__shape--one {
	top: 24%;
	right: 3%;
	width: 72px;
}

.hero-card__shape--two {
	right: 34%;
	bottom: 13%;
	width: 66px;
}

.hero-card__shape--dots {
	bottom: 12%;
	left: 8%;
	width: 125px;
}

.hero-card--orange,
.hero-card--pink {
	min-height: 280px;
}

.hero-card--orange {
	background: var(--tilenjoy-yellow);
}

.hero-card--pink {
	background: var(--tilenjoy-pink-strong);
}

.hero-card--orange h2,
.hero-card--orange p {
	color: #ffffff;
}

.hero-card__side-content {
	position: relative;
	z-index: 2;
	width: 63%;
	padding: 48px 0 34px 48px;
}

.hero-card__side-content h2 {
	max-width: 270px;
	margin-bottom: 9px;
	font-size: clamp(1.65rem, 2vw, 2rem);
}

.hero-card__side-content p {
	margin-bottom: 25px;
	font-size: 16px;
}

.hero-card__side-content .toy-button {
	min-height: 48px;
	padding-inline: 24px;
}

.hero-card--orange > img,
.hero-card--pink > img {
	position: absolute;
	right: -8px;
	bottom: 0;
	width: 42%;
	max-height: 90%;
	object-fit: contain;
	object-position: right bottom;
}

.home-benefits {
	padding-block: 62px;
}

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

.benefit-card {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 125px;
	padding: 24px;
	border-radius: 10px;
}

.benefit-card:nth-child(1) { background: var(--tilenjoy-yellow-tint); }
.benefit-card:nth-child(2) { background: var(--tilenjoy-blue-tint); }
.benefit-card:nth-child(3) { background: var(--tilenjoy-green-tint); }
.benefit-card:nth-child(4) { background: var(--tilenjoy-pink-tint); }

.benefit-card__icon {
	display: grid;
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	place-items: center;
	color: #ffffff;
}

.benefit-card:nth-child(1) .benefit-card__icon {
	color: var(--tilenjoy-black);
	background: var(--tilenjoy-yellow);
}

.benefit-card:nth-child(2) .benefit-card__icon { background: var(--tilenjoy-blue); }

.benefit-card:nth-child(3) .benefit-card__icon {
	color: var(--tilenjoy-black);
	background: var(--tilenjoy-green);
}

.benefit-card:nth-child(4) .benefit-card__icon { background: var(--tilenjoy-pink-strong); }

.benefit-card__icon .icon {
	width: 27px;
	height: 27px;
}

.benefit-card h2 {
	margin-bottom: 5px;
	font-size: 18px;
}

.benefit-card p {
	margin: 0;
	color: var(--toy-muted);
	font-size: 14px;
}

.home-products,
.home-hot-deal,
.home-brands {
	padding-block: 94px;
}

.home-products--tinted {
	background: var(--toy-tint);
}

.product-tabs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.product-tabs button {
	padding: 5px 0;
	border: 0;
	color: var(--toy-muted);
	background: transparent;
	font-weight: 600;
}

.product-tabs button:hover,
.product-tabs button:focus-visible,
.product-tabs button.is-active {
	color: var(--toy-teal);
}

.product-carousel {
	display: grid;
	grid-auto-columns: calc((100% - 64px) / 5);
	grid-auto-flow: column;
	gap: 16px;
	padding: 1px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.product-card {
	position: relative;
	min-width: 0;
	border: 1px solid #e6edf0;
	border-radius: 5px;
	background: #ffffff;
	scroll-snap-align: start;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
	box-shadow: var(--toy-shadow);
	transform: translateY(-3px);
}

.product-card[hidden] {
	display: none;
}

.product-card__media {
	position: relative;
	display: grid;
	min-height: 230px;
	padding: 20px 14px 4px;
	place-items: center;
}

.product-card__media > a {
	display: block;
	width: 100%;
}

.product-card__media img {
	width: 100%;
	height: 205px;
	object-fit: contain;
	transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
	transform: scale(1.035);
}

.product-card__wishlist {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid #dde5e9;
	border-radius: 50%;
	place-items: center;
	color: var(--toy-muted);
	background: #ffffff;
}

.product-card__wishlist:hover,
.product-card__wishlist:focus-visible,
.product-card__wishlist.is-active {
	color: #ffffff;
	border-color: var(--toy-red);
	background: var(--toy-red);
}

.product-card__wishlist .icon {
	width: 15px;
	height: 15px;
}

.product-card__sale {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	padding: 3px 9px;
	border-radius: 999px;
	color: #ffffff;
	background: var(--toy-red);
	font-size: 11px;
	font-weight: 700;
}

.product-card__content {
	padding: 10px 20px 24px;
	text-align: center;
}

.product-card__category {
	margin-bottom: 7px;
	color: #9aa5b2;
	font-size: 13px;
}

.product-card__title {
	display: -webkit-box;
	min-height: 45px;
	margin-bottom: 8px;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.product-card__title a:hover,
.product-card__title a:focus-visible {
	color: var(--toy-teal);
}

.product-card__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1px;
	margin-bottom: 7px;
	color: #cfd5dc;
	font-size: 13px;
}

.product-card__rating .is-filled {
	color: var(--toy-orange);
}

.product-card__rating small {
	margin-left: 5px;
	color: #9aa5b2;
}

.product-card__price {
	color: var(--toy-teal);
	font-size: 22px;
	font-weight: 700;
}

.product-card__price del {
	margin-left: 5px;
	color: #9aa5b2;
	font-size: 14px;
	font-weight: 400;
}

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

.promo-ticker {
	height: 78px;
	overflow: hidden;
	border-block: 1px solid #edf0f3;
	background: #ffffff;
}

.promo-ticker__track {
	display: flex;
	align-items: center;
	width: max-content;
	height: 100%;
	animation: ticker 28s linear infinite;
}

.promo-ticker__track span {
	padding-inline: 42px;
	font-size: 18px;
	font-weight: 600;
	white-space: nowrap;
}

@keyframes ticker {
	to { transform: translateX(-50%); }
}

.home-dark-offer {
	color: #ffffff;
	background: var(--toy-navy);
}

.home-dark-offer__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 328px;
}

.home-dark-offer__content {
	position: relative;
	z-index: 2;
	max-width: 660px;
	padding-left: 10px;
}

.home-dark-offer h2 {
	max-width: 640px;
	margin-bottom: 28px;
	color: #ffffff;
	font-size: clamp(1.85rem, 2.15vw, 2.35rem);
	line-height: 1.14;
	text-wrap: balance;
}

.home-dark-offer img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 65%;
	max-height: 328px;
	object-fit: contain;
	object-position: right bottom;
}

.home-age,
.home-categories,
.home-sellers,
.home-news {
	padding-block: 100px;
}

.age-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 30px;
}

.age-card {
	text-align: center;
}

.age-card img {
	width: 100%;
	height: 190px;
	border-radius: 50%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.age-card:hover img {
	transform: translateY(-5px) rotate(2deg);
}

.age-card h3 {
	margin: 18px 0 0;
	font-size: 20px;
}

.home-hot-deal__layout {
	display: grid;
	grid-template-columns: 305px minmax(0, 1fr);
	align-items: stretch;
	gap: 34px;
}

.special-product {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--toy-navy);
	box-shadow: 0 18px 44px rgb(var(--tilenjoy-black-rgb) / 0.18);
	isolation: isolate;
}

.special-product__link {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	min-height: 100%;
	color: #ffffff;
}

.special-product__link::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 42%, rgb(var(--tilenjoy-black-rgb) / 0.18) 58%, rgb(var(--tilenjoy-black-rgb) / 0.94) 100%);
	content: "";
	pointer-events: none;
}

.special-product__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 320ms ease;
}

.special-product__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 10px;
	padding: 30px 26px;
}

.special-product__content small {
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	color: var(--tilenjoy-black);
	background: var(--tilenjoy-yellow);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.special-product__content strong {
	color: #ffffff;
	font-size: clamp(1.65rem, 2vw, 2rem);
	line-height: 1.05;
}

.special-product__content > span {
	color: rgb(255 255 255 / 0.86);
	font-size: 14px;
	line-height: 1.45;
}

.special-product__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
}

.special-product__cta .icon {
	width: 16px;
	height: 16px;
}

.special-product__link:hover,
.special-product__link:focus-visible {
	color: #ffffff;
}

.special-product__link:focus-visible {
	outline: 3px solid var(--tilenjoy-yellow);
	outline-offset: -6px;
}

.special-product__link:hover .special-product__image,
.special-product__link:focus-visible .special-product__image {
	transform: scale(1.035);
}

.hot-deal-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.product-card--compact .product-card__media {
	min-height: 185px;
}

.product-card--compact .product-card__media img {
	height: 170px;
}

.product-card--compact .product-card__content {
	padding: 8px 14px 20px;
}

.product-card--compact .product-card__price {
	font-size: 19px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.category-card {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 118px;
	padding: 20px 32px;
	border-radius: 12px;
	background: var(--tilenjoy-yellow-tint);
	transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
	color: var(--toy-navy);
	box-shadow: var(--toy-shadow);
	transform: translateY(-3px);
}

.category-card__icon {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	padding: 18px;
	border-radius: 50%;
	color: var(--toy-teal);
	background: #ffffff;
}

.category-card span {
	display: grid;
	gap: 4px;
}

.category-card strong {
	font-size: 19px;
}

.category-card small {
	color: var(--toy-muted);
	font-size: 14px;
}

.home-special-offer {
	position: relative;
	color: #ffffff;
	background: var(--toy-teal);
	overflow: hidden;
}

.home-special-offer::before,
.home-special-offer::after {
	position: absolute;
	inset-block: 0;
	width: 420px;
	background: url("../images/toyup/pattern-1.svg") center / contain no-repeat;
	content: "";
	opacity: 0.16;
}

.home-special-offer::before { left: -80px; }
.home-special-offer::after { right: -80px; transform: scaleX(-1); }

.home-special-offer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 516px;
}

.home-special-offer__content {
	max-width: 610px;
}

.script-title {
	margin-bottom: 5px;
	font-family: "Dancing Script", cursive;
	font-size: 40px;
	font-weight: 600;
}

.home-special-offer h2 {
	max-width: 560px;
	margin-bottom: 20px;
	color: #ffffff;
	font-size: clamp(1.85rem, 2.1vw, 2.35rem);
	line-height: 1.15;
}

.home-special-offer__content > p:not(.script-title) {
	max-width: 610px;
	margin-bottom: 28px;
	font-size: 17px;
}

.home-special-offer__visual {
	position: relative;
	align-self: stretch;
}

.offer-child {
	position: absolute;
	right: 12%;
	bottom: 0;
	z-index: 2;
	width: auto;
	height: 94%;
	object-fit: contain;
	object-position: bottom;
}

.offer-element {
	position: absolute;
	z-index: 1;
}

.offer-element--one {
	top: 17%;
	left: 4%;
	width: 180px;
}

.offer-element--two {
	right: 4%;
	bottom: 12%;
	width: 75px;
}

.home-sellers {
	background: #f7f7f7;
}

.seller-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.seller-card {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 120px;
	padding: 10px 20px 10px 10px;
	border-radius: 999px;
	background: #ffffff;
}

.seller-card img {
	flex: 0 0 100px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.seller-card h3 {
	margin: 2px 0 5px;
	font-size: 19px;
}

.seller-card p {
	margin: 0;
	color: var(--toy-orange);
	letter-spacing: 2px;
}

.home-products--popular {
	padding-block: 102px;
}

.popular-products-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 22px;
}

.brand-card {
	display: grid;
	gap: 18px;
	min-height: 220px;
	padding: 28px 18px;
	border-radius: 8px;
	place-items: center;
	text-align: center;
	background: #ffffff;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover,
.brand-card:focus-visible {
	color: var(--toy-navy);
	box-shadow: var(--toy-shadow);
	transform: translateY(-4px);
}

.brand-card span {
	display: grid;
	width: 120px;
	height: 120px;
	border: 1px solid #edf0f3;
	border-radius: 50%;
	place-items: center;
}

.brand-card .icon {
	width: 52px;
	height: 52px;
	color: var(--toy-teal);
}

.brand-card strong {
	font-size: 16px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.news-card {
	border: 1px solid #e7ecef;
	border-radius: 7px;
	overflow: hidden;
	background: #ffffff;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
	box-shadow: var(--toy-shadow);
	transform: translateY(-4px);
}

.news-card__image {
	position: relative;
	display: block;
	overflow: hidden;
}

.news-card__image img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.news-card:hover .news-card__image img {
	transform: scale(1.04);
}

.news-card__image span {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 7px 13px;
	border-radius: 4px;
	color: #ffffff;
	background: var(--toy-teal);
	font-size: 13px;
	font-weight: 600;
}

.news-card__content {
	padding: 22px;
}

.news-card__date {
	display: inline-block;
	padding: 6px 11px;
	margin-bottom: 15px;
	border: 1px solid #e7ecef;
	border-radius: 4px;
	color: var(--toy-muted);
	font-size: 13px;
}

.news-card h3 {
	min-height: 72px;
	margin-bottom: 12px;
	font-size: 19px;
	line-height: 1.35;
}

.news-card__content > p:not(.news-card__date) {
	min-height: 50px;
	margin-bottom: 22px;
	color: var(--toy-muted);
	font-size: 15px;
}

.news-card__author {
	display: flex;
	align-items: center;
	gap: 9px;
	padding-top: 18px;
	border-top: 1px solid #edf0f3;
	font-size: 14px;
}

.news-card__author span {
	display: grid;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	place-items: center;
	color: #ffffff;
	background: var(--toy-teal);
	font-weight: 700;
}

@media (max-width: 1199px) {
	.home-hero__grid {
		grid-template-columns: 1fr;
	}

	.home-hero__side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

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

	.product-carousel {
		grid-auto-columns: calc((100% - 48px) / 4);
	}

	.home-hot-deal__layout {
		grid-template-columns: 250px minmax(0, 1fr);
	}

	.hot-deal-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.category-grid,
	.seller-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.popular-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

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

@media (max-width: 991px) {
	.hero-card__content {
		width: 65%;
		padding-left: 48px;
	}

	.product-carousel {
		grid-auto-columns: calc((100% - 32px) / 3);
	}

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

	.home-hot-deal__layout {
		grid-template-columns: 1fr;
	}

	.special-product {
		min-height: 420px;
	}

	.hot-deal-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-special-offer__content {
		padding-block: 60px;
	}

	.offer-child {
		right: 0;
	}
}

@media (max-width: 767px) {
	.home-hero {
		padding-top: 24px;
	}

	.home-hero__side {
		grid-template-columns: 1fr;
	}

	.hero-card--primary {
		min-height: 760px;
	}

	.hero-card__content {
		width: 100%;
		padding: 48px 32px;
	}

	.hero-card h1 {
		max-width: 430px;
		font-size: clamp(2rem, 8.5vw, 2.6rem);
	}

	.hero-card__content > p {
		max-width: 380px;
		font-size: 17px;
	}

	.hero-card__price {
		align-items: center;
		flex-wrap: wrap;
	}

	.hero-card__price strong {
		font-size: 34px;
		white-space: nowrap;
	}

	.hero-card__price span {
		flex: 1 1 155px;
		font-size: 18px;
	}

	.hero-card__person {
		right: -32px;
		width: 86%;
		max-height: 42%;
	}

	.hero-card__shape--one,
	.hero-card__shape--two,
	.hero-card__shape--dots {
		display: none;
	}

	.hero-card--orange,
	.hero-card--pink {
		min-height: 300px;
	}

	.hero-card__side-content {
		width: 70%;
		padding: 48px 0 35px 32px;
	}

	.home-benefits,
	.home-products,
	.home-hot-deal,
	.home-age,
	.home-categories,
	.home-sellers,
	.home-news,
	.home-products--popular,
	.home-brands {
		padding-block: 60px;
	}

	.product-carousel {
		grid-auto-columns: 78%;
	}

	.home-dark-offer__inner {
		grid-template-columns: 1fr;
		min-height: 500px;
		padding-block: 55px 0;
	}

	.home-dark-offer__content {
		align-self: start;
		max-width: 520px;
		padding: 0;
	}

	.home-dark-offer h2 {
		font-size: clamp(1.7rem, 7.2vw, 2rem);
	}

	.home-dark-offer img {
		width: 100%;
		max-height: 280px;
	}

	.age-grid {
		gap: 20px 12px;
	}

	.age-card img {
		height: 145px;
	}

	.age-card h3 {
		font-size: 17px;
	}

	.hot-deal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.special-product {
		min-height: 500px;
	}

	.category-grid,
	.seller-grid {
		grid-template-columns: 1fr;
	}

	.home-special-offer::before,
	.home-special-offer::after {
		width: 220px;
	}

	.home-special-offer__inner {
		grid-template-columns: 1fr;
		min-height: 730px;
	}

	.home-special-offer__content {
		align-self: start;
		padding-block: 55px 10px;
	}

	.home-special-offer h2 {
		font-size: 1.75rem;
	}

	.home-special-offer__visual {
		min-height: 360px;
	}

	.offer-child {
		right: 50%;
		height: 100%;
		transform: translateX(50%);
	}

	.seller-card {
		min-height: 105px;
	}

	.seller-card img {
		flex-basis: 85px;
		width: 85px;
		height: 85px;
	}

	.popular-products-grid {
		display: grid;
		grid-auto-columns: 78%;
		grid-auto-flow: column;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

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

	.news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 479px) {
	.home-benefits__grid,
	.age-grid,
	.hot-deal-grid,
	.brand-grid {
		grid-template-columns: 1fr;
	}

	.hero-card__content {
		padding-inline: 24px;
	}

	.hero-card__side-content {
		width: 78%;
		padding-left: 24px;
	}

	.hero-card--orange > img,
	.hero-card--pink > img {
		width: 48%;
	}

	.product-tabs {
		gap: 10px 16px;
	}

	.product-carousel,
	.popular-products-grid {
		grid-auto-columns: 88%;
	}

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

	.category-card {
		padding-inline: 22px;
	}

	.home-special-offer__inner {
		min-height: 690px;
	}

	.home-special-offer__visual {
		min-height: 320px;
	}

	.brand-card {
		min-height: 200px;
	}
}
