.shop-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #F6F6F6;
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(228, 228, 228, 0.7);
}

.shop-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: var(--shop-header-height);
	position: relative;
}

.shop-header__brand img {
	width: 176px;
}

.shop-header__mobile-bar,
.shop-mobile-overlay {
	display: none;
}

.shop-nav--desktop {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
}

.shop-nav__item {
	position: relative;
	flex: 0 0 auto;
}

.shop-nav__item--shell-mega {
	position: static;
}

.shop-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shop-nav__item:hover > .shop-nav__link,
.shop-nav__link:hover {
	background: var(--shop-border);
}

.shop-nav__link--accent {
	color: var(--shop-blue);
}

.shop-nav__caret {
	display: inline-flex;
	font-size: 14px;
	transition: transform 0.2s ease;
}

/* Caret flips up when the menu item is open (hovered) */
.shop-nav__item:hover > .shop-nav__link .shop-nav__caret {
	transform: rotate(180deg);
}

/* "New" badge above the Teo / OneScreen links */
.shop-nav__link--new {
	position: relative;
}

.shop-nav__new {
	position: absolute;
	top: -2px;
	right: 2px;
	font-size: 10px;
	font-weight: 600;
	font-style: italic;
	line-height: 1;
	color: #e8442a;
	pointer-events: none;
}

.shop-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.shop-header__actions a,
.shop-header__icon-btn,
.shop-header__search-trigger,
.shop-mobile-overlay__close,
.shop-mobile-overlay__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--shop-text);
	font-size: 20px;
	cursor: pointer;
}

/* Cart count badge */
.shop-header__cart {
	position: relative;
}

.shop-header__cart-count {
	position: absolute;
	top: 1px;
	right: -1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 16px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--shop-blue);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.shop-desktop-search-wrap {
	position: relative;
}

.shop-desktop-search {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 40px;
	height: 48px;
	overflow: visible;
	border-radius: 12px;
	background: transparent;
	transition: width 0.26s ease, background-color 0.26s ease;
	z-index: 8;
	/* homePage_design.css (loaded earlier) styles .shop-desktop-search as an
	   absolutely-positioned dropdown that is opacity:0/visibility:hidden by
	   default — those values leak here and hid the whole desktop search (incl.
	   the trigger button). This is the inline expanding-search design, so reset
	   them: the search icon must always be visible, matching the Figma header. */
	top: auto;
	right: auto;
	transform: none;
	opacity: 1;
	visibility: visible;
}

.shop-desktop-search.is-open {
	width: var(--shop-desktop-search-width);
	background: #f7f7f9;
}

.shop-desktop-search input {
	position: absolute;
	left: 16px;
	right: 52px;
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
	outline: none;
	color: var(--shop-text);
	font-size: 18px;
	font-style: italic;
	font-weight: 500;
	line-height: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.14s ease;
}

.shop-desktop-search.is-open input {
	opacity: 1;
	pointer-events: auto;
}

.shop-desktop-search input::placeholder {
	color: var(--shop-muted);
	opacity: 1;
}

.shop-header__search-trigger {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
}

.shop-desktop-search.is-open .shop-header__search-trigger {
	background: transparent;
	color: var(--shop-text);
}

.shop-desktop-search__recent {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	padding: 6px;
	background: var(--shop-white);
	border-radius: 0 0 12px 12px;
	box-shadow: var(--shop-shadow);
}

