.home .site-main {
	width: 100%;
	padding: 0;
}

.home .entry {
	margin: 0;
}

.home .entry-content {
	margin: 0;
}

.ahan-home-v2,
.ahan-desktop-header,
.ahan-desktop-footer {
	font-family: var(--ahan-font-family);
	color: var(--ahan-color-text);
}

.ahan-home-v2 {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	background: #fff;
}

.ahan-home-mobile {
	display: none;
}

.ahan-desktop-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--ahan-color-border);
	box-shadow: var(--ahan-shadow-sm);
}

.ahan-desktop-header__inner {
	display: grid;
	grid-template-columns: 270px minmax(320px, 1fr) auto auto auto;
	gap: 22px;
	align-items: center;
	width: min(100%, 1402px);
	min-height: 86px;
	margin: 0 auto;
	padding: 0 28px;
	box-sizing: border-box;
}

.ahan-desktop-header__logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	width: 236px;
	max-width: 100%;
	color: var(--ahan-color-text);
	text-decoration: none;
}

.ahan-desktop-header__logo .ahan-brand-logo {
	display: block;
	width: auto;
	height: 68px;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
}

.ahan-brand-mark {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border: 8px solid #4b5563;
	border-radius: 50%;
	box-sizing: border-box;
}

.ahan-brand-mark::before {
	position: absolute;
	inset: 7px;
	border: 4px solid #4b5563;
	border-radius: 50%;
	content: "";
}

.ahan-brand-text {
	display: grid;
	gap: 0;
	min-width: 0;
}

.ahan-brand-text strong {
	color: #071122;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.ahan-brand-text small {
	color: #374151;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
}

.ahan-desktop-header__pro,
.ahan-desktop-header__actions a {
	color: var(--ahan-color-text);
	text-decoration: none;
	font-weight: 800;
}

.ahan-desktop-header__pro {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	box-sizing: border-box;
	width: 216px;
	height: 52px;
	padding: 7px 14px;
	border: 1px solid var(--ahan-color-brand-blue);
	border-radius: 6px;
	background: var(--ahan-color-brand-blue);
	color: #fff;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.ahan-desktop-header__pro:hover,
.ahan-desktop-header__pro:focus-visible {
	border-color: #074f99;
	background: #074f99;
	color: #fff;
	outline: none;
}

.ahan-desktop-header__pro:focus-visible {
	box-shadow: 0 0 0 3px rgba(11, 92, 173, 0.22);
}

.ahan-desktop-header__pro-icon {
	position: relative;
	display: block;
	width: 28px;
	height: 28px;
	color: currentColor;
}

.ahan-desktop-header__pro-icon::before,
.ahan-desktop-header__pro-icon::after {
	position: absolute;
	box-sizing: border-box;
	content: "";
}

.ahan-desktop-header__pro-icon::before {
	inset: 2px;
	border: 2px solid currentColor;
	border-radius: 4px;
}

.ahan-desktop-header__pro-icon::after {
	top: 8px;
	bottom: 8px;
	left: 2px;
	width: 20px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	background: linear-gradient(
		to right,
		transparent 0,
		transparent 6px,
		currentColor 6px,
		currentColor 8px,
		transparent 8px,
		transparent 13px,
		currentColor 13px,
		currentColor 15px,
		transparent 15px
	);
}

.ahan-desktop-header__pro-label {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.ahan-desktop-header__pro-line {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ahan-desktop-header__pro-line--primary {
	color: #fff;
	font-size: 0.92rem;
	font-weight: 850;
}

.ahan-desktop-header__pro-line--secondary {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.69rem;
	font-weight: 600;
}

.ahan-desktop-header__search {
	display: grid;
	grid-template-columns: 1fr 50px;
	align-items: center;
	max-width: 452px;
	margin-block: 0;
	margin-inline: auto 0;
	border: 1px solid var(--ahan-color-border);
	border-radius: 6px;
	overflow: hidden;
	background: var(--ahan-color-surface);
}

.ahan-desktop-header__search input {
	min-width: 0;
	height: 42px;
	padding: 0 18px;
	border: 0;
	color: var(--ahan-color-text);
	font: inherit;
}

.ahan-desktop-header__search button,
.ahan-home-mobile-search__form button {
	position: relative;
	min-height: 42px;
	border: 0;
	background: var(--ahan-color-brand-blue);
	color: #fff;
	cursor: pointer;
}

.ahan-desktop-header__search button::before,
.ahan-home-mobile-search__form button::before {
	position: absolute;
	top: 11px;
	left: 13px;
	width: 14px;
	height: 14px;
	border: 3px solid currentColor;
	border-radius: 50%;
	content: "";
}

.ahan-desktop-header__search button::after,
.ahan-home-mobile-search__form button::after {
	position: absolute;
	right: 13px;
	bottom: 11px;
	width: 10px;
	height: 3px;
	background: currentColor;
	content: "";
	transform: rotate(45deg);
}

.ahan-desktop-header__contact {
	display: grid;
	gap: 2px;
	font-size: 0.84rem;
	white-space: nowrap;
}

.ahan-desktop-header__contact a {
	color: var(--ahan-color-text);
	font-weight: 900;
	text-decoration: none;
}

.ahan-desktop-header__contact span {
	color: var(--ahan-color-text-muted);
}

.ahan-desktop-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.ahan-desktop-header__cart {
	position: relative;
	display: grid;
	gap: 0;
	min-width: 58px;
	color: var(--ahan-color-text);
	text-align: center;
}

.ahan-desktop-header__cart strong {
	position: absolute;
	top: -12px;
	right: 8px;
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--ahan-color-brand-blue);
	color: #fff;
	font-size: 0.76rem;
}

.ahan-desktop-header__cart small {
	color: var(--ahan-color-text);
	font-weight: 700;
}

.ahan-home-section {
	padding: 16px 0 24px;
}

.ahan-home-hero {
	position: relative;
	min-height: 315px;
	overflow: hidden;
	background: #eef2f6;
}

.ahan-home-hero__media {
	position: absolute;
	inset: 0;
	margin: 0;
}

.ahan-home-hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 28%, rgba(255, 255, 255, 0.25) 52%, rgba(255, 255, 255, 0) 72%);
	content: "";
}

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

