:root {
	--shop-blue: #2da7fa;
	--shop-blue-soft: #eaf6ff;
	--shop-text: #333536;
	--shop-muted: #788089;
	--shop-subtle: #f6f6f6;
	--shop-border: #e4e4e4;
	--shop-white: #ffffff;
	--shop-shadow: 0 24px 60px rgba(20, 33, 50, 0.08);
	--shop-radius-xl: 26px;
	--shop-radius-lg: 24px;
	--shop-radius-md: 16px;
	--shop-radius-sm: 12px;
	--shop-shell: min(1640px, calc(100vw - 48px));
	--shop-header-height: 96px;
	--shop-desktop-search-width: 360px;
	--shop-mega-menu-edge: 36px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.shop-page {
	margin: 0;
	background: var(--shop-white);
	color: var(--shop-text);
	font-family: "Montserrat", sans-serif;
}

body.is-mobile-nav-open,
body.is-mobile-search-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

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

button,
input {
	font: inherit;
}

.shop-shell {
	width: min(var(--shop-shell), calc(100% - 24px));
	max-width: calc(100% - 24px);
	margin: 0 auto;
}

.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__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;
}

.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;
}

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

.shop-header__search-trigger.is-active {
	background: var(--shop-blue-soft);
	color: var(--shop-blue);
}

.shop-desktop-search {
	position: absolute;
	top: calc(100% + 18px);
	right: 0;
	width: var(--shop-desktop-search-width);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 8;
}

.shop-desktop-search.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.shop-desktop-search__field {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	height: 48px;
	padding: 12px 12px 12px 16px;
	background: #f7f7f9;
	border-radius: 12px;
}

.shop-desktop-search__field input {
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	outline: none;
	color: var(--shop-text);
	font-size: 18px;
	font-style: italic;
	font-weight: 500;
	line-height: 24px;
}

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

.shop-desktop-search__field i {
	font-size: 20px;
}

.shop-desktop-search__recent {
	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 {
	display: flex;
	align-items: center;
	height: 48px;
	padding: 12px 10px;
	border-radius: 12px;
	color: var(--shop-text);
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
}

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

.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: var(--shop-white);
	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 {
	width: min(1160px, calc(100vw - 48px));
}

.shop-mega-menu--charlie {
	width: min(760px, calc(100vw - 48px));
}

.shop-mega-menu--licensure {
	width: min(660px, calc(100vw - 48px));
}

.shop-mega-menu--accessories {
	left: max(calc(var(--shop-mega-menu-edge) * -5), calc((100vw - var(--shop-shell)) / 2 * -1));
	width: min(1320px, calc(100vw - 48px));
}

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

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

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

.shop-mega-menu--accessories .shop-mega-menu__grid {
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 22px;
}

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

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

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

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

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

.shop-mega-menu__column li {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--shop-text);
}

@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__image-wrap {
		height: 96px;
	}

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

	.shop-mega-menu__column li {
		font-size: 16px;
		line-height: 1.3;
	}

	.hero-section__media {
		min-height: 360px;
	}

	.hero-section__product {
		width: min(560px, 92%);
	}
}

@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--accessories .shop-mega-menu__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.hero-section__inner {
		grid-template-columns: minmax(300px, 360px) minmax(420px, 1fr);
	}

	.hero-section h1 {
		font-size: clamp(32px, 3vw, 42px);
	}

	.hero-section p {
		font-size: 12px;
	}
}

.hero-section {
	background: var(--shop-subtle);
	padding: 20px 0 18px;
	overflow: hidden;
}

.hero-carousel {
	position: relative;
	overflow: hidden;
	width: min(1640px, calc(100vw - 120px));
	max-width: calc(100vw - 120px);
	margin: 0 auto;
}

.category-carousel {
	overflow: hidden;
}

.hero-carousel__track,
.category-carousel__track {
	display: flex;
	gap: 0;
	width: 100%;
	transition: transform 0.45s ease;
	will-change: transform;
	touch-action: pan-y;
}

.hero-carousel__slide,
.category-carousel__slide {
	flex: 0 0 100%;
	min-width: 100%;
	width: 100%;
	overflow: hidden;
}