.shop-desktop-search__recent p {
	margin: 0;
	padding: 12px 10px;
	color: var(--shop-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.shop-desktop-search__recent ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
}

.shop-desktop-search__recent li {
	border-radius: 12px;
}

/* The recent-search rows are <a> elements (not <button>). Without this they
   inherit the generic cart/account icon-button rule — `.shop-header__actions a`
   (40px) at desktop, and `body.<page> .shop-header__actions a` (88px) inside each
   page's 4K block — which locks each link to an icon-sized box and pushes/wraps
   the term out of the dropdown. `body.<page> .shop-header__actions a` is (0,2,2),
   so the selector below carries three classes (.shop-page + the two search
   classes) to reach (0,3,2) and win outright — a plain `.shop-page …` prefix only
   ties at (0,2,2) and loses on source order (page CSS loads after header.css).
   Style them as full-width, left-aligned rows; the parent <li> already supplies
   height/padding/font (core.css + the 4K block below), so the link just fills the
   row and flows its text on one line. */
.shop-page .shop-desktop-search .shop-desktop-search__recent li a {
	display: block;
	width: 100%;
	height: auto;
	color: inherit;
	font: inherit;
	text-decoration: none;
	cursor: pointer;
}

.shop-desktop-search__recent li span {
	font-weight: 600;
}

/* ---- Desktop search at 4K -------------------------------------------------
 * Each page scales the shared header ~2.5x at >=3000px, but the search bar +
 * "recent searches" dropdown had no 4K treatment, so they stayed 1080p-sized
 * (tiny) once open. Centralized here (instead of per page) so every page gets
 * it. The trigger icon itself is still sized by each page's actions rules; the
 * collapsed form just reserves that slot, and on open it leaves the flex row
 * (which has no room to expand it) and overlays leftward to its full width.
 * Scaled ~2.5x from the Figma search components (input 360x48, List Group 360
 * wide → node 187:6957). */
@media (min-width: 3000px) {
	.shop-desktop-search-wrap { width: 88px; }
	.shop-desktop-search { width: 88px; height: 106px; border-radius: 28px; }
	/* .shop-page prefix (every page's body carries it) so this out-specifies each
	   page's own `body.<page> .shop-desktop-search { width: 88px }` collapsed rule
	   and the open width actually applies. */
	.shop-page .shop-desktop-search.is-open { position: absolute; top: 0; right: 0; width: 900px; }
	.shop-desktop-search input { left: 40px; right: 130px; font-size: 40px; line-height: 1.4; }
	.shop-desktop-search__recent { top: calc(100% + 15px); padding: 15px; border-radius: 0 0 30px 30px; }
	.shop-desktop-search__recent p { padding: 30px 25px; font-size: 35px; }
	.shop-desktop-search__recent li,
	.shop-desktop-search__recent li a { border-radius: 30px; }
	.shop-desktop-search__recent li { height: 120px; padding: 30px 25px; font-size: 45px; line-height: 1.3; }
}

.shop-mega-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: max(calc(var(--shop-mega-menu-edge) * -1), calc((100vw - var(--shop-shell)) / 2 * -1));
	padding: 34px 38px 30px;
	background: #F6F6F6;
	border-radius: 20px;
	box-shadow: var(--shop-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	max-width: calc(100vw - 48px);
}

.has-mega:hover .shop-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.shop-mega-menu--modupro {
	top: calc(100% - 30px);
	left: 50%;
	width: 100vw;
	max-width: none;
	padding: 44px 0 36px;
	border-radius: 0;
	box-shadow: none;
	transform: translate(-50%, 10px);
}

.shop-mega-menu--charlie {
	top: calc(100% - 30px);
	left: 50%;
	width: 100vw;
	max-width: none;
	padding: 44px 0 36px;
	border-radius: 0;
	box-shadow: none;
	transform: translate(-50%, 10px);
}

.shop-mega-menu--licensure {
	top: calc(100% - 30px);
	left: 50%;
	width: 100vw;
	max-width: none;
	padding: 44px 0 36px;
	border-radius: 0;
	box-shadow: none;
	transform: translate(-50%, 10px);
}

.shop-mega-menu--accessories {
	top: calc(100% - 30px);
	left: 50%;
	width: 100vw;
	max-width: none;
	padding: 44px 0 36px;
	border-radius: 0;
	box-shadow: none;
	transform: translate(-50%, 10px);
}

.shop-mega-menu__grid {
	display: grid;
	gap: 28px;
}

.shop-mega-menu--modupro .shop-mega-menu__grid {
	width: min(var(--shop-shell), calc(100vw - 48px));
	margin: 0 auto;
	grid-template-columns: repeat(4, 200px);
	column-gap: 56px;
	row-gap: 0;
	justify-content: flex-start;
}

.shop-mega-menu--charlie .shop-mega-menu__grid,
.shop-mega-menu--licensure .shop-mega-menu__grid {
	width: min(var(--shop-shell), calc(100vw - 48px));
	margin: 0 auto;
	grid-template-columns: repeat(3, 200px);
	column-gap: 56px;
	row-gap: 0;
	justify-content: flex-start;
}

.shop-mega-menu--accessories .shop-mega-menu__grid {
	width: min(var(--shop-shell), calc(100vw - 48px));
	margin: 0 auto;
	grid-template-columns: repeat(7, minmax(160px, 200px));
	justify-content: space-between;
	column-gap: 0;
	row-gap: 0;
}

/* Inset dropdown content from the shell edges so it has left/right white space */
.shop-mega-menu--modupro .shop-mega-menu__grid,
.shop-mega-menu--charlie .shop-mega-menu__grid,
.shop-mega-menu--licensure .shop-mega-menu__grid,
.shop-mega-menu--accessories .shop-mega-menu__grid {
	box-sizing: border-box;
	padding-inline: 40px;
}

/* ModuPro / Charlie / Licensure indent their columns so they begin under the
   navigation, leaving the logo-width of empty space on the left (per the Figma
   design — content starts ~260px in from the shell edge). Accessories is the
   exception: it has seven columns and keeps the full-width 40px inset. */
.shop-mega-menu--modupro .shop-mega-menu__grid,
.shop-mega-menu--charlie .shop-mega-menu__grid,
.shop-mega-menu--licensure .shop-mega-menu__grid {
	padding-left: 204px;
	padding-right: 40px;
}

.shop-mega-menu--accessories .shop-mega-menu__column {
	width: min(200px, 100%);
}

.shop-mega-menu--accessories .shop-mega-menu__image-wrap {
	width: 160px;
	margin-bottom: 24px;
}

.shop-mega-menu--accessories .shop-mega-menu__column h3 {
	margin-bottom: 14px;
}

.shop-mega-menu--accessories .shop-mega-menu__column ul {
	gap: 10px;
}

.shop-mega-menu--accessories .shop-mega-menu__column li {
	line-height: 1.15;
}

.has-mega:hover .shop-mega-menu--accessories {
	transform: translate(-50%, 0);
}

.has-mega:hover .shop-mega-menu--modupro,
.has-mega:hover .shop-mega-menu--charlie,
.has-mega:hover .shop-mega-menu--licensure {
	transform: translate(-50%, 0);
}

.shop-mega-menu__column {
	min-width: 0;
}

.shop-mega-menu__image-wrap {
	height: 120px;
	margin-bottom: 24px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.shop-mega-menu__image-wrap img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.shop-mega-menu__column h3 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
}

.shop-mega-menu__column ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.shop-mega-menu__column li {
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	color: var(--shop-text);
	white-space: break-spaces;
	width: fit-content;
	max-width: 100%;
	padding: 6px 10px;
	margin-left: -10px;
	border-radius: 5px;
	transition: background-color 0.18s ease;
}

.shop-mega-menu__item-link {
	display: inline-block;
	padding: 0;
	border-radius: 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.18s ease;
}

.shop-mega-menu__column li:hover,
.shop-mega-menu__column li:focus-within {
	background: var(--shop-border);
}

.shop-mega-menu__item-link:hover,
.shop-mega-menu__item-link:focus-visible {
	color: inherit;
	outline: none;
}


@media (max-width: 1470px) {
	:root {
		--shop-shell: calc(100vw - 40px);
		--shop-header-height: 92px;
		--shop-desktop-search-width: 300px;
	}

	.shop-header__inner {
		gap: 18px;
	}

	.shop-header__brand img {
		width: 162px;
	}

	.shop-nav--desktop {
		gap: 0;
	}

	.shop-nav__link {
		padding: 8px 8px;
		font-size: 13px;
	}

	.shop-nav__caret {
		font-size: 12px;
	}

	.shop-header__actions {
		gap: 8px;
	}

	.shop-header__actions a,
	.shop-header__search-trigger {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	.shop-mega-menu {
		padding: 28px 26px 24px;
	}

	.shop-mega-menu__grid {
		gap: 18px;
	}

	.shop-mega-menu--modupro .shop-mega-menu__grid,
	.shop-mega-menu--charlie .shop-mega-menu__grid,
	.shop-mega-menu--licensure .shop-mega-menu__grid {
		padding-left: 180px;
	}

	.shop-mega-menu__image-wrap {
		height: 96px;
	}

	.shop-mega-menu__column h3 {
		font-size: 15px;
	}

	.shop-mega-menu__column li {
		font-size: 13px;
		line-height: 17px;
	}

}

@media (max-width: 1280px) {
	:root {
		--shop-shell: calc(100vw - 32px);
		--shop-desktop-search-width: 260px;
	}

	.shop-header__inner {
		gap: 14px;
	}

	.shop-header__brand img {
		width: 150px;
	}

	.shop-nav__link {
		padding: 7px 6px;
		font-size: 12px;
	}

	.shop-header__actions {
		gap: 6px;
	}

	.shop-header__actions a,
	.shop-header__search-trigger {
		width: 34px;
		height: 34px;
		font-size: 17px;
	}

	.shop-mega-menu--modupro .shop-mega-menu__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-mega-menu--modupro .shop-mega-menu__grid,
	.shop-mega-menu--charlie .shop-mega-menu__grid,
	.shop-mega-menu--licensure .shop-mega-menu__grid {
		padding-left: 164px;
	}

	.shop-mega-menu--accessories .shop-mega-menu__grid {
		grid-template-columns: repeat(4, minmax(160px, 200px));
		gap: 28px 18px;
		justify-content: space-between;
	}
}

@media (min-width: 3000px) {
	:root {
		--shop-shell: min(3320px, calc(100vw - 180px));
		--shop-header-height: 116px;
	}

	.shop-header__brand img {
		width: 220px;
	}

	/* On 4K+ the shell roughly doubles (1640 → ~3320). Rather than leave the
	   dropdowns at fixed 1080p px (which look tiny adrift on a huge screen),
	   scale the whole grid up 2× with zoom so every dropdown looks identical to
	   the 1080p layout. The grid is sized to half the shell so the 2× zoom
	   brings it back to full shell width; all inner values (columns, gaps,
	   fonts, padding) keep their 1080p sizes and scale uniformly with the zoom. */
	.shop-mega-menu--modupro .shop-mega-menu__grid,
	.shop-mega-menu--charlie .shop-mega-menu__grid,
	.shop-mega-menu--licensure .shop-mega-menu__grid,
	.shop-mega-menu--accessories .shop-mega-menu__grid {
		width: calc(var(--shop-shell) / 2);
		zoom: 2;
	}

	/* The panel's vertical padding sits outside the zoomed grid, so double it
	   to keep the same proportions as 1080p. */
	.shop-mega-menu--modupro,
	.shop-mega-menu--charlie,
	.shop-mega-menu--licensure,
	.shop-mega-menu--accessories {
		padding: 88px 0 72px;
	}

	.shop-nav__link {
		font-size: 19px;
		padding: 12px 16px;
	}

	.shop-header__actions a,
	.shop-header__search-trigger {
		width: 46px;
		height: 46px;
		font-size: 24px;
	}
}

@media (max-width: 991px) {
	:root {
		--shop-shell: calc(100vw - 48px);
		--shop-header-height: 92px;
	}

	.shop-shell {
		max-width: calc(100% - 64px);
		margin: 0px 32px;
	}

	.shop-header__inner {
		display: none;
	}

	.shop-header__mobile-bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: var(--shop-header-height);
	}

	.shop-header__brand--mobile img {
		width: 36px;
	}

	/* Bigger tap targets for the top-right action icons (search / cart /
	   account / menu) — 44px is the accessible minimum and reads clearly at
	   low resolutions. */
	.shop-header__actions--mobile .shop-header__icon-btn {
		width: 44px;
		height: 44px;
		font-size: 22px;
	}

	.shop-mobile-overlay {
		position: fixed;
		inset: 0;
		z-index: 70;
		background: var(--shop-subtle);
		height: 100dvh;
		overflow: hidden;
		overscroll-behavior: contain;
	}

	.shop-mobile-overlay.is-active {
		display: block;
	}

	.shop-mobile-overlay__top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 28px 28px 0;
	}

	.shop-mobile-overlay__top--root {
		justify-content: space-between;
		padding: 28px 28px 0;
	}

	/* Root collapse arrow only appears once a dropdown is open. */
	.shop-mobile-overlay__top--root .shop-mobile-overlay__back {
		visibility: hidden;
	}

	.shop-mobile-overlay.has-open .shop-mobile-overlay__top--root .shop-mobile-overlay__back {
		visibility: visible;
	}

	.shop-mobile-overlay__top--search {
		padding-top: 28px;
	}

	.shop-mobile-overlay__close {
		font-size: 20px;
	}

	.shop-mobile-overlay__close,
	.shop-mobile-overlay__back {
		width: 28px;
		height: 28px;
	}

	/* Single full-height menu screen, laid out as a column so the body can take
	   the remaining height and scroll. The .is-active selector (which the root
	   screen always carries) is required to out-specify the generic
	   `.shop-mobile-overlay__screen.is-active { display: block }` in
	   homePage_design.css — without it the body isn't bounded and can't scroll. */
	.shop-mobile-overlay__screen.is-active {
		position: absolute;
		inset: 0;
		display: flex;
		flex-direction: column;
		background: var(--shop-subtle);
		overflow: hidden;
	}

	.shop-mobile-overlay__body,
	.shop-mobile-search {
		padding: 20px 32px 32px;
	}

	.shop-mobile-overlay__body {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.shop-mobile-overlay__group {
		margin-bottom: 16px;
	}

	/* The trigger hugs its content so the chevron sits right after the label
	   (8px gap), matching the Figma root frame both collapsed and expanded. */
	.shop-mobile-overlay__group-trigger {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
		width: max-content;
		max-width: 100%;
		height: 42px;
		padding: 6px 10px;
		border: 0;
		background: transparent;
		font-family: inherit;
		font-size: 20px;
		font-weight: 600;
		line-height: 1;
		color: var(--shop-text);
		text-align: left;
		border-radius: 6px;
		cursor: pointer;
	}

	.shop-mobile-overlay__group-trigger i {
		font-size: 14px;
	}

	/* Open: only the grey pill background changes (the chevron is swapped to
	   point up in JS) — layout already matches the expanded frames. */
	.shop-mobile-overlay__group.is-open > .shop-mobile-overlay__group-trigger {
		background: #E7E7E7;
	}

	/* Inline dropdown panel — expands under its category. Height is animated by
	   JS (max-height ↔ content scrollHeight) for reliable open/close. */
	.shop-mobile-overlay__panel {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.shop-mobile-overlay__panel-inner {
		padding-top: 16px;
	}

	.shop-mobile-overlay__quick-links {
		display: grid;
		gap: 16px;
		padding-top: 2px;
	}

	.shop-mobile-overlay__quick-links a {
		font-size: 20px;
		font-weight: 600;
		line-height: 1;
		color: var(--shop-blue);
		padding: 6px 10px;
	}

	.shop-mobile-overlay__submenu-group {
		margin-bottom: 28px;
	}

	/* Column titles: Montserrat SemiBold. Figma sizes the first column's title
	   at 20px (Title/H3) and the remaining columns at 18px (Title/H4). */
	.shop-mobile-overlay__submenu-group h3 {
		margin: 0 0 12px;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.2;
	}

	.shop-mobile-overlay__submenu-group:first-of-type h3 {
		font-size: 20px;
	}

	.shop-mobile-overlay__submenu-group ul {
		margin: 0;
		padding: 0;
		list-style: none;
		display: grid;
		gap: 10px;
	}

	/* Items: Montserrat Medium 14px / line-height 18 (Body/Body). */
	.shop-mobile-overlay__submenu-group li {
		font-size: 14px;
		font-weight: 500;
		line-height: 18px;
	}

	.shop-mobile-overlay__submenu-group li a {
		color: inherit;
		text-decoration: none;
	}

	.shop-mobile-search__field {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 48px;
		padding: 0 14px 0 16px;
		background: var(--shop-white);
		border-radius: 12px;
	}

	.shop-mobile-search__field input {
		width: 100%;
		border: 0;
		background: transparent;
		font-size: 18px;
		font-weight: 500;
		font-style: italic;
		color: var(--shop-muted);
		outline: none;
	}

	.shop-mobile-search__field i {
		font-size: 24px;
	}

	.shop-mobile-search__go {
		flex: 0 0 auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		border: 0;
		background: transparent;
		color: inherit;
		cursor: pointer;
	}

	.shop-mobile-search__recent {
		padding: 28px 22px 0;
	}

	.shop-mobile-search__recent p {
		margin: 0 0 18px;
		color: var(--shop-muted);
		font-size: 14px;
		font-weight: 500;
	}

	.shop-mobile-search__recent ul {
		margin: 0;
		padding: 0;
		list-style: none;
		display: grid;
		gap: 18px;
	}

	.shop-mobile-search__recent li {
		font-size: 18px;
		font-weight: 500;
		line-height: 1.35;
	}

	.shop-mobile-search__recent li a {
		display: block;
		color: inherit;
		text-decoration: none;
	}

	.shop-mobile-search__recent li span {
		font-weight: 600;
	}
}

@media (max-width: 765px) {
	:root {
		--shop-shell: calc(100vw - 32px);
		--shop-header-height: 86px;
	}

	.shop-header__brand--mobile img {
		width: 36px;
	}
}

@media (max-width: 500px) {
	:root {
		--shop-shell: calc(100vw - 28px);
	}

	.shop-header__actions--mobile {
		gap: 6px;
	}

	/* Keep the enlarged 44px tap targets on small phones instead of shrinking
	   them — accessibility matters most at these low resolutions. */
	.shop-header__actions--mobile .shop-header__icon-btn {
		width: 44px;
		height: 44px;
		font-size: 22px;
	}
	.shop-mobile-overlay__body,
	.shop-mobile-overlay__submenu,
	.shop-mobile-search {
		padding-left: 24px;
		padding-right: 24px;
	}

	.shop-mobile-overlay__group-trigger,
	.shop-mobile-overlay__quick-links a {
		font-size: 18px;
	}
}

@media (max-width: 400px) {
	:root {
		--shop-shell: calc(100vw - 24px);
	}

	.shop-header__brand--mobile img {
		width: 36px;
	}
}

/* 4K: scale the "New" badge on the Teo / OneScreen nav items to match the
 * enlarged nav links. The redesigned pages bump .shop-nav__link to 33px at 4K
 * via their body.<page> blocks; the badge keeps its 10px desktop size unless
 * scaled here, so it looks tiny. Scoped to those same body classes so it only
 * grows where the nav links actually grow. */
@media (min-width: 3000px) {
	body.ft-page .shop-nav__new,
	body.mp-page .shop-nav__new,
	body.ch-page .shop-nav__new,
	body.acc-page .shop-nav__new,
	body.teo-page .shop-nav__new,
	body.lic-page .shop-nav__new {
		font-size: 22px;
		top: -4px;
		right: 4px;
	}

	/* Cart count badge — scale to match the enlarged cart icon (same as the
	 * "New" badge above; stays 10px / 18x16 desktop size otherwise). */
	body.ft-page .shop-header__cart-count,
	body.mp-page .shop-header__cart-count,
	body.ch-page .shop-header__cart-count,
	body.acc-page .shop-header__cart-count,
	body.teo-page .shop-header__cart-count,
	body.lic-page .shop-header__cart-count {
		top: 2px;
		right: -2px;
		min-width: 40px;
		height: 35px;
		padding: 0 11px;
		font-size: 22px;
	}
}
