/* SMARTHOFF HOME HERO REFRESH 2026-06-17 */
.sh-home-hero {
	position: relative;
	overflow: hidden;
	margin: 24px 0;
	padding: 0;
	color: #fff;
	background: linear-gradient(105deg, rgba(12, 17, 24, .99) 0%, rgba(16, 22, 31, .98) 46%, rgba(36, 63, 80, .95) 100%);
	box-shadow: 0 24px 50px rgba(15, 28, 40, .14);
}

.sh-home-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(112deg, transparent 0 20%, rgba(51, 197, 224, .15) 20% 26%, transparent 26% 52%, rgba(51, 197, 224, .18) 52% 73%, transparent 73%),
		radial-gradient(circle at 74% 26%, rgba(57, 200, 226, .18), transparent 34%);
	pointer-events: none;
}

.sh-home-hero__content,
.sh-home-hero__visual {
	position: relative;
	z-index: 1;
}

.sh-home-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(520px, 1.12fr) minmax(420px, .88fr);
	gap: 22px;
	width: min(calc(100% - 2 * var(--sh-home-gutter, clamp(16px, 3vw, 48px))), var(--sh-home-content-max, 1784px));
	min-height: 560px;
	margin: 0 auto;
	padding: 42px 0;
}

.sh-home-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 980px;
}

.sh-home-hero__title {
	margin: 0 0 18px;
	max-width: 980px;
	font-size: clamp(38px, 4.8vw, 72px);
	line-height: 1.04;
	letter-spacing: 0;
	color: #fff;
	font-weight: 900;
}

.sh-home-hero__lead {
	max-width: 780px;
	margin: 0 0 28px;
	color: #dce7ef;
	font-size: 19px;
	line-height: 1.55;
}

.sh-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 0;
}

.sh-home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border: 2px solid transparent;
	font-weight: 900;
	font-size: 16px;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.sh-home-button:hover,
.sh-home-button:focus {
	transform: translateY(-2px);
	text-decoration: none;
}

.sh-home-button--primary {
	background: #35c6df;
	color: #07111b;
}

.sh-home-button--primary:hover,
.sh-home-button--primary:focus {
	background: #53d4e8;
	color: #07111b;
}

.sh-home-button--ghost {
	border-color: rgba(255, 255, 255, .45);
	color: #fff;
	background: rgba(255, 255, 255, .04);
}

.sh-home-button--ghost:hover,
.sh-home-button--ghost:focus {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, .11);
}

.sh-home-hero__chips {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 560px;
	margin-bottom: 28px;
	padding: 0;
}

.sh-home-chip {
	min-height: 82px;
	padding: 14px;
	border: 1px solid rgba(220, 230, 238, .22);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(8px);
}

.sh-home-chip strong {
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 1.25;
}

.sh-home-chip span {
	display: block;
	margin-top: 6px;
	color: #d7e2eb;
	font-size: 14px;
	line-height: 1.45;
}

.sh-home-hero__visual {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 470px;
}

.sh-home-product {
	width: min(118%, 820px);
	max-width: none;
	aspect-ratio: 1.38 / 1;
	background-image: url("/images/asu-tp-cabinet-cutout-transparent-hero-20260617.webp");
	background-repeat: no-repeat;
	background-position: center left;
	background-size: contain;
	transform: translateX(-42px) scale(1.08);
	filter: drop-shadow(0 32px 38px rgba(0, 0, 0, .42));
}

@media (max-width: 1180px) {
	.sh-home-hero__inner {
		grid-template-columns: 1fr;
	}

	.sh-home-hero__visual {
		order: -1;
		justify-content: flex-start;
		min-height: 360px;
	}

	.sh-home-product {
		width: min(100%, 760px);
		transform: translateX(-24px) scale(1.04);
	}
}

