:root {
	--sg-header-bg: #ffffff;
	--sg-header-bg-soft: #f8f8f8;
	--sg-header-accent: #1a2a3a;
	--sg-header-promo: #c46a53;
	--sg-header-text: #222222;
	--sg-header-muted: #555555;
	--sg-header-border: #eeeeee;
	--sg-header-font: 'Inter', Arial, sans-serif;
	--sg-header-display: 'Clash Display', 'Inter', Arial, sans-serif;
}

.site-header,
.site-header *,
.site-header *::before,
.site-header *::after,
.mobile-menu,
.mobile-menu *,
.mobile-menu *::before,
.mobile-menu *::after,
.mobile-menu-overlay {
	box-sizing: border-box;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	height: 80px;
	overflow: visible;
	border-bottom: 1px solid var(--sg-header-border);
	background: var(--sg-header-bg);
	color: var(--sg-header-text);
	font-family: var(--sg-header-font);
}

.site-header a {
	color: inherit;
	text-decoration: none;
}

.site-header button,
.mobile-menu button {
	border: 0;
	background: transparent;
	color: inherit;
	font-family: inherit;
	cursor: pointer;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.logo-new {
	display: block;
	width: 200px;
	flex-shrink: 0;
}

.logo-new img {
	display: block;
	width: 100%;
	height: auto;
}

.mobile-menu-btn {
	display: none;
	color: var(--sg-header-accent);
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav > ul > li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--sg-header-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.main-nav > ul > li > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	height: 2px;
	background: var(--sg-header-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li > a:focus {
	color: var(--sg-header-accent);
	outline: none;
}

.main-nav > ul > li:hover > a::after,
.main-nav > ul > li > a:focus::after {
	transform: scaleX(1);
}

.nav-chevron {
	transition: transform 0.25s ease;
}

.has-mega-menu,
.has-brand-menu {
	position: relative;
}

.has-mega-menu:hover .nav-chevron,
.has-brand-menu:hover .nav-chevron {
	transform: rotate(180deg);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.phones {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: var(--sg-header-muted);
	font-size: 13px;
	line-height: 1.25;
	text-align: right;
	white-space: nowrap;
}

.phones a {
	color: inherit;
	text-decoration: none;
}

.phones a:hover,
.phones a:focus {
	color: var(--sg-header-accent);
	text-decoration: none;
	outline: none;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--sg-header-accent);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.icon-wrap:hover,
.icon-wrap:focus {
	background: var(--sg-header-bg-soft);
	color: var(--sg-header-accent);
	transform: translateY(-1px);
	outline: none;
}

.icon-wrap[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 3;
	padding: 5px 8px;
	border-radius: 6px;
	background: #333333;
	color: #ffffff;
	font-size: 11px;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%);
	transition: opacity 0.2s ease;
}

.icon-wrap:hover::after {
	opacity: 1;
}

.cart-badge {
	position: absolute;
	top: -3px;
	right: -3px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--sg-header-promo);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

/* Header search and autocomplete */
.header-search-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 1002;
	padding: 24px 20px 28px;
	border-bottom: 1px solid var(--sg-header-border);
	background: var(--sg-header-bg);
	box-shadow: 0 18px 38px rgba(17, 29, 41, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-10px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.header-search-panel.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.header-search-shell {
	position: relative;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

.header-search-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
	gap: 10px;
	align-items: stretch;
}

.header-search-form {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 42px auto;
	align-items: center;
	min-width: 0;
	height: 54px;
	margin: 0;
	border: 1px solid #d7dce0;
	border-radius: 8px;
	background: #ffffff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-form:focus-within {
	border-color: var(--sg-header-accent);
	box-shadow: 0 0 0 3px rgba(26, 42, 58, 0.1);
}

.header-search-label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.header-search-icon {
	grid-column: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #68737d;
}

.header-search-input {
	grid-column: 2;
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 8px 0 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--sg-header-text);
	font: 500 16px/1.4 var(--sg-header-font);
	-webkit-appearance: none;
	appearance: none;
}

.header-search-input::-webkit-search-cancel-button {
	display: none;
}

.header-search-input::placeholder {
	color: #8a939b;
	font-weight: 400;
	opacity: 1;
}

.header-search-clear,
.header-search-close {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #68737d;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.header-search-clear {
	grid-column: 3;
	width: 34px;
	height: 34px;
	border-radius: 50%;
}

.header-search-clear[hidden] {
	display: none;
}

.header-search-close {
	width: 48px;
	height: 54px;
	border-radius: 8px;
	background: var(--sg-header-bg-soft) !important;
}

.header-search-clear:hover,
.header-search-clear:focus,
.header-search-close:hover,
.header-search-close:focus {
	background: #eef0f2 !important;
	color: var(--sg-header-accent);
	outline: none;
}

.header-search-submit {
	grid-column: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	gap: 8px;
	min-width: 104px;
	margin: -1px -1px -1px 0;
	padding: 0 22px;
	border-radius: 0 8px 8px 0;
	background: var(--sg-header-accent) !important;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.header-search-submit:hover,
.header-search-submit:focus {
	background: #101c29 !important;
	outline: none;
}

.header-search-submit svg {
	display: none;
}

.header-search-hint {
	margin: 8px 58px 0 14px;
	color: #7d8790;
	font-size: 12px;
	line-height: 1.4;
}

.header-search-backdrop {
	position: fixed;
	top: 80px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1001;
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	background: rgba(13, 25, 37, 0.28) !important;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header-search-backdrop.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header-search-panel .search-results {
	position: relative;
	z-index: 1;
	width: calc(100% - 58px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.header-search-panel .search-results.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-search-panel .search-results::before,
.header-search-panel .search-results::after {
	display: none;
}

.header-search-panel .autocomplete-suggestions {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	width: 100% !important;
	max-height: min(440px, calc(100vh - 235px));
	margin-top: 12px;
	padding: 6px;
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px solid #e2e5e8;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(17, 29, 41, 0.13);
	scrollbar-color: #bcc2c8 transparent;
	scrollbar-width: thin;
}

.header-search-panel .autocomplete-suggestion {
	border-bottom: 1px solid #edf0f2;
}

.header-search-panel .autocomplete-suggestion:last-child {
	border-bottom: 0;
}

.header-search-panel .autocomplete-suggestion-link {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 14px;
	align-items: center;
	min-height: 76px;
	padding: 7px 12px;
	border-radius: 6px;
	color: var(--sg-header-text);
	transition: background-color 0.16s ease, color 0.16s ease;
}

.header-search-panel .autocomplete-suggestion-link:hover,
.header-search-panel .autocomplete-suggestion-link:focus,
.header-search-panel .autocomplete-selected .autocomplete-suggestion-link {
	background: var(--sg-header-bg-soft);
	color: var(--sg-header-accent);
	outline: none;
}

.header-search-panel .autocomplete-suggestion-thumb {
	position: static;
	grid-row: 1 / 3;
	width: 60px;
	height: 60px;
	border: 1px solid #edf0f2;
	border-radius: 5px;
	background-color: #ffffff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.header-search-panel .autocomplete-suggestion-title {
	display: -webkit-box;
	align-self: end;
	overflow: hidden;
	color: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.header-search-panel .autocomplete-suggestion-title strong {
	font-weight: 700;
}

.header-search-panel .autocomplete-suggestion-price {
	align-self: start;
	margin-top: 3px;
	color: var(--sg-header-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.header-search-panel .autocomplete-no-suggestion {
	padding: 18px 16px;
	color: #68737d;
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
}

.mega-menu-catalog,
.mega-menu-brand {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	display: none;
	border-top: 2px solid var(--sg-header-border);
	background: var(--sg-header-bg);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

.mmc-inner {
	display: flex;
	height: 540px;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}

.mmb-inner {
	display: flex;
	height: 400px;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}

.mmc-nav {
	width: 218px;
	flex-shrink: 0;
	overflow-y: auto;
	border-right: 1px solid var(--sg-header-border);
	padding: 10px 0;
}

.mmb-nav {
	width: 200px;
	flex-shrink: 0;
	overflow-y: auto;
	border-right: 1px solid var(--sg-header-border);
	padding: 14px 0;
}

.mmc-nav-item,
.mmb-nav-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px 9px 14px;
	border-left: 3px solid transparent;
	color: var(--sg-header-text);
	cursor: pointer;
	font-size: 13.5px;
	line-height: 1.25;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	user-select: none;
}

.mmc-nav-item:hover,
.mmc-nav-item.active,
.mmb-nav-item:hover,
.mmb-nav-item.active {
	border-left-color: var(--sg-header-accent);
	background: var(--sg-header-bg-soft);
	color: var(--sg-header-accent);
	font-weight: 500;
}

.mmc-nav-item.mmc-nav-new {
	color: var(--sg-header-promo);
	font-weight: 500;
}

.mmc-nav-item.mmc-nav-new .mmc-nav-icon {
	color: var(--sg-header-promo);
}

.mmc-nav-icon,
.mmb-nav-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--sg-header-accent);
}

.mmc-content,
.mmb-content {
	flex: 1;
	min-width: 0;
	overflow-y: auto;
	padding: 28px 32px;
}

.mmc-section,
.mmb-section {
	display: none;
}

.mmc-section.active,
.mmb-section.active {
	display: block;
}

.mmc-sub-grid {
	display: grid;
	gap: 18px;
}

.mmc-sub-grid--1 {
	grid-template-columns: 1fr;
}

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

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

.mmc-sub-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mmc-sub-card,
.mmc-sub-item {
	min-width: 0;
}

.mmc-sub-item {
	display: block;
	color: var(--sg-header-text);
	text-decoration: none;
}

.mmc-sub-img {
	overflow: hidden;
	margin-bottom: 8px;
	border-radius: 10px;
	background: var(--sg-header-bg-soft);
	aspect-ratio: 4 / 3;
}

.mmc-sub-img img,
.mmc-sub-img-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mmc-sub-img-fallback {
	background: linear-gradient(135deg, #eeeeee, #f7f7f7);
}

.mmc-sub-item:hover .mmc-sub-img img {
	transform: scale(1.04);
}

.mmc-sub-label {
	display: block;
	color: var(--sg-header-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
}

.mmc-sub-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
}

.mmc-sub-links a {
	color: var(--sg-header-muted);
	font-size: 12.5px;
}

.mmc-product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px 14px;
	padding-right: 4px;
}

.mmc-product-card {
	display: block;
	min-width: 0;
	color: var(--sg-header-text);
	text-decoration: none;
}

.mmc-product-img {
	display: block;
	overflow: hidden;
	margin-bottom: 8px;
	border-radius: 10px;
	background: var(--sg-header-bg-soft);
	aspect-ratio: 1;
}

.mmc-product-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mmc-product-card:hover .mmc-product-img img {
	transform: scale(1.04);
}

.mmc-product-title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--sg-header-text);
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.mmc-product-price {
	display: block;
	margin-top: 4px;
	color: var(--sg-header-accent);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

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

.mmc-promo-card {
	display: grid;
	grid-template-columns: 148px minmax(0, 1fr);
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--sg-header-border);
	border-radius: 10px;
	background: #ffffff;
	color: var(--sg-header-text);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mmc-promo-card:hover {
	border-color: rgba(26, 42, 58, 0.22);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.mmc-promo-img {
	display: block;
	overflow: hidden;
	background: var(--sg-header-bg-soft);
	aspect-ratio: 4 / 3;
}

.mmc-promo-img img,
.mmc-promo-img-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.mmc-promo-img-fallback {
	background: linear-gradient(135deg, #eeeeee, #f7f7f7);
}

.mmc-promo-card:hover .mmc-promo-img img {
	transform: scale(1.04);
}

.mmc-promo-content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 14px 16px;
}

.mmc-promo-label {
	align-self: flex-start;
	margin-bottom: 8px;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--sg-header-promo);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.mmc-promo-title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--sg-header-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.mmc-promo-text {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 7px;
	color: var(--sg-header-muted);
	font-size: 12.5px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.mmc-see-all,
.mmb-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	color: var(--sg-header-accent);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.mmc-empty {
	color: var(--sg-header-muted);
	font-size: 14px;
}

.mmc-banner {
	position: relative;
	width: 250px;
	flex-shrink: 0;
	margin: 24px 0 24px 24px;
	overflow: hidden;
	border-radius: 14px;
	background: var(--sg-header-bg-soft);
}

.mmb-right {
	position: relative;
	width: 220px;
	flex-shrink: 0;
	overflow: hidden;
	border-left: 1px solid var(--sg-header-border);
	background: var(--sg-header-bg-soft);
	cursor: pointer;
}

.mmc-banner img,
.mmb-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.mmc-banner:hover img,
.mmb-right:hover img {
	transform: scale(1.04);
}

.mmc-banner-overlay,
.mmb-right-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.1) 80%);
}

.mmc-banner-content,
.mmb-right-content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 22px 18px;
	color: #ffffff;
}

.mmc-banner-tag,
.mmb-right-tag {
	display: inline-block;
	margin-bottom: 9px;
	padding: 3px 10px;
	border-radius: 30px;
	background: var(--sg-header-promo);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.mmb-right-tag {
	background: var(--sg-header-accent);
}

.mmc-banner-content h4,
.mmb-right-content h4 {
	margin: 0 0 6px;
	color: #ffffff;
	font-family: var(--sg-header-display);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.mmc-banner-content p,
.mmb-right-content p {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	line-height: 1.45;
}

.site-header .btn-primary,
.mega-menu-catalog .btn-primary,
.mega-menu-brand .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	background: var(--sg-header-accent);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-header .btn-primary:hover,
.mega-menu-catalog .btn-primary:hover,
.mega-menu-brand .btn-primary:hover {
	background: #101c29;
	color: #ffffff;
	transform: translateY(-1px);
}

.site-header .btn-sm,
.mega-menu-catalog .btn-sm,
.mega-menu-brand .btn-sm {
	min-height: 34px;
	padding: 8px 18px;
	font-size: 13px;
}

.mmb-section-title {
	margin-bottom: 12px;
	color: var(--sg-header-text);
	font-family: var(--sg-header-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
}

.mmb-section-desc {
	max-width: 440px;
	margin-bottom: 20px;
	color: var(--sg-header-muted);
	font-size: 14px;
	line-height: 1.65;
}

.mmb-stats {
	display: flex;
	gap: 28px;
	margin-bottom: 20px;
}

.mmb-stat {
	text-align: left;
}

.mmb-stat-val {
	margin-bottom: 4px;
	color: var(--sg-header-accent);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.mmb-stat-label {
	color: var(--sg-header-muted);
	font-size: 12px;
}

.mmb-delivery-cards,
.mmb-points,
.mmb-contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mmb-contacts {
	gap: 16px;
}

.mmb-delivery-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--sg-header-bg-soft);
}

.mmb-delivery-icon,
.mmb-contact-icon {
	width: 24px;
	flex-shrink: 0;
	color: var(--sg-header-accent);
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
}

.mmb-delivery-icon {
	margin-top: 1px;
	font-size: 20px;
}

.mmb-contact-icon {
	margin-top: 2px;
	font-size: 16px;
}

.mmb-delivery-name {
	margin-bottom: 2px;
	color: var(--sg-header-text);
	font-size: 14px;
	font-weight: 600;
}

.mmb-delivery-desc,
.mmb-payment-note {
	color: var(--sg-header-muted);
	font-size: 13px;
	line-height: 1.45;
}

.mmb-payment-note {
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--sg-header-bg-soft);
}

.mmb-point {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--sg-header-text);
	font-size: 14px;
}

.mmb-point::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sg-header-accent);
	flex-shrink: 0;
}

.mmb-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.mmb-contact-label {
	margin-bottom: 2px;
	color: var(--sg-header-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.mmb-contact-val {
	color: var(--sg-header-text);
	font-size: 14px;
	line-height: 1.45;
}

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 1001;
	display: none;
	background: rgba(0, 0, 0, 0.5);
}

.mobile-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -100%;
	z-index: 1002;
	display: flex;
	width: 320px;
	max-width: calc(100vw - 44px);
	flex-direction: column;
	overflow-y: auto;
	background: #ffffff;
	color: var(--sg-header-text);
	font-family: var(--sg-header-font);
	transition: left 0.28s ease;
}

.mobile-menu.open {
	left: 0;
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid var(--sg-header-border);
}

.mobile-menu .logo {
	color: var(--sg-header-accent);
	font-family: var(--sg-header-display);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
}

.mobile-menu-logo {
	display: block;
	width: 164px;
	max-width: calc(100% - 48px);
	flex-shrink: 1;
}

.mobile-menu-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.close-menu-btn {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	font-size: 26px;
	line-height: 1;
}

.mobile-nav {
	margin: 0;
	padding: 20px;
	list-style: none;
}

.mobile-nav > li {
	border-bottom: 1px solid var(--sg-header-border);
}

.mobile-nav a,
.mob-acc-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 0;
	color: var(--sg-header-text);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
}

.mob-acc-chevron {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.mob-has-acc.open > .mob-acc-hd .mob-acc-chevron,
.mob-brand-acc.open > .mob-brand-hd .mob-acc-chevron {
	transform: rotate(180deg);
}

.mob-acc-body {
	display: none;
	padding: 0 0 12px;
}

.mob-cat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}

.mob-cat-item {
	justify-content: flex-start !important;
	gap: 7px !important;
	padding: 9px 8px !important;
	border-radius: 8px;
	color: var(--sg-header-text);
	font-size: 13.5px !important;
	font-weight: 400 !important;
	line-height: 1.3;
}

.mob-cat-icon,
.mob-brand-icon {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	color: var(--sg-header-accent);
}

.mob-cat-item.mob-cat-new,
.mob-cat-item.mob-cat-new .mob-cat-icon {
	color: var(--sg-header-promo);
}

.mob-brand-acc {
	border-bottom: 1px solid var(--sg-header-border);
}

.mob-brand-acc:last-child {
	border-bottom: 0;
}

.mob-brand-hd {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 0;
	color: var(--sg-header-text);
	font-size: 14.5px;
	font-weight: 500;
	cursor: pointer;
	user-select: none;
}

.mob-brand-hd .mob-acc-chevron {
	margin-left: auto;
	width: 13px;
	height: 13px;
}

.mob-brand-body {
	display: none;
	padding: 4px 0 14px 24px;
}

.mob-brand-acc.open > .mob-brand-body {
	display: block;
}

.mob-brand-desc,
.mob-delivery-card-desc,
.mob-payment-note,
.mob-contact-val {
	color: var(--sg-header-muted);
	font-size: 13px;
	line-height: 1.55;
}

.mob-stats-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 4px;
}

.mob-stat {
	min-width: 58px;
}

.mob-stat-val {
	color: var(--sg-header-accent);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 2px;
}

.mob-stat-label,
.mob-contact-label {
	color: var(--sg-header-muted);
	font-size: 11px;
	line-height: 1.3;
}

.mob-delivery-card,
.mob-payment-note {
	margin-bottom: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	background: var(--sg-header-bg-soft);
}

.mob-delivery-card-name {
	margin-bottom: 2px;
	color: var(--sg-header-text);
	font-size: 13.5px;
	font-weight: 600;
}

.mob-points-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mob-point {
	position: relative;
	padding-left: 14px;
	color: var(--sg-header-text);
	font-size: 13px;
	line-height: 1.45;
}

.mob-point::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sg-header-accent);
}