.hero-section__inner {
	display: grid;
	grid-template-columns: minmax(520px, 594px) minmax(764px, 1fr);
	gap: 0;
	align-items: center;
	min-width: 0;
	width: 100%;
}

.hero-section__copy {
	display: grid;
	gap: 40px;
	min-width: 0;
	max-width: 594px;
}

.hero-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 8px 16px;
	background: var(--shop-white);
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(39, 55, 75, 0.08);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.hero-section__eyebrow img {
	width: 22px;
	height: 22px;
}

.hero-section__eyebrow i {
	color: var(--shop-blue);
	font-size: 22px;
	line-height: 1;
}

.hero-section h1,
.section-heading h2,
.app-spotlight h2 {
	margin: 0;
	font-size: clamp(42px, 4vw, 64px);
	font-weight: 700;
	line-height: 1.08;
}

.hero-section h1 span,
.section-heading h2 span,
.app-spotlight h2 span {
	color: var(--shop-blue);
}

.hero-section h1 {
	max-width: 594px;
	font-size: 64px;
	line-height: 70px;
}

.hero-section p,
.split-section__lead,
.app-spotlight p {
	margin: 0;
	max-width: 580px;
	color: #4f545a;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.45;
}

.hero-section p {
	max-width: 559px;
	font-size: 20px;
	line-height: 1.3;
	color: var(--shop-muted);
}

.hero-section .shop-button {
	justify-content: center;
	width: 220px;
	padding: 12px 22px 12px 30px;
	border-radius: 10px;
	font-size: 20px;
	gap: 14px;
	box-shadow: none;
}

.shop-button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	padding: 12px 30px 12px 24px;
	border-radius: var(--shop-radius-sm);
	background: var(--shop-blue);
	color: var(--shop-white);
	font-size: 20px;
	font-weight: 600;
	box-shadow: 0 16px 34px rgba(45, 167, 250, 0.24);
}

.hero-section__media {
	position: relative;
	min-height: 580px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.hero-section__shape {
	position: absolute;
	left: 12px;
	bottom: 24px;
	width: min(566px, 66%);
	opacity: 0.9;
	transform: rotate(-18deg);
}

.hero-section__product {
	position: relative;
	z-index: 1;
	width: min(857px, 106%);
	transform: translateX(18px);
	object-fit: contain;
}

.hero-section__dots {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	gap: 14px;
	opacity: 0.5;
	margin-top: -10px;
}

.hero-section__dots button,
.category-carousel__dots button {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--shop-muted);
	border: 0;
	padding: 0;
	cursor: pointer;
}

.hero-section__dots .is-active,
.category-carousel__dots .is-active {
	width: 80px;
	border-radius: 999px;
}

.category-section,
.split-section,
.app-spotlight {
	padding: 120px 0;
}

.category-section__heading {
	max-width: 640px;
}

.section-heading {
	margin-bottom: 56px;
	text-align: center;
}

.section-heading--left {
	margin-bottom: 40px;
	text-align: left;
}

.section-heading__eyebrow {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.category-carousel {
	display: none;
}

.category-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 8px 24px;
	background: var(--shop-white);
	border-radius: 0;
	box-shadow: none;
}

.category-card__image {
	height: 232px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-card__image img {
	max-height: 212px;
	object-fit: contain;
}

.category-card__content {
	display: grid;
	gap: 14px;
	margin-top: 8px;
	text-align: center;
}

.category-card__content h3 {
	margin: 0;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
}

.category-card__content p {
	margin: 0;
	color: var(--shop-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
}

.category-card__content a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--shop-blue);
	font-size: 16px;
	font-weight: 600;
}

.category-carousel__dots {
	display: none;
	justify-content: center;
	gap: 14px;
	margin-top: 12px;
	opacity: 0.5;
}

.split-section--blue {
	background: var(--shop-blue-soft);
}

.split-section__inner {
	display: grid;
	grid-template-columns: minmax(360px, 1fr) minmax(360px, 620px);
	gap: 72px;
	align-items: center;
	min-width: 0;
}

.split-section__inner--reverse {
	grid-template-columns: minmax(360px, 620px) minmax(360px, 1fr);
}