@media (max-width: 760px) {
	.sh-home-hero {
		min-height: 0;
		margin-bottom: 28px;
		padding: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.sh-home-hero__inner {
		width: min(calc(100% - 36px), 520px);
		min-height: 0;
		padding: 28px 0 32px;
	}

	.sh-home-hero__content {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.sh-home-hero__title {
		max-width: 100%;
		font-size: clamp(30px, 10.4vw, 40px);
		line-height: 1.08;
		overflow-wrap: anywhere;
	}

	.sh-home-hero__lead {
		max-width: 100%;
		font-size: 16px;
		overflow-wrap: break-word;
	}

	.sh-home-hero__chips {
		grid-template-columns: 1fr;
		width: 100%;
		max-width: 100%;
		justify-items: center;
		gap: 12px;
	}

	.sh-home-chip {
		width: 100%;
		max-width: 360px;
		box-sizing: border-box;
		text-align: center;
	}

	.sh-home-chip span {
		overflow-wrap: anywhere;
	}

	.sh-home-hero__visual {
		min-height: 260px;
	}

	.sh-home-product {
		width: 118%;
		background-image: url("/images/asu-tp-cabinet-cutout-transparent-hero-mobile-20260626.webp");
		transform: translateX(-24px) scale(1);
	}

	.sh-home-button {
		width: 100%;
	}

	.sh-home-hero__actions {
		justify-content: center;
	}
}

/* SMARTHOFF HOME HERO MACBOOK WIDTH FIX 2026-06-23 */
.sh-home-hero__title {
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	text-wrap: balance;
}

@media (min-width: 1181px) and (max-width: 1540px) {
	.sh-home-hero__inner {
		grid-template-columns: minmax(410px, .92fr) minmax(540px, 1.08fr);
		gap: 18px;
		min-height: 520px;
		padding: 38px 0;
	}

	.sh-home-hero__title {
		max-width: 640px;
		font-size: clamp(44px, 3.45vw, 58px);
		line-height: 1.08;
	}

	.sh-home-hero__lead {
		max-width: 640px;
		font-size: 18px;
		line-height: 1.5;
	}

	.sh-home-hero__chips {
		max-width: 560px;
		margin-bottom: 24px;
	}

	.sh-home-hero__visual {
		min-height: 430px;
	}

	.sh-home-product {
		width: min(94%, 640px);
		transform: translateX(-18px) scale(.96);
	}
}
/* END SMARTHOFF HOME HERO MACBOOK WIDTH FIX 2026-06-23 */

/* === SMARTHOFF HOME FULL-WIDTH SECTIONS 20260626 === */
.sh-page-home {
	--sh-home-content-max: 1784px;
	--sh-home-gutter: clamp(16px, 3vw, 48px);
	--sh-home-inner-width: min(calc(100% - 2 * var(--sh-home-gutter)), var(--sh-home-content-max));
	overflow-x: hidden;
}

.sh-page-home #main > .container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.sh-page-home .catalog,
.sh-page-home .stock,
.sh-page-home .new,
.sh-page-home .news,
.sh-page-home .about-index {
	width: 100%;
}

.sh-page-home .catalog__list,
.sh-page-home .stock__bottom,
.sh-page-home .new__list,
.sh-page-home .news__list,
.sh-page-home .about-index__content {
	width: var(--sh-home-inner-width);
	max-width: var(--sh-home-content-max);
	margin-left: auto;
	margin-right: auto;
}

.sh-page-home .catalog__head,
.sh-page-home .new__head,
.sh-page-home .news__head {
	box-sizing: border-box;
	width: 100%;
	padding-left: max(calc(var(--sh-home-gutter) + 79px), calc((100vw - var(--sh-home-content-max)) / 2 + 79px));
	padding-right: max(var(--sh-home-gutter), calc((100vw - var(--sh-home-content-max)) / 2));
	border-left: 0;
	border-right: 0;
}

.sh-page-home .catalog__head::before,
.sh-page-home .new__head::before,
.sh-page-home .news__head::before {
	left: max(var(--sh-home-gutter), calc((100vw - var(--sh-home-content-max)) / 2));
}

.sh-page-home .feedback--selection {
	box-sizing: border-box;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: max(calc(var(--sh-home-gutter) + 50px), calc((100vw - var(--sh-home-content-max)) / 2 + 50px));
	padding-right: max(calc(var(--sh-home-gutter) + 80px), calc((100vw - var(--sh-home-content-max)) / 2 + 80px));
}

@media (min-width: 761px) {
	.sh-page-home .main-header__nav {
		box-sizing: border-box;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		padding-left: max(var(--sh-home-gutter), calc((100vw - var(--sh-home-content-max)) / 2));
		padding-right: max(var(--sh-home-gutter), calc((100vw - var(--sh-home-content-max)) / 2));
	}
}

@media (max-width: 760px) {
	.sh-page-home .catalog__list,
	.sh-page-home .stock__bottom,
	.sh-page-home .new__list,
	.sh-page-home .news__list,
	.sh-page-home .about-index__content {
		width: min(calc(100% - 32px), var(--sh-home-content-max));
	}

	.sh-page-home .catalog__head,
	.sh-page-home .new__head,
	.sh-page-home .news__head {
		padding-left: 75px;
		padding-right: 16px;
	}

	.sh-page-home .catalog__head::before,
	.sh-page-home .new__head::before,
	.sh-page-home .news__head::before {
		left: 0;
	}

	.sh-page-home .feedback--selection {
		padding-left: 24px;
		padding-right: 24px;
	}
}
/* === END SMARTHOFF HOME FULL-WIDTH SECTIONS 20260626 === */
