@media (max-width: 991.98px) {
	.mobile-header {
		position: relative;
		z-index: 120;
		background: #fff;
	}

	.mobile-header > header {
		min-height: 72px;
		gap: 12px;
	}

	.mobile-header .logo {
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mobile-header .logo a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		color: #111;
		max-width: 100%;
	}

	.mobile-header .logo img {
		display: block;
		max-height: 34px;
		width: auto;
	}

	.mobile-header .site-title {
		font-size: 22px;
		line-height: 1.1;
		font-weight: 700;
		letter-spacing: -0.02em;
		color: #111;
	}

	.mobile-menu-toggle {
		position: relative;
		z-index: 131;
		width: 42px;
		height: 42px;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		background: transparent;
		border: 0;
		border-radius: 999px;
		padding: 0;
		transition: background 0.2s ease;
	}

	.mobile-menu-toggle:hover {
		background: #f7f7f7;
	}

	.mobile-menu-toggle span {
		width: 20px;
		height: 2px;
		background: #111;
		display: block;
		border-radius: 999px;
		transition: transform 0.25s ease, opacity 0.2s ease;
	}

	.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.mobile-header .icons {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex: 0 0 auto;
	}

	.mobile-header .icons a,
	.mobile-header .header-icon {
		position: relative;
		width: 40px;
		height: 40px;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		color: #111;
		background: #fff;
		border: 1px solid transparent;
		transition: background 0.2s ease, border-color 0.2s ease;
	}

	.mobile-header .icons a:hover,
	.mobile-header .header-icon:hover {
		background: #f7f7f7;
		border-color: #ececec;
	}

	.mobile-header .icons a svg,
	.mobile-header .header-icon svg {
		width: 21px;
		height: 21px;
		display: block;
	}

	.mobile-header .header-cart-count {
		position: absolute;
		top: -4px;
		right: -4px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		border-radius: 999px;
		background: #111;
		color: #fff;
		font-size: 10px;
		line-height: 18px;
		font-weight: 700;
		text-align: center;
		box-shadow: 0 6px 18px rgba(17, 17, 17, 0.18);
	}

	.mobile-header.border-bottom,
	.mobile-header header.border-bottom {
		border-color: #efefef !important;
	}

	.mobile-menu-panel {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 130;
		overflow-y: auto;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		padding: 14px 16px 28px;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
		box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
	}

	.mobile-menu-panel[hidden] {
		display: none !important;
	}

	.mobile-menu-list,
	.mobile-menu-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-menu-list > li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.mobile-menu-list > li:last-child {
		border-bottom: 0;
	}

	.mobile-menu-list li a {
		display: block;
		padding: 14px 4px;
		font-size: 16px;
		line-height: 1.4;
		font-weight: 600;
		color: #111;
		text-decoration: none;
	}

	.mobile-menu-list li.current-menu-item > a,
	.mobile-menu-list li.current-menu-ancestor > a {
		color: #000;
	}

	.mobile-menu-list .sub-menu {
		padding: 0 0 10px 10px;
	}

	.mobile-menu-list .sub-menu li a {
		padding: 10px 4px;
		font-size: 14px;
		font-weight: 500;
		color: #555;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}

	body.mobile-menu-open .mobile-header {
		box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
	}
}