.ahan-home-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	min-height: 315px;
}

.ahan-home-hero h1 {
	max-width: 420px;
	margin: 0 0 18px;
	color: #071122;
	font-size: 2.75rem;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.ahan-home-hero h1 span {
	color: var(--ahan-color-brand-blue);
}

.ahan-home-hero p {
	max-width: 510px;
	margin: 0;
	color: #101828;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.55;
}

.ahan-home-categories h2 {
	position: relative;
	margin: 0 0 18px;
	color: #071122;
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
}

.ahan-home-categories h2::after {
	display: block;
	width: 64px;
	height: 3px;
	margin: 8px auto 0;
	border-radius: 999px;
	background: var(--ahan-color-brand-blue);
	content: "";
}

.ahan-home-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px 14px;
}

.ahan-category-card {
	display: grid;
	grid-template-rows: 110px 38px;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--ahan-color-border);
	border-radius: 6px;
	background: var(--ahan-color-surface);
	color: var(--ahan-color-text);
	text-align: center;
	text-decoration: none;
	box-shadow: var(--ahan-shadow-sm);
}

.ahan-category-card__image {
	display: block;
	min-width: 0;
	padding: 8px 12px 0;
	background: var(--ahan-color-surface);
}

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

.ahan-category-card__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 0 10px 10px;
	font-weight: 900;
	line-height: 1.15;
}

.ahan-home-advantages {
	padding-bottom: 22px;
}

.ahan-home-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--ahan-color-border);
	border-radius: 6px;
	background: var(--ahan-color-surface);
	box-shadow: var(--ahan-shadow-sm);
}

.ahan-advantage {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 90px;
	padding: 18px 22px;
	border-right: 1px solid var(--ahan-color-border);
	box-sizing: border-box;
}

.ahan-advantage:last-child {
	border-right: 0;
}

.ahan-advantage h2 {
	margin: 0 0 5px;
	color: #071122;
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1.15;
}

.ahan-advantage p {
	margin: 0;
	color: var(--ahan-color-text);
	font-size: 0.86rem;
	line-height: 1.35;
}

.ahan-advantage__icon {
	position: relative;
	display: block;
	width: 46px;
	height: 46px;
	color: var(--ahan-color-brand-blue);
}

.ahan-advantage__icon::before,
.ahan-advantage__icon::after {
	position: absolute;
	box-sizing: border-box;
	content: "";
}

.ahan-advantage__icon--factory::before {
	right: 3px;
	bottom: 4px;
	left: 3px;
	height: 26px;
	border: 3px solid currentColor;
}