.split-section__inner--reverse .split-section__visual {
	order: -1;
}

.split-section__visual > img {
	width: 100%;
	border-radius: var(--shop-radius-lg);
	box-shadow: var(--shop-shadow);
}

.split-section__content,
.split-section__visual,
.app-spotlight__content,
.app-spotlight__visual {
	min-width: 0;
}

.split-section__media-frame,
.app-spotlight__media-frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--shop-white);
}

.split-section__media-frame img,
.app-spotlight__media-frame img {
	width: 100%;
	height: 100%;
	display: block;
}

.split-section__media-frame--teo {
	aspect-ratio: 822 / 561;
	border-radius: 18px;
	box-shadow: var(--shop-shadow);
}

.split-section__media-frame--teo img {
	object-fit: cover;
	object-position: left center;
}

.split-section__media-frame--about {
	aspect-ratio: 695 / 401;
	border-radius: var(--shop-radius-lg);
	box-shadow: var(--shop-shadow);
}

.split-section__media-frame--about img {
	object-fit: cover;
	object-position: center center;
}

.app-spotlight__media-frame {
	aspect-ratio: 579 / 307;
	border-radius: 12px;
}

.app-spotlight__media-frame img {
	object-fit: cover;
	object-position: right center;
}

.feature-list,
.timeline-list {
	display: grid;
	gap: 24px;
}

.feature-list__item {
	display: grid;
	gap: 14px;
}

.feature-list__title,
.timeline-list__header {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.feature-list__title i,
.timeline-list__header i {
	width: 24px;
	color: var(--shop-blue);
	font-size: 24px;
	line-height: 1;
	text-align: center;
}

.feature-list__item h3,
.timeline-list__item h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.feature-list__item p,
.timeline-list__item p {
	margin: 0;
	padding-left: 32px;
	color: var(--shop-muted);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

.timeline-list__item {
	display: grid;
	gap: 14px;
	padding: 10px 0 10px 28px;
	border-left: 3px solid var(--shop-border);
}

.timeline-list__item.is-active {
	border-left-color: var(--shop-blue);
}

.app-spotlight__inner {
	display: grid;
	grid-template-columns: minmax(360px, 620px) minmax(320px, 1fr);
	gap: 56px;
	align-items: center;
	padding: 76px 100px;
	background: var(--shop-subtle);
	border-radius: var(--shop-radius-lg);
	min-width: 0;
}

.app-spotlight__content {
	display: grid;
	gap: 30px;
}

.app-spotlight__stores {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.app-spotlight__stores img {
	height: 44px;
	max-width: 100%;
}

.app-spotlight__visual {
	align-self: center;
}

.shop-footer__main {
	background: var(--shop-blue-soft);
	padding: 72px 0;
}

.shop-footer__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(120px, 1fr));
	gap: 36px;
}

.shop-footer__brand img {
	width: 164px;
	margin-bottom: 16px;
}

.shop-footer__brand p,
.shop-footer__column a {
	margin: 0;
	color: var(--shop-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}

.shop-footer__column h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 600;
}

.shop-footer__column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-footer__bar {
	background: var(--shop-blue);
	color: var(--shop-white);
}

.shop-footer__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 0;
}

.shop-footer__policies {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.shop-footer__policies a {
	font-size: 16px;
	font-weight: 500;
}

.shop-footer__youtube img {
	height: 28px;
}

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

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

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

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

	.hero-section__media {
		min-height: 720px;
	}
}