.mob-contact-row {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
}

.mob-contact-icon {
	display: flex;
	width: 18px;
	flex-shrink: 0;
	color: var(--sg-header-accent);
}

.mob-contact-icon svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.mobile-phones {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: auto;
	padding: 20px;
	border-top: 1px solid var(--sg-header-border);
}

.mobile-phones a {
	color: var(--sg-header-accent);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.sticky-cart {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	padding: 15px 20px;
	border-radius: 50px;
}

@media (max-width: 1199px) {
	.header-inner {
		padding: 0 24px;
	}

	.main-nav ul {
		gap: 18px;
	}

	.phones {
		display: none;
	}
}

@media (max-width: 991px) {
	.site-header {
		height: 64px;
	}

	.header-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		padding: 0 14px;
	}

	.header-left,
	.header-right {
		min-width: 0;
	}

	.header-left {
		gap: 10px;
	}

	.mobile-menu-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		flex: 0 0 34px;
	}

	.main-nav,
	.header-right .phones {
		display: none;
	}

	.header-icons {
		gap: 8px;
	}

	.icon-wrap {
		width: 32px;
		height: 32px;
	}

	.logo-new {
		width: clamp(118px, 24vw, 150px);
		min-width: 0;
	}

	.header-search-backdrop {
		top: 64px;
	}
}