.ahan-advantage__icon--factory::after {
	top: 5px;
	left: 8px;
	width: 7px;
	height: 22px;
	background: currentColor;
	box-shadow: 12px 7px 0 currentColor, 24px 12px 0 currentColor;
}

.ahan-advantage__icon--oem::before {
	inset: 4px;
	border: 4px solid currentColor;
	border-radius: 50%;
}

.ahan-advantage__icon--oem::after {
	top: 15px;
	left: 10px;
	color: currentColor;
	font-size: 0.78rem;
	font-weight: 900;
	content: "OEM";
}

.ahan-advantage__icon--shield::before {
	top: 3px;
	left: 8px;
	width: 30px;
	height: 38px;
	border: 3px solid currentColor;
	border-radius: 16px 16px 20px 20px;
}

.ahan-advantage__icon--shield::after {
	top: 17px;
	left: 17px;
	width: 16px;
	height: 9px;
	border-bottom: 4px solid currentColor;
	border-left: 4px solid currentColor;
	transform: rotate(-45deg);
}

.ahan-advantage__icon--support::before {
	top: 5px;
	left: 7px;
	width: 32px;
	height: 28px;
	border: 4px solid currentColor;
	border-bottom: 0;
	border-radius: 22px 22px 0 0;
}

.ahan-advantage__icon--support::after {
	right: 7px;
	bottom: 4px;
	width: 15px;
	height: 12px;
	border-right: 4px solid currentColor;
	border-bottom: 4px solid currentColor;
	border-radius: 0 0 10px 0;
}

.ahan-desktop-footer {
	padding: 24px 0 22px;
	background: #142334;
	color: #fff;
}

.ahan-desktop-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr repeat(3, 1fr);
	gap: 38px;
}

.ahan-desktop-footer h2 {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 900;
}

.ahan-desktop-footer p,
.ahan-desktop-footer a {
	color: rgba(255, 255, 255, 0.82);
}

.ahan-desktop-footer a {
	display: block;
	margin: 7px 0;
	text-decoration: none;
}

.ahan-desktop-footer__brand {
	display: inline-flex;
	align-items: center;
	margin: 0 0 10px;
	color: #fff;
	font-size: 1.55rem;
	font-weight: 900;
}

.ahan-desktop-footer__brand::before {
	content: none;
}

.ahan-desktop-footer__logo-img {
	display: block;
	width: 156px;
	height: auto;
	max-width: 100%;
}

.ahan-desktop-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.ahan-desktop-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #fff;
}

.ahan-desktop-footer__social .ahan-contacts-messenger-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}

.ahan-desktop-footer__social .ahan-contacts-messenger-icon--viber {
	color: #7360f2;
}

.ahan-desktop-footer__social .ahan-contacts-messenger-icon--telegram {
	color: #229ed9;
}

.ahan-desktop-footer__social .ahan-contacts-messenger-icon--whatsapp {
	color: #25d366;
}

.ahan-desktop-footer__copy {
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.86rem;
	text-align: center;
}

@media (max-width: 1180px) {
	.ahan-desktop-header__inner {
		grid-template-columns: 218px minmax(220px, 1fr) 188px 112px 126px;
		gap: 12px;
	}

	.ahan-desktop-header__pro {
		grid-template-columns: 26px minmax(0, 1fr);
		width: 188px;
		height: 48px;
		padding-inline: 10px;
		gap: 10px;
	}

	.ahan-desktop-header__pro-icon {
		width: 26px;
		height: 26px;
	}

	.ahan-desktop-header__pro-line--primary {
		font-size: 0.9rem;
	}

	.ahan-desktop-header__pro-line--secondary {
		font-size: 0.66rem;
	}

	.ahan-desktop-header__contact {
		font-size: 0.78rem;
	}

	.ahan-desktop-header__actions {
		gap: 12px;
	}

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

	.ahan-advantage:nth-child(2) {
		border-right: 0;
	}

	.ahan-advantage:nth-child(-n + 2) {
		border-bottom: 1px solid var(--ahan-color-border);
	}
}

