.top {
	display: flex;
	gap: 1.25rem;
}
	.home-product-card {
		text-decoration: none !important;
		position: relative;
		height: fit-content;
		flex: 1 0 0;
	}
		.home-product-card__image {
			border-radius: 0.5rem;
			object-fit: contain;
			aspect-ratio: 5/7;
			color: transparent;
		}

		.home-product-card__hot {
			position: absolute;
			top: -0.5rem;
			right: -0.5rem;
			width: 3.5rem;
			height: 3.5rem;
			rotate: 15deg;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			border-radius: 50%;
			box-shadow: var(--shadow);
			color: var(--lighter);
			background-image: linear-gradient(#ffa700, var(--secondary));
			mask: url("/img/functional/r.svg") no-repeat;
		}
			.home-product-card__hot-icon {
				font-size: 1.4rem;
			}
			.home-product-card__hot-caption {
				font-size: 0.8rem;
				font-weight: 800;
			}

		.home-product-card__props {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: baseline;
			gap: 0 1em;
			font-weight: 500;
			font-size: 1.5rem;
			margin-top: 0.25rem;
		}
			.home-product-card__name {
				margin: 0;
				font-weight: inherit;
				font-size: 1em;
				color: var(--primary);
			}
			.home-product-card__rating {
				font-size: 0.75em;
			}
			.home-product-card__price {
				flex-basis: 100%;
				color: var(--dark);
			}
	.top__show-more {
		align-self: flex-start;
		height: 436px;
		background-color: var(--secondary-alpha-100);
		color: var(--secondary);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 5rem 1rem;
		border-radius: 0.5rem;
		font-size: 2rem;
		font-weight: 600;
		transition: background-color 0.35s ease-out;
		text-decoration: none;
	}
		.top__show-more:hover {
			background-color: var(--secondary-alpha-200);
			transition: none;
		}

	.top:not(:has(.home-product-card:nth-child(3))) {
		font-size: 2em !important;
	}

.home__address {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
	.home__address-section {
		margin-block: 1.5rem;
	}

.home__schedule {
	display: flex;
	flex-direction: column;
}
	.home__schedule-row {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		margin-bottom: 0.5em;
	}
		.home__schedule-interval {
			flex-grow: 1;
			border-bottom: 1px dotted var(--primary-alpha-300);
			margin: 4px 0.5rem;
		}
		.home__schedule-time {
			flex-basis: 25%;
		}

.home__reviews-group {
	display: grid;
	gap: 2em;
	grid-template-columns: repeat(auto-fill, minmax(16em, 1fr));
}

.constructor-container {
	display: block;
	margin-top: 2rem;
}
.constructor {
	border-radius: 1.5rem;
	box-shadow: var(--shadow--lighter);
	overflow: hidden;
	margin-left: calc(var(--page-padding) * -1);
	width: calc(100% + var(--page-padding));
}
	.constructor:hover {
		filter: brightness(0.98) saturate(1.05) contrast(1.1);
	}

	.constructor__image {
		width: 100%;
		height: auto;
		background: var(--lightest);
		transition: background 0.2s linear;
	}

.cases {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	align-items: flex-start;
}
	.case {
		display: grid;
		gap: 0.75rem;
	}
		.case-title {
			margin-block: 0 0.25rem;
			font-size: 1em;
			line-height: 1.2;
		}
		.case-description {
			font-size: 0.7em;
			line-height: 1.4;
		}
		.case-image img {
			border-radius: 0.5rem;
			background-color: var(--gray-lightest);
		}
		.case .btn {
			display: flex;
			gap: 0.25em;
			align-items: center;
		}

@media screen and (width < 992px) {
	.home-product-card__props {
		font-size: 1rem;
	}
}