@media (max-width: 1920px) {
	:root {
		--shop-shell: min(1640px, calc(100vw - 56px));
	}
}

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

	.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: 172px;
	}

	.shop-mobile-overlay {
		position: fixed;
		inset: 0;
		z-index: 70;
		background: var(--shop-subtle);
		overflow-y: auto;
	}

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

	.shop-mobile-overlay__status {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 20px 34px 0;
		font-size: 18px;
		font-weight: 600;
	}

	.shop-mobile-overlay__status-icons {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 16px;
	}

	.shop-mobile-overlay__battery {
		display: inline-block;
		width: 24px;
		height: 12px;
		border: 1.5px solid var(--shop-text);
		border-radius: 3px;
		position: relative;
	}

	.shop-mobile-overlay__battery::after {
		content: "";
		position: absolute;
		right: -4px;
		top: 3px;
		width: 2px;
		height: 6px;
		background: var(--shop-text);
		border-radius: 1px;
	}

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

	.shop-mobile-overlay__top--submenu,
	.shop-mobile-overlay__top--search {
		padding-top: 10px;
	}

	.shop-mobile-overlay__brand img {
		width: 34px;
	}

	.shop-mobile-overlay__top-actions {
		display: flex;
		align-items: center;
		gap: 10px;
	}

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

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

	.shop-mobile-overlay__screen {
		display: none;
	}

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

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

	.shop-mobile-overlay__group-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 18px 0;
		border: 0;
		background: transparent;
		border-bottom: 1px solid rgba(51, 53, 54, 0.08);
		font-size: 24px;
		font-weight: 600;
		color: var(--shop-text);
		text-align: left;
	}

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

	.shop-mobile-overlay__quick-links a {
		font-size: 24px;
		font-weight: 600;
		color: var(--shop-blue);
	}

	.shop-mobile-overlay__submenu h2 {
		margin: 6px 0 22px;
		font-size: 24px;
		font-weight: 600;
		line-height: 1.2;
	}

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

	.shop-mobile-overlay__submenu-group h3 {
		margin: 0 0 12px;
		font-size: 20px;
		font-weight: 600;
		line-height: 1.2;
	}

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

	.shop-mobile-overlay__submenu-group li {
		font-size: 20px;
		font-weight: 500;
		line-height: 1.3;
	}

	.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__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 span {
		font-weight: 600;
	}

	.hero-section__inner,
	.app-spotlight__inner {
		grid-template-columns: 1fr;
	}

	.hero-section__copy {
		max-width: 220px;
	}

	.category-grid--desktop {
		display: none;
	}

	.category-carousel {
		display: block;
	}

	.category-carousel__dots {
		display: inline-flex;
		width: 100%;
	}

	.split-section__inner,
	.split-section__inner--reverse {
		grid-template-columns: 1fr;
	}

	.split-section__inner--reverse .split-section__visual {
		order: 0;
	}

	.app-spotlight__inner {
		padding: 56px;
	}

	.app-spotlight__media-frame {
		border-radius: 24px;
	}

	.app-spotlight__media-frame img {
		object-position: 72% center;
	}

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

	.shop-footer__brand {
		grid-column: 1 / -1;
	}
}

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

	.hero-carousel {
		width: calc(100vw - 40px);
		max-width: calc(100vw - 40px);
	}

	.hero-section {
		padding: 16px 0 48px;
	}

	.hero-section__inner {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.hero-section__copy {
		gap: 16px;
		max-width: 240px;
	}

	.hero-section__media {
		min-height: 180px;
		justify-content: center;
	}

	.hero-section__shape {
		right: auto;
		left: 28px;
		bottom: 12px;
		width: min(128px, 48%);
	}

	.hero-section__eyebrow {
		font-size: 8px;
		padding: 6px 10px;
	}

	.hero-section__eyebrow img {
		width: 14px;
		height: 14px;
	}

	.hero-section h1 {
		font-size: 32px;
		line-height: 1;
		max-width: 195px;
	}

	.hero-section p {
		font-size: 10px;
		max-width: 182px;
	}

	.hero-section__product {
		width: min(228px, 100%);
		transform: translateX(8px);
	}

	.hero-section .shop-button {
		width: 112px;
		padding: 8px 12px 8px 16px;
		font-size: 12px;
		gap: 8px;
		border-radius: 8px;
	}

	.hero-section__dots .is-active,
	.category-carousel__dots .is-active {
		width: 56px;
	}

	.category-section,
	.split-section,
	.app-spotlight {
		padding: 92px 0;
	}

	.section-heading {
		margin-bottom: 44px;
	}

	.category-card__image {
		height: 180px;
	}

	.category-card__image img {
		max-height: 164px;
	}

	.category-card {
		padding: 0;
	}

	.category-card__content {
		gap: 10px;
	}

	.category-card__content h3 {
		font-size: 24px;
	}
}

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

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

	.hero-section h1,
	.section-heading h2,
	.app-spotlight h2 {
		font-size: 42px;
	}

	.hero-section__eyebrow,
	.section-heading__eyebrow {
		font-size: 18px;
	}

	.hero-section p,
	.split-section__lead,
	.app-spotlight p,
	.feature-list__item p,
	.timeline-list__item p,
	.category-card__content p {
		font-size: 16px;
	}

	.category-grid {
		grid-template-columns: 1fr;
	}

	.category-card__content h3 {
		font-size: 24px;
	}

	.feature-list__item h3,
	.timeline-list__item h3,
	.shop-mobile-overlay__group-trigger {
		font-size: 18px;
	}

	.feature-list__item p,
	.timeline-list__item p {
		padding-left: 0;
	}

	.timeline-list__item {
		padding-left: 20px;
	}

	.app-spotlight__inner {
		padding: 36px 24px;
	}

	.hero-section__eyebrow {
		font-size: 8px;
		padding: 6px 10px;
	}

	.hero-section h1 {
		font-size: 30px;
		max-width: 154px;
	}

	.hero-section p {
		font-size: 10px;
		max-width: 162px;
	}

	.hero-section__media {
		min-height: 176px;
	}

	.hero-section .shop-button {
		width: 104px;
		font-size: 11px;
	}

	.split-section__media-frame--teo {
		aspect-ratio: 1 / 0.9;
	}

	.split-section__media-frame--about {
		aspect-ratio: 1 / 0.84;
	}

	.shop-footer__grid {
		grid-template-columns: 1fr;
	}
}

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

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

	.shop-header__icon-btn {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	.hero-section__eyebrow {
		padding: 10px 14px;
	}

	.hero-section h1,
	.section-heading h2,
	.app-spotlight h2 {
		font-size: 36px;
		line-height: 1.15;
	}

	.hero-section h1 {
		font-size: 28px;
		max-width: 148px;
	}

	.hero-section p {
		font-size: 10px;
		max-width: 156px;
	}

	.hero-section__media {
		min-height: 170px;
	}

	.hero-section .shop-button {
		width: 100px;
		padding: 8px 10px 8px 14px;
	}

	.category-section,
	.split-section,
	.app-spotlight {
		padding: 72px 0;
	}

	.shop-button {
		padding: 14px 22px;
		font-size: 17px;
	}

	.shop-mobile-overlay__body,
	.shop-mobile-overlay__submenu,
	.shop-mobile-search {
		padding-left: 24px;
		padding-right: 24px;
	}

	.shop-mobile-overlay__submenu h2 {
		font-size: 22px;
	}

	.shop-mobile-overlay__submenu-group h3,
	.shop-mobile-overlay__submenu-group li {
		font-size: 18px;
	}

	.app-spotlight__inner {
		padding: 28px 20px;
	}

	.app-spotlight__media-frame {
		aspect-ratio: 1 / 1.18;
		border-radius: 20px;
	}

	.app-spotlight__media-frame img {
		object-position: 76% center;
	}

	.app-spotlight__stores {
		gap: 14px;
	}

	.app-spotlight__stores a {
		flex: 1 1 132px;
		max-width: 142px;
	}

	.app-spotlight__stores img {
		width: 100%;
		height: auto;
	}

	.hero-section__dots,
	.category-carousel__dots {
		gap: 10px;
	}
}

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

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

	.hero-section__eyebrow,
	.section-heading__eyebrow {
		font-size: 16px;
	}

	.hero-section h1,
	.section-heading h2,
	.app-spotlight h2 {
		font-size: 32px;
	}

	.category-card {
		padding-left: 18px;
		padding-right: 18px;
	}

	.app-spotlight__inner {
		padding: 24px 18px;
	}

	.app-spotlight__media-frame {
		aspect-ratio: 1 / 1.24;
		border-radius: 18px;
	}

	.category-card__content h3 {
		font-size: 24px;
	}

	.shop-footer__policies {
		gap: 14px;
		flex-direction: column;
		align-items: flex-start;
	}
}