@media (max-width: 900px) {
	.ahan-desktop-header__inner {
		grid-template-columns: 190px minmax(220px, 1fr) auto;
	}

	.ahan-desktop-header__pro {
		display: none;
	}

	.ahan-desktop-header__contact {
		display: none;
	}

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

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

@media (max-width: 767px) {
	.home .site-header,
	.home .site-footer,
	.home .ahan-desktop-header,
	.home .ahan-desktop-footer,
	.ahan-home-desktop {
		display: none;
	}

	.home .site-main {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
		padding-bottom: 74px;
		background: #f6f8fb;
	}

	.ahan-home-mobile {
		display: block;
		width: 100%;
		max-width: 100%;
		min-height: 100vh;
		overflow-x: hidden;
		padding: 12px 0 18px;
		background: #f6f8fb;
	}

	.ahan-home-mobile-header {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		gap: 10px;
		width: calc(100% - 28px);
		margin: 0 auto 14px;
		min-height: 58px;
		padding: 9px 10px;
		border: 1px solid var(--ahan-color-border);
		border-radius: 8px;
		background: #fff;
		box-shadow: var(--ahan-shadow-sm);
		box-sizing: border-box;
	}

	.ahan-home-mobile-header__logo {
		display: inline-flex;
		align-items: center;
		flex: 0 0 126px;
		width: 126px;
		min-width: 0;
		overflow: hidden;
		color: var(--ahan-color-text);
		text-decoration: none;
		font-weight: 900;
	}

	.ahan-home-mobile-header__logo .ahan-brand-logo {
		display: block;
		width: auto;
		height: 38px;
		max-width: 126px;
		object-fit: contain;
		object-position: left center;
	}

	.ahan-home-mobile-header .ahan-brand-mark {
		width: 32px;
		height: 32px;
		border-width: 6px;
	}

	.ahan-home-mobile-header .ahan-brand-mark::before {
		inset: 5px;
		border-width: 3px;
	}

	.ahan-home-mobile-header .ahan-brand-text strong {
		font-size: 1.32rem;
		line-height: 1;
	}

	.ahan-home-mobile-header .ahan-brand-text small {
		display: none;
	}

	.ahan-home-mobile-search {
		display: none;
	}

	.ahan-home-mobile-search__form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		min-width: 0;
		overflow: hidden;
		border: 1px solid var(--ahan-color-border);
		border-radius: 7px;
		background: #fff;
		box-sizing: border-box;
	}

	.ahan-home-mobile-search__form input {
		min-width: 0;
		height: 42px;
		padding: 0 10px;
		border: 0;
		color: var(--ahan-color-text);
		font-family: inherit;
		font-size: 0.86rem;
	}

	.ahan-home-mobile-search__form button {
		min-height: 42px;
		background: #fff;
		color: var(--ahan-color-text-muted);
	}

	.ahan-home-section {
		padding: 0;
	}

	.ahan-home-categories .ahan-page-container {
		width: calc(100% - 28px);
	}

	.ahan-home-categories h2 {
		margin-bottom: 10px;
		font-size: 1.18rem;
		text-align: left;
	}

	.ahan-home-categories h2::after {
		margin-left: 0;
	}

	.ahan-home-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
		width: 100%;
	}

	.ahan-category-card {
		grid-template-rows: 104px 40px;
		width: 100%;
		max-width: 100%;
		border-radius: 6px;
		box-sizing: border-box;
	}

	.ahan-category-card__title {
		padding-inline: 8px;
		font-size: 0.82rem;
	}
}

@media (max-width: 380px) {
	.ahan-home-mobile-header,
	.ahan-home-categories .ahan-page-container {
		width: calc(100% - 20px);
	}

	.ahan-home-mobile-header {
		gap: 8px;
		padding-inline: 8px;
	}

	.ahan-home-mobile-header__logo {
		flex-basis: 116px;
		width: 116px;
	}

	.ahan-home-mobile-header__logo .ahan-brand-logo {
		height: 35px;
		max-width: 116px;
	}

	.ahan-home-mobile-header .ahan-brand-mark {
		width: 28px;
		height: 28px;
		border-width: 5px;
	}

	.ahan-home-mobile-header .ahan-brand-mark::before {
		inset: 4px;
		border-width: 3px;
	}

	.ahan-home-mobile-header .ahan-brand-text strong {
		font-size: 1.18rem;
	}

	.ahan-home-mobile-search__form {
		grid-template-columns: minmax(0, 1fr) 38px;
	}

	.ahan-home-mobile-search__form input {
		height: 40px;
		padding-inline: 8px;
		font-size: 0.72rem;
	}

	.ahan-category-card {
		grid-template-rows: 96px 40px;
	}
}

@media (min-width: 480px) and (max-width: 520px) {
	.ahan-home-mobile-header,
	.ahan-home-categories .ahan-page-container {
		width: 332px;
		margin-left: 14px;
		margin-right: 0;
	}
}