@media (max-width: 575px) {
	body.sg-search-open {
		overflow: hidden;
	}

	.header-inner {
		gap: 6px;
		padding: 0 12px;
	}

	.header-left {
		gap: 6px;
	}

	.mobile-menu-btn {
		width: 30px;
		height: 30px;
		flex-basis: 30px;
	}

	.mobile-menu-btn svg {
		width: 22px;
		height: 22px;
	}

	.header-icons .icon-wrap::after {
		display: none;
	}

	.header-icons {
		gap: 2px;
	}

	.icon-wrap {
		width: 28px;
		height: 28px;
	}

	.icon-wrap svg {
		width: 18px;
		height: 18px;
	}

	.logo-new {
		width: 112px;
	}

	.header-search-panel {
		position: fixed;
		top: 64px;
		bottom: 0;
		padding: 14px 12px 18px;
		overflow-y: auto;
		border-bottom: 0;
		box-shadow: none;
	}

	.header-search-row {
		grid-template-columns: minmax(0, 1fr) 42px;
		gap: 0;
	}

	.header-search-form {
		grid-template-columns: 40px minmax(0, 1fr) 34px 44px;
		height: 48px;
		border-radius: 8px 0 0 8px;
	}

	.header-search-icon svg {
		width: 19px;
		height: 19px;
	}

	.header-search-input {
		font-size: 16px;
	}

	.header-search-input::placeholder {
		font-size: 14px;
	}

	.header-search-close {
		width: 42px;
		height: 48px;
		border-radius: 0 8px 8px 0;
	}

	.header-search-submit {
		min-width: 44px;
		padding: 0;
		border-radius: 0;
	}

	.header-search-submit span {
		display: none;
	}

	.header-search-submit svg {
		display: block;
	}

	.header-search-hint {
		margin: 8px 50px 0 6px;
		font-size: 11px;
	}

	.header-search-panel .search-results {
		width: 100%;
	}

	.header-search-panel .autocomplete-suggestions {
		max-height: calc(100dvh - 190px);
		margin-top: 10px;
		padding: 4px;
		box-shadow: none;
	}

	.header-search-panel .autocomplete-suggestion-link {
		grid-template-columns: 56px minmax(0, 1fr);
		column-gap: 11px;
		min-height: 70px;
		padding: 7px 8px;
	}

	.header-search-panel .autocomplete-suggestion-thumb {
		width: 54px;
		height: 54px;
	}

	.header-search-panel .autocomplete-suggestion-title,
	.header-search-panel .autocomplete-suggestion-price {
		font-size: 13px;
	}
}

@media (max-width: 360px) {
	.logo-new {
		width: 98px;
	}
}
