.hero {
	position: relative;
	min-height: 334px;
	background: #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	display: block;
	z-index: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.14);
	z-index: 1;
}

.hero__content {
	position: relative;
	z-index: 2;
	padding: 24px;
	max-width: 760px;
}

.hero__eyebrow {
	margin-bottom: 10px;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.hero__title {
	margin: 0 0 22px;
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.06;
}

.hero__button {
	display: inline-block;
	padding: 14px 26px;
	border: 1px solid #fff;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.home-section {
	padding: 42px 0 34px;
}

.home-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.home-section__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
}

.home-section__link {
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #F95C20;
	letter-spacing: 0.03em;
}

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

.product-card__image-wrap {
	aspect-ratio: 0.78 / 1;
	background: #ececec;
	overflow: hidden;
	margin-bottom: 10px;
}

.product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 4px;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.2;
}

.product-card__title {
	margin-bottom: 6px;
	font-size: 0.86rem;
	line-height: 1.35;
	color: #222;
}

.product-card__price {
	margin-bottom: 4px;
	font-size: 0.95rem;
	font-weight: 800;
}

.product-card__location {
	font-size: 0.78rem;
	color: #777;
}

@media (max-width: 1100px) {
	.product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.hero {
		min-height: 332px;
		align-items: flex-end;
		justify-content: flex-start;
		text-align: left;
	}

	.hero::before {
		background: linear-gradient(
			to top,
			rgba(0, 0, 0, 0.38) 0%,
			rgba(0, 0, 0, 0.18) 38%,
			rgba(0, 0, 0, 0.05) 100%
		);
	}

	.hero__content {
		width: 100%;
		max-width: none;
		padding: 0 0 34px 34px;
		margin: 0;
	}

	.hero__eyebrow {
		margin: 0 0 12px;
		font-size: 14px;
		font-weight: 800;
		letter-spacing: 0.03em;
		line-height: 1.2;
		text-align: left;
	}

	.hero__title {
		margin: 0 0 18px;
		font-size: 32px;
		line-height: 1.04;
		letter-spacing: -0.03em;
		max-width: 300px;
		text-align: left;
	}

	.hero__button {
		padding: 13px 28px;
		font-size: 11px;
		letter-spacing: 0.08em;
	}

	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.home-section__title {
		font-size: 1.5rem;
	}
}
