* {
	box-sizing: border-box;
}

:root {
	--bg: #f5f7fb;
	--surface: #ffffff;
	--surface-soft: #f0f4fb;
	--line: #d8e2f0;
	--ink: #102033;
	--muted: #5b6d82;
	--brand: #247dff;
	--brand-deep: #0f5fd4;
	--logo-pink: #ef7dff;
	--logo-blue: #1973bf;
	--accent: #ff8b2c;
	--accent-soft: #fff2e5;
	--shadow: 0 12px 30px rgba(23, 48, 83, 0.08);
	--radius: 18px;
	--max: 1240px;
}

html {
	scroll-behavior: smooth;
}

.shops-section,
.ranking-section {
	scroll-margin-top: 156px;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--bg);
}

body::before {
	position: fixed;
	inset: 0;
	z-index: 55;
	content: "";
	background: rgba(16, 32, 51, 0.24);
	backdrop-filter: blur(2px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

body.search-focus-active::before {
	opacity: 1;
	pointer-events: auto;
}

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

body.mobile-menu-open::before {
	opacity: 1;
	pointer-events: auto;
}

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

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

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

.subnav-strip,
.header-actions,
.footer-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.page-shell {
	padding: 18px 0 80px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	display: grid;
	grid-template-columns: auto minmax(420px, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 14px 0 18px;
	backdrop-filter: blur(14px);
}

.brand img {
	width: 168px;
}

.header-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	min-height: 56px;
	border: 2px solid var(--brand);
	border-radius: 20px;
	padding: 5px;
	background: var(--surface);
	box-shadow: var(--shadow);
	transition: grid-template-columns 0.2s ease;
}

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

.header-search input {
	min-width: 0;
	width: 100%;
	padding: 0 22px;
	border: 0;
	outline: 0;
	background: transparent;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}

.header-search input::placeholder {
	color: #7d8da2;
}

.header-search button,
.button,
.section-link,
.shop-card a,
.deal-banner a {
	font: inherit;
	font-weight: 800;
}

.header-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-right: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--brand);
	color: #ffffff;
	cursor: pointer;
	overflow: hidden;
	transition:
		width 0.2s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease;
}

.header-search button svg {
	width: 21px;
	height: 21px;
	stroke: currentColor;
	stroke-width: 2.4;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-search-button-label {
	display: inline-block;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	white-space: nowrap;
	transition:
		max-width 0.2s ease,
		margin-left 0.2s ease,
		opacity 0.16s ease;
}

@media (min-width: 721px) {
	.header-search:focus-within,
	.site-header.search-deals-open .header-search {
		grid-template-columns: minmax(0, 1fr) 132px;
	}

	.header-search:focus-within button,
	.site-header.search-deals-open .header-search button {
		width: 128px;
		padding: 0 18px;
		box-shadow: 0 10px 22px rgba(36, 125, 255, 0.22);
	}

	.header-search:focus-within .header-search-button-label,
	.site-header.search-deals-open .header-search-button-label {
		max-width: 76px;
		margin-left: 8px;
		opacity: 1;
	}
}

.header-actions {
	justify-content: end;
}

.auth-profile {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.auth-profile[hidden] {
	display: none !important;
}

[data-auth-start-cta][hidden] {
	display: none !important;
}

.profile-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1px solid rgba(124, 144, 178, 0.22);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(23, 48, 83, 0.1);
	cursor: pointer;
	transition:
		border-color 0.16s ease,
		box-shadow 0.16s ease,
		transform 0.16s ease;
}

.profile-button img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.profile-button:hover,
.profile-button:focus-visible,
.auth-profile.is-open .profile-button {
	border-color: rgba(36, 125, 255, 0.36);
	box-shadow: 0 16px 30px rgba(36, 125, 255, 0.16);
	transform: translateY(-1px);
}

.profile-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 80;
	display: grid;
	gap: 4px;
	min-width: 168px;
	padding: 8px;
	border: 1px solid rgba(124, 144, 178, 0.22);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 34px rgba(23, 48, 83, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition:
		opacity 0.16s ease,
		transform 0.16s ease;
}

.auth-profile.is-open .profile-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.profile-menu-row {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #243f5f;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.profile-menu-row:hover,
.profile-menu-row:focus-visible {
	background: #eaf2ff;
	color: var(--brand);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 1px solid rgba(124, 144, 178, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow);
	cursor: pointer;
}

.mobile-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--ink);
}

.search-deals-panel {
	position: absolute;
	z-index: 30;
	top: calc(100% - 4px);
	left: 0;
	right: 0;
	display: grid;
	gap: 24px;
	padding: 26px 20px 28px;
	border: 1px solid rgba(124, 144, 178, 0.24);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 22px 42px rgba(32, 46, 75, 0.22);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.search-panel-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(124, 144, 178, 0.18);
	border-radius: 14px;
	background: rgba(244, 248, 255, 0.94);
	color: var(--ink);
	cursor: pointer;
}

.search-panel-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 17px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.search-panel-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.search-panel-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.search-panel-close:hover,
.search-panel-close:focus-visible {
	background: #eaf2ff;
	color: var(--brand);
}

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

.search-history-section h2,
.search-deals-section h2,
.search-mega-column h2,
.search-mega-promo h2 {
	margin: 0 0 18px;
	font-size: 1rem;
	line-height: 1.2;
}

.search-history-section h2,
.search-deals-section h2 {
	padding-right: 52px;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.search-history-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 52px 18px 0;
}

.search-history-header h2 {
	margin: 0;
	padding-right: 0;
}

.search-history-clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 12px;
	border: 1px solid rgba(36, 125, 255, 0.18);
	border-radius: 999px;
	background: rgba(244, 248, 255, 0.94);
	color: #58708f;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background-color 0.16s ease,
		border-color 0.16s ease,
		color 0.16s ease,
		transform 0.16s ease;
}

.search-history-clear:hover,
.search-history-clear:focus-visible {
	border-color: rgba(36, 125, 255, 0.38);
	background: #eaf2ff;
	color: var(--brand);
	transform: translateY(-1px);
}

.search-deals-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 42px;
	row-gap: 22px;
}

.search-history-list {
	display: flex;
	grid-column: 1 / -1;
	flex-wrap: wrap;
	gap: 10px;
	min-width: 0;
}

.search-history-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	max-width: 100%;
	padding: 0 14px;
	border: 1px solid rgba(36, 125, 255, 0.18);
	border-radius: 999px;
	background: rgba(244, 248, 255, 0.94);
	color: #243f5f;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	cursor: pointer;
	overflow-wrap: anywhere;
	transition:
		background-color 0.16s ease,
		border-color 0.16s ease,
		color 0.16s ease,
		transform 0.16s ease;
}

.search-history-chip:hover,
.search-history-chip:focus-visible {
	border-color: rgba(36, 125, 255, 0.38);
	background: #eaf2ff;
	color: var(--brand);
	transform: translateY(-1px);
}

.search-recommendation-loading,
.search-recommendation-message {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	gap: 12px;
	min-height: 122px;
	color: #53657d;
	font-weight: 800;
}

.search-loading-gif {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(36, 125, 255, 0.1);
}

.search-loading-gif::before {
	position: absolute;
	inset: 7px;
	content: "";
	border: 3px solid rgba(36, 125, 255, 0.22);
	border-top-color: var(--brand);
	border-radius: inherit;
	animation: search-loading-spin 0.8s linear infinite;
}

.search-loading-gif img {
	width: 1px;
	height: 1px;
	opacity: 0;
}

@keyframes search-loading-spin {
	to {
		transform: rotate(360deg);
	}
}

.search-shop-result {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	min-width: 0;
	padding-left: 14px;
	color: var(--ink);
	transition: color 0.16s ease, transform 0.16s ease;
}

.search-shop-result::before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0;
	width: 4px;
	content: "";
	border-radius: 12px;
	background: var(--brand);
	opacity: 0;
	transition: opacity 0.16s ease;
}

.search-shop-result:hover,
.search-shop-result:focus-visible {
	color: var(--brand);
	transform: translateX(2px);
}

.search-shop-result:hover::before,
.search-shop-result:focus-visible::before {
	opacity: 1;
}

.search-shop-result:hover small,
.search-shop-result:focus-visible small {
	color: #1f6fe7;
}

.search-shop-result:hover .search-result-logo,
.search-shop-result:focus-visible .search-result-logo {
	box-shadow: 0 8px 18px rgba(18, 38, 70, 0.1);
}

.search-shop-result strong,
.search-shop-result small {
	display: block;
}

.search-shop-result strong {
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-shop-result small {
	margin-top: 3px;
	color: #38485c;
	font-size: 1rem;
	line-height: 1.35;
}

.search-result-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 999px;
	background: #f1f3f6;
	color: #111827;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.search-result-logo img {
	width: 72%;
	height: 72%;
	object-fit: contain;
}

.category-mega-panel {
	position: absolute;
	z-index: 28;
	top: calc(100% + 2px);
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: minmax(260px, 0.86fr) minmax(260px, 0.86fr) minmax(260px, 0.86fr) minmax(240px, 0.72fr);
	gap: 18px;
	padding: 18px;
	border: 1px solid rgba(124, 144, 178, 0.28);
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
		#ffffff;
	box-shadow: 0 24px 46px rgba(24, 43, 74, 0.18);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.category-mega-panel::before {
	position: absolute;
	top: -8px;
	left: 56px;
	width: 16px;
	height: 16px;
	content: "";
	border-top: 1px solid rgba(124, 144, 178, 0.28);
	border-left: 1px solid rgba(124, 144, 178, 0.28);
	background: #ffffff;
	transform: rotate(45deg);
}

.subnav-menu:hover .category-mega-panel,
.subnav-menu:focus-within .category-mega-panel,
.subnav-menu.category-menu-open .category-mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.search-mega-categories,
.search-mega-subcategories,
.search-mega-partners,
.mega-subcategory-list,
.mega-partner-list {
	display: grid;
	align-content: start;
	gap: 8px;
}

.search-mega-column {
	min-width: 0;
	padding: 14px;
	border-radius: 18px;
	background: rgba(238, 244, 252, 0.64);
}

.mega-category {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 50px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 16px;
	background: transparent;
	color: #38516f;
	font: inherit;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.mega-category-label {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mega-category.is-active {
	border-color: rgba(36, 125, 255, 0.28);
	background:
		linear-gradient(135deg, rgba(36, 125, 255, 0.96), rgba(15, 95, 212, 0.96)),
		var(--brand);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(36, 125, 255, 0.22);
}

.mega-category:not(.is-active):hover,
.mega-category:not(.is-active):focus-visible {
	border-color: rgba(36, 125, 255, 0.18);
	background: #ffffff;
	color: var(--brand);
}

.mega-category b {
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	text-align: right;
}

.mega-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
}

.mega-icon img,
.mega-icon svg {
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.mega-icon img {
	border-radius: 8px;
}

.mega-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.search-mega-subcategories a,
.mega-subcategory {
	display: block;
	position: relative;
	padding: 9px 0 9px 16px;
	border: 0;
	border-radius: 12px;
	color: #24415f;
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.25;
}

.mega-subcategory.is-active {
	background: transparent;
	color: var(--brand);
	box-shadow: none;
}

.mega-subcategory.is-active::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 1.25em;
	content: "";
	border-radius: 12px;
	background: var(--brand);
	transform: translateY(-50%);
}

.mega-subcategory:not(.is-active):hover,
.mega-subcategory:not(.is-active):focus-visible {
	background: rgba(255, 255, 255, 0.46);
	color: var(--brand);
}

.search-mega-subcategories strong,
.search-mega-subcategories small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-mega-subcategories small {
	margin-top: 3px;
	color: #708096;
	font-size: 0.78rem;
	font-weight: 700;
}

.mega-partner {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 15px;
	color: #24415f;
}

.mega-partner:hover,
.mega-partner:focus-visible,
.mega-partner.is-active {
	background: #ffffff;
	color: var(--brand);
}

.mega-partner.is-active {
	box-shadow: 0 8px 18px rgba(18, 38, 70, 0.08);
}

.mega-partner.is-active > span {
	border-color: rgba(36, 125, 255, 0.32);
	color: var(--brand);
}

.mega-partner > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #ffffff;
	color: #163b66;
	font-size: 11px;
	font-weight: 900;
}

.mega-partner-logo .mini-logo {
	width: 38px;
	height: 38px;
	border-radius: 12px;
}

.mega-partner-logo .mini-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.mega-partner strong,
.mega-partner small {
	display: block;
}

.mega-partner strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.96rem;
	line-height: 1.2;
}

.mega-partner small {
	margin-top: 3px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--brand);
}

.search-mega-promo {
	align-self: start;
	overflow: hidden;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 28px rgba(32, 46, 75, 0.16);
}

.mega-promo-head {
	display: grid;
	gap: 6px;
	padding: 18px;
}

.mega-promo-head span {
	color: var(--brand);
	font-size: 1.1rem;
	font-weight: 900;
}

.mega-promo-head strong,
.search-mega-promo p {
	color: #ff3363;
	font-size: 0.92rem;
	font-weight: 600;
}

.mega-promo-image {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: end;
	height: 138px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(15, 29, 52, 0.12), rgba(15, 29, 52, 0.02)),
		#dfe8f3;
	color: #151b26;
	font-size: 1.4rem;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.mega-promo-art {
	position: absolute;
	inset: 14px;
	width: calc(100% - 28px);
	height: calc(100% - 28px);
	object-fit: contain;
	filter: drop-shadow(0 14px 24px rgba(18, 38, 70, 0.14));
}

.mega-promo-badge {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	min-height: 56px;
	padding: 10px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 12px 24px rgba(18, 38, 70, 0.12);
}

.mega-promo-logo {
	max-width: 84px;
	max-height: 34px;
	object-fit: contain;
}

.search-mega-promo p {
	margin: 12px 18px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 14px;
}

.button img {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	object-fit: contain;
}

.button-primary {
	background: var(--brand);
	color: #ffffff;
}

.button-install-browser {
	background: #4285f4;
	box-shadow: 0 12px 24px rgba(66, 133, 244, 0.22);
	transition:
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.button-install-browser img {
	filter: brightness(0) invert(1);
}

.button-install-browser[data-browser="firefox"] {
	background: #ff9500;
	box-shadow: 0 12px 24px rgba(255, 149, 0, 0.24);
}

.button-install-browser:hover,
.button-install-browser:focus-visible {
	transform: translateY(-1px);
}

.button-ghost {
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--ink);
}

.button-start {
	position: relative;
	min-height: 50px;
	padding: 0 8px 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background:
		linear-gradient(135deg, var(--logo-pink) 0%, #8d72f3 44%, var(--logo-blue) 100%),
		var(--logo-blue);
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(25, 115, 191, 0.24);
	overflow: hidden;
	transition:
		box-shadow 0.18s ease,
		transform 0.18s ease,
		filter 0.18s ease;
}

.button-start::before {
	position: absolute;
	inset: 1px;
	content: "";
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.button-start span {
	position: relative;
	z-index: 1;
}

.button-start-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-left: 2px;
	transition: transform 0.18s ease;
}

.button-start .button-start-icon img {
	width: 20px;
	height: 20px;
	filter: none;
}

.button-start:hover,
.button-start:focus-visible {
	box-shadow: 0 18px 34px rgba(25, 115, 191, 0.3);
	filter: saturate(1.06);
	transform: translateY(-1px);
}

.button-start:hover .button-start-icon,
.button-start:focus-visible .button-start-icon {
	transform: translate(2px, -2px);
}

.mobile-menu-backdrop {
	position: fixed;
	inset: 0;
	z-index: 64;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.mobile-menu-backdrop.is-open {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu-drawer {
	position: fixed;
	top: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 65;
	display: grid;
	align-content: start;
	gap: 18px;
	width: min(430px, calc(100vw - 32px));
	padding: 22px 18px 18px;
	border: 1px solid rgba(124, 144, 178, 0.16);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.99);
	box-shadow: 0 28px 70px rgba(16, 32, 51, 0.18);
	opacity: 0;
	pointer-events: none;
	overflow-y: auto;
	transform: translateX(calc(100% + 28px));
	transition:
		opacity 0.2s ease,
		transform 0.22s ease;
}

.mobile-menu-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.mobile-menu-drawer.is-category-panel-open {
	width: min(760px, calc(100vw - 24px));
}

.mobile-menu-head,
.mobile-menu-section {
	display: grid;
	gap: 12px;
}

.mobile-menu-head {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(124, 144, 178, 0.16);
}

.mobile-menu-brand {
	display: grid;
	align-content: center;
	gap: 2px;
	min-width: 0;
}

.mobile-menu-brand-wordmark {
	width: 178px;
	max-width: 100%;
}

.mobile-menu-brand span {
	color: #5f7188;
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1.2;
}

.mobile-menu-head > div:not(.mobile-menu-brand) strong {
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.35rem;
	letter-spacing: -0.04em;
}

.mobile-menu-eyebrow,
.mobile-menu-label {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b7f96;
}

.mobile-menu-close {
	position: relative;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(124, 144, 178, 0.18);
	border-radius: 16px;
	background: rgba(244, 248, 255, 0.94);
	cursor: pointer;
}

.mobile-menu-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--ink);
}

.mobile-menu-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
	display: grid;
	gap: 8px;
}

.mobile-menu-content {
	display: grid;
	gap: 18px;
	position: relative;
	min-width: 0;
}

.mobile-menu-primary {
	display: grid;
	align-content: start;
	gap: 18px;
	min-width: 0;
}

.mobile-menu-drawer.is-category-panel-open .mobile-menu-content {
	grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
	align-items: start;
}

.mobile-menu-links a,
.mobile-menu-command,
.mobile-menu-cta-group .button {
	width: 100%;
}

.mobile-menu-links a,
.mobile-menu-command {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 16px;
	background: #ffffff;
	color: var(--ink);
	font: inherit;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
	box-shadow: inset 0 -1px 0 rgba(124, 144, 178, 0.12);
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.mobile-menu-card {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 10px 12px;
}

.mobile-menu-card::after {
	content: "\203A";
	align-self: center;
	color: #718199;
	font-size: 1.08rem;
	line-height: 1;
}

.mobile-menu-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 13px;
	background: #f4efff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-menu-item-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.mobile-menu-item-copy {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.mobile-menu-item-copy strong,
.mobile-menu-item-copy small {
	display: block;
	line-height: 1.22;
	min-width: 0;
}

.mobile-menu-item-copy strong {
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 900;
}

.mobile-menu-item-copy small {
	color: #657991;
	font-size: 0.7rem;
	font-weight: 700;
}

[data-mobile-category-panel-toggle][aria-expanded="true"],
[data-mobile-category-panel-toggle]:hover,
[data-mobile-category-panel-toggle]:focus-visible {
	border-color: rgba(126, 89, 255, 0.14);
	background: #f7f1ff;
	box-shadow: 0 12px 24px rgba(115, 78, 196, 0.08);
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible,
.mobile-menu-command:hover,
.mobile-menu-command:focus-visible {
	border-color: rgba(126, 89, 255, 0.18);
	background: #fbf9ff;
	box-shadow: 0 12px 24px rgba(80, 58, 142, 0.06);
	transform: translateY(-1px);
}

.mobile-menu-cta-group {
	padding-top: 6px;
	border-top: 1px solid rgba(124, 144, 178, 0.16);
}

.mobile-menu-creator-section {
	padding-top: 2px;
}

.mobile-menu-creator-section .mobile-nav-wrapper {
	min-height: 72px;
	border-color: rgba(126, 89, 255, 0.1);
	background: #fbf8ff;
}

.mobile-menu-creator-section .disabled-link {
	display: flex;
	align-items: center;
	width: auto;
	color: var(--ink);
}

.mobile-menu-creator-section .disabled-link span {
	display: grid;
	gap: 3px;
}

.mobile-menu-creator-section .disabled-link strong,
.mobile-menu-creator-section .disabled-link small {
	display: block;
	line-height: 1.2;
}

.mobile-menu-creator-section .disabled-link strong {
	font-size: 0.88rem;
}

.mobile-menu-creator-section .disabled-link small {
	color: #6b7f96;
	font-size: 0.68rem;
	font-weight: 700;
}

.mobile-menu-start {
	width: 100%;
	min-height: 58px;
	padding: 0 10px 0 22px;
	border-radius: 16px;
	font-size: 0.95rem;
}

.mobile-menu-start .button-start-icon img {
	filter: brightness(0) invert(1);
}

.mobile-menu-cta-group [data-extension-install-button] {
	display: none;
}

.mobile-auth-profile {
	display: grid;
	justify-items: stretch;
	width: 100%;
}

.mobile-profile-button {
	justify-content: start;
	gap: 10px;
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border-radius: 18px;
	font: inherit;
	font-weight: 800;
	color: var(--ink);
}

.mobile-profile-button img {
	width: 28px;
	height: 28px;
}

.mobile-auth-profile .profile-menu {
	position: static;
	width: 100%;
	min-width: 0;
	margin-top: 8px;
	box-shadow: 0 12px 24px rgba(23, 48, 83, 0.1);
	transform: none;
}

.mobile-auth-profile:not(.is-open) .profile-menu {
	display: none;
}

.subnav-strip {
	position: relative;
	align-items: center;
	gap: 6px;
	width: 100%;
	padding: 8px;
	margin-bottom: 20px;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
		var(--surface);
	box-shadow: 0 14px 30px rgba(24, 43, 74, 0.1);
}

.subnav-strip a,
.subnav-menu-trigger {
	min-height: 44px;
	padding: 0 16px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	color: #435872;
	white-space: nowrap;
}

.subnav-menu {
	position: static;
	display: inline-flex;
	align-items: center;
}

.subnav-menu-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	font-family: inherit;
	cursor: pointer;
}

.subnav-link {
	display: inline-flex;
	align-items: center;
}

.subnav-menu-trigger svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.16s ease;
}

.subnav-menu:hover .subnav-menu-trigger,
.subnav-menu:focus-within .subnav-menu-trigger,
.subnav-menu.category-menu-open .subnav-menu-trigger {
	background: #eaf2ff;
	color: var(--brand);
}

.subnav-link:hover,
.subnav-link:focus-visible {
	background: #f0f5fc;
	color: var(--brand);
}

.subnav-menu:hover .subnav-menu-trigger svg,
.subnav-menu:focus-within .subnav-menu-trigger svg,
.subnav-menu.category-menu-open .subnav-menu-trigger svg {
	transform: rotate(180deg);
}

.hero {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.trust-band,
.shops-section,
.categories-section,
.deals-section,
.trustpilot-section,
.ranking-section,
.how-section,
.install-section,
.faq-section,
.site-footer {
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.hero,
.trust-band,
.shops-section,
.categories-section,
.deals-section,
.trustpilot-section,
.ranking-section,
.how-section,
.install-section,
.faq-section {
	margin-bottom: 18px;
}

.hero {
	display: block;
	padding: 0;
}

.hero-banner-section {
	position: relative;
	min-height: clamp(390px, 45vw, 580px);
	isolation: isolate;
}

.hero-banner-section::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background:
		linear-gradient(
			90deg,
			rgba(7, 17, 35, 0.72) 0%,
			rgba(7, 17, 35, 0.46) 42%,
			rgba(7, 17, 35, 0.12) 72%,
			rgba(7, 17, 35, 0.02) 100%
		),
		linear-gradient(
			180deg,
			rgba(7, 17, 35, 0.08) 0%,
			rgba(7, 17, 35, 0.28) 100%
		);
	pointer-events: none;
}

.hero-banner {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: min(700px, 62%);
	padding: clamp(32px, 5vw, 64px);
	color: #ffffff;
}

.hero-overlay-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	justify-items: center;
	gap: 24px;
	overflow: hidden;
	width: min(330px, 100%);
	min-height: 84px;
	margin-top: 30px;
	padding: 0 44px 0 76px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 30px;
	background: linear-gradient(100deg, #d45cff 0%, #8d6bff 47%, #247dff 100%);
	color: #ffffff;
	box-shadow: 0 22px 42px rgba(13, 32, 72, 0.36);
	font-size: clamp(1.15rem, 2.1vw, 1.42rem);
	font-weight: 900;
	transition:
		filter 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.hero-overlay-cta::after {
	display: none;
}

.hero-overlay-cta > span {
	position: relative;
	z-index: 1;
}

.hero-overlay-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	transition: transform 0.2s ease;
}

.hero-overlay-cta-icon img {
	width: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
}

.hero-overlay-cta:hover,
.hero-overlay-cta:focus-visible {
	filter: saturate(1.08) brightness(1.03);
	box-shadow: 0 26px 48px rgba(36, 125, 255, 0.34);
	transform: translateY(-2px);
}

.hero-overlay-cta:hover .hero-overlay-cta-icon,
.hero-overlay-cta:focus-visible .hero-overlay-cta-icon {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.hero-overlay-cta,
	.hero-overlay-cta::after {
		transition: none;
	}

	.hero-overlay-cta:hover,
	.hero-overlay-cta:focus-visible {
		transform: none;
	}
}

.eyebrow,
.shop-top span,
.deal-banner span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #708096;
}

.hero h1,
.section-heading h2,
.install-copy h2 {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
}

.hero h1 {
	margin-top: 12px;
	max-width: 740px;
	font-size: clamp(2.8rem, 5vw, 4.6rem);
	line-height: 0.96;
}

.hero .hero-overlay h1 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(2.15rem, 4vw, 4.05rem);
	line-height: 1.03;
}

.shop-card p,
.ranking-row p,
.step-card p,
.install-copy > p,
.faq-item p {
	color: var(--muted);
	line-height: 1.7;
}

.category-card,
.step-card,
.faq-item {
	padding: 18px;
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.shop-top strong,
.category-card strong,
.ranking-brand strong,
.step-card h3,
.faq-item h3,
.site-footer h3 {
	display: block;
	font-size: 1.05rem;
}

.brand-with-icon {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mini-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(39, 65, 94, 0.12);
	border-radius: 12px;
	background: #ffffff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #223853;
	flex: 0 0 auto;
	box-shadow: 0 4px 12px rgba(18, 35, 58, 0.08);
}

.mini-logo img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.mini-logo-nike {
	background: #eef4ff;
}

.mini-logo-samsung {
	background: #edf7ff;
}

.mini-logo-agoda {
	background: #eff7ff;
}

.mini-logo-adidas {
	background: #f3f5f7;
}

.mini-logo-adobe {
	background: #f5f2ff;
}

.mini-logo-sephora {
	background: #fff1f5;
}

.mini-logo-ikea {
	background: #f4f6ea;
}

.section-link,
.shop-card a {
	color: var(--brand-deep);
}

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

.partner-logo-band {
	display: block;
	overflow: hidden;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.partner-logo-empty {
	padding: 18px;
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.partner-logo-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 12px;
	min-width: 0;
}

.partner-logo-tile {
	display: flex;
	min-width: 0;
	height: 82px;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	text-align: center;
	text-decoration: none;
}

.partner-logo-tile img {
	width: min(112px, 82%);
	object-fit: contain;
}

.partner-logo-empty {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--muted);
}

.shops-section,
.categories-section,
.deals-section,
.trustpilot-section,
.ranking-section,
.how-section,
.install-section,
.faq-section,
.site-footer {
	padding: 24px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.section-heading h2 {
	margin-top: 10px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.shop-grid,
.category-grid,
.steps-grid,
.faq-list {
	display: grid;
	gap: 14px;
}

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

.shop-card {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #ffffff;
}

.shop-image {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: end;
	justify-content: space-between;
	min-height: 136px;
	padding: 14px;
	border: 1px solid #d5e0ef;
	border-radius: 16px;
	background:
		repeating-linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.18) 0,
			rgba(255, 255, 255, 0.18) 12px,
			rgba(255, 255, 255, 0.04) 12px,
			rgba(255, 255, 255, 0.04) 24px
		);
}

.shop-image span {
	position: relative;
	z-index: 2;
	align-self: start;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #27415e;
}

.shop-image-dynamic {
	background:
		radial-gradient(
			circle at 72% 48%,
			color-mix(in srgb, var(--shop-accent, #247dff) 14%, transparent) 0,
			transparent 36%
		),
		linear-gradient(
			135deg,
			var(--shop-accent-soft, #f6f9ff) 0%,
			#f8fbff 46%,
			var(--shop-accent-mid, #edf4ff) 100%
		);
}

.shop-image-dynamic::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		repeating-linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.22) 0,
			rgba(255, 255, 255, 0.22) 12px,
			rgba(255, 255, 255, 0.06) 12px,
			rgba(255, 255, 255, 0.06) 24px
		);
	pointer-events: none;
}

.shop-image-bg-logo {
	position: absolute;
	z-index: 1;
	left: 18px;
	top: 50%;
	width: min(72%, 250px);
	height: 118%;
	object-fit: contain;
	opacity: 0.13;
	transform: translateY(-50%) scaleX(1.38);
	filter: saturate(1.2) drop-shadow(0 18px 28px rgba(36, 60, 92, 0.16));
	pointer-events: none;
}

.shop-image-logo {
	position: relative;
	z-index: 2;
	max-width: min(100%, 180px);
	max-height: 72px;
	margin-left: auto;
	object-fit: contain;
	filter: drop-shadow(0 12px 20px rgba(36, 60, 92, 0.12));
}

.shop-image-nike {
	background-color: #e6eefb;
}

.shop-image-samsung {
	background-color: #e4f1ff;
}

.shop-image-agoda {
	background-color: #eef6ff;
}

.shop-image-adobe {
	background-color: #f4f2ff;
}

.shop-image-sephora {
	background-color: #fff0f4;
}

.shop-image-ikea {
	background-color: #f4f6ea;
}

.shop-top {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 14px;
}

.shop-top span {
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: #c66612;
}

.shop-card p {
	margin: 0;
	color: var(--muted);
}

.shop-load-more {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.button-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 176px;
	border: 1px solid #cfe0fb;
	background: #f3f8ff;
	color: var(--brand-deep);
	box-shadow: 0 10px 22px rgba(40, 84, 143, 0.08);
	cursor: pointer;
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.button-load-more:disabled {
	cursor: wait;
}

.button-loading-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 20px;
	flex: 0 0 auto;
}

.button-loading-dot {
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: currentColor;
	opacity: 0.28;
	animation: button-loading-dot-pulse 1s ease-in-out infinite;
}

.button-loading-dot:nth-child(2) {
	animation-delay: 0.16s;
}

.button-loading-dot:nth-child(3) {
	animation-delay: 0.32s;
}

@keyframes button-loading-dot-pulse {
	0%,
	80%,
	100% {
		opacity: 0.28;
		transform: translateY(0);
	}

	40% {
		opacity: 1;
		transform: translateY(-1px);
	}
}

.button-load-more:hover,
.button-load-more:focus-visible {
	border-color: var(--brand);
	background: var(--brand);
	color: #ffffff;
	transform: translateY(-1px);
}

.shop-meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.shop-meta-pill {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border: 1px solid #d9e2f1;
	border-radius: 999px;
	background: #f8fbff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #35506d;
}

.categories-section {
	overflow: hidden;
}

.category-carousel {
	position: relative;
	padding: 0 26px;
}

.category-grid {
	display: grid;
	grid-auto-columns: calc((100% - 54px) / 4);
	grid-auto-flow: column;
	grid-template-columns: none;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 0 18px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
	display: none;
}

.category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 400px;
	padding: 28px 18px;
	overflow: hidden;
	border: 1px solid rgba(151, 174, 205, 0.2);
	border-radius: 10px;
	background: #edf4fb;
	box-shadow: none;
	color: inherit;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	text-align: center;
}

.category-card::before {
	position: absolute;
	inset: 0;
	z-index: 2;
	content: "";
	background:
		linear-gradient(180deg, rgba(10, 22, 42, 0.46) 0%, rgba(10, 22, 42, 0.08) 42%, rgba(10, 22, 42, 0) 100%);
	pointer-events: none;
}

.category-card-copy {
	position: relative;
	z-index: 3;
	padding: 12px 18px 14px;
}

.category-card strong {
	position: relative;
	display: block;
	color: white;
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	line-height: 1.08;
	text-shadow: 0 3px 14px rgba(8, 22, 42, 0.38);
}

.category-card span {
	position: relative;
	display: block;
	margin-top: 4px;
	color: white;
	font-size: 12px;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(8, 22, 42, 0.35);
}

.category-card img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
	will-change: transform;
}

.category-card:hover img,
.category-card:focus-visible img {
	transform: scale(1.07);
}

.category-card:focus-visible {
	outline: 3px solid rgba(36, 125, 255, 0.42);
	outline-offset: 4px;
}

.category-card:nth-child(2n) {
	background: #f1f5fb;
}

.category-card:nth-child(3n) {
	background: #eaf3fb;
}

.category-carousel-button {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #314f7b;
	color: #ffffff;
	box-shadow: 0 12px 26px rgba(30, 55, 91, 0.2);
	cursor: pointer;
	transform: translateY(-50%);
	transition:
		background-color 0.16s ease,
		box-shadow 0.16s ease,
		transform 0.16s ease;
}

.category-carousel-button[hidden] {
	display: none;
}

.category-carousel-button:hover,
.category-carousel-button:focus-visible {
	background: #263f65;
	box-shadow: 0 16px 30px rgba(30, 55, 91, 0.28);
	transform: translateY(-50%) scale(1.08);
}

.category-carousel-button:active {
	transform: translateY(-50%) scale(0.96);
}

.category-carousel-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

.category-carousel-button-prev {
	left: 0;
}

.category-carousel-button-next {
	right: 0;
}

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

.deal-banner {
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(124, 144, 178, 0.22);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(18, 35, 58, 0.08);
}

.deal-banner strong {
	display: block;
	margin-top: 6px;
	font-size: 1.05rem;
	line-height: 1.2;
	color: #17385c;
}

.deal-banner-image {
	display: grid;
}

.deal-banner-media {
	display: block;
}

.deal-banner-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.deal-banner-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 18px 18px;
}

.deal-banner-meta {
	min-width: 0;
}

.deal-banner-meta span {
	color: #708096;
}

.deal-banner-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: #17385c;
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(23, 56, 92, 0.14);
	white-space: nowrap;
	transition:
		background-color 0.18s ease,
		transform 0.18s ease;
}

.deal-banner-cta:hover,
.deal-banner-cta:focus-visible {
	background: #102b49;
	transform: translateY(-1px);
}

.trustpilot-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
	gap: 18px;
}

.trustpilot-score-card,
.trustpilot-review-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #ffffff;
}

.trustpilot-score-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px;
	background:
		linear-gradient(135deg, rgba(0, 182, 122, 0.12) 0%, rgba(239, 247, 255, 0.86) 56%, #ffffff 100%);
}

.trustpilot-brand-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.trustpilot-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: #00b67a;
	color: #ffffff;
	font-weight: 900;
}

.trustpilot-brand-row strong {
	font-size: 1.15rem;
}

.trustpilot-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.trustpilot-stars span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: #00b67a;
	color: #ffffff;
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
}

.trustpilot-stars .is-muted {
	background: #b9c6d4;
}

.trustpilot-score-card h3 {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.trustpilot-score-card p,
.trustpilot-review-card p {
	color: var(--muted);
	line-height: 1.65;
}

.trustpilot-score-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	padding-top: 16px;
	margin-top: auto;
	border-top: 1px solid rgba(124, 144, 178, 0.24);
}

.trustpilot-score-meta span {
	color: #5c6f86;
	font-size: 0.9rem;
	font-weight: 800;
}

.trustpilot-score-meta b {
	font-size: 1.35rem;
	color: #012247;
}

.trustpilot-review-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.trustpilot-review-card {
	display: flex;
	flex-direction: column;
	min-height: 220px;
	padding: 18px;
}

.trustpilot-stars-small {
	margin-bottom: 12px;
}

.trustpilot-stars-small span {
	width: 24px;
	height: 24px;
	border-radius: 5px;
	font-size: 13px;
}

.trustpilot-review-card p {
	margin: 0 0 18px;
}

.trustpilot-review-card strong {
	margin-top: auto;
}

.trustpilot-review-card > span {
	display: block;
	margin-top: 4px;
	color: #6f7f93;
	font-size: 0.9rem;
	font-weight: 700;
}

.ranking-list {
	display: grid;
	gap: 6px;
}

.ranking-section {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 3vw, 36px);
	border-color: rgba(124, 144, 178, 0.22);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(23, 48, 83, 0.06);
}

.ranking-section .eyebrow {
	color: #5b2dff;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.ranking-heading {
	align-items: flex-start;
	gap: clamp(22px, 4vw, 54px);
	margin-bottom: 34px;
}

.ranking-heading > div:first-child {
	min-width: 0;
	max-width: 520px;
}

.ranking-section .section-heading h2 {
	max-width: 12ch;
	margin-top: 14px;
	color: #071a38;
	font-size: clamp(2.4rem, 4.2vw, 3.25rem);
	line-height: 1.06;
	letter-spacing: 0;
}

.ranking-section .section-heading p:not(.eyebrow) {
	max-width: 55ch;
	margin: 22px 0 0;
	color: #233a5b;
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.55;
}

.ranking-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(150px, 1fr));
	gap: 18px;
	width: min(100%, 690px);
	padding-top: 52px;
}

.ranking-highlight {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	min-height: 78px;
	padding: 14px 18px;
	border: 1px solid rgba(124, 144, 178, 0.2);
	border-radius: 16px;
	background: linear-gradient(135deg, #fbf9ff, #ffffff);
	box-shadow: 0 14px 26px rgba(23, 48, 83, 0.04);
}

.ranking-highlight:nth-child(2) {
	background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.ranking-highlight-warm {
	background: linear-gradient(135deg, #fffaf5, #ffffff);
}

.ranking-highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: #f5efff;
}

.ranking-highlight:nth-child(2) .ranking-highlight-icon {
	background: #f0f8ff;
}

.ranking-highlight-warm .ranking-highlight-icon {
	background: #fff3e6;
}

.ranking-highlight-icon img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.ranking-highlight-warm .ranking-highlight-icon img {
	filter: sepia(1) saturate(5) hue-rotate(340deg) brightness(1.02);
}

.ranking-highlight-copy {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.ranking-highlight-copy strong,
.ranking-highlight-copy small {
	display: block;
	line-height: 1.2;
}

.ranking-highlight-copy strong {
	color: #061833;
	font-size: 0.9rem;
	font-weight: 900;
}

.ranking-highlight-copy small {
	color: #405774;
	font-size: 0.82rem;
	font-weight: 700;
}

.ranking-status {
	margin: 0;
	padding: 18px;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	background: #ffffff;
}

.ranking-row {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) 170px 50px;
	align-items: center;
	gap: 22px;
	min-width: 0;
	min-height: 124px;
	padding: 16px 18px 16px 64px;
	border: 1px solid rgba(124, 144, 178, 0.22);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(23, 48, 83, 0.04);
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.ranking-row:hover,
.ranking-row:focus-within {
	border-color: rgba(126, 89, 255, 0.24);
	box-shadow: 0 16px 32px rgba(23, 48, 83, 0.08);
	transform: translateY(-1px);
}

.ranking-row-featured {
	border-color: rgba(124, 144, 178, 0.24);
}

.ranking-brand p {
	margin: 6px 0 0;
	max-width: 680px;
	color: #273f61;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.ranking-brand {
	display: grid;
	align-content: center;
	gap: 4px;
	min-width: 0;
}

.ranking-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.ranking-brand a,
.ranking-shop-link {
	color: var(--ink);
	text-decoration: none;
}

.ranking-brand strong {
	overflow-wrap: anywhere;
	color: #061833;
	font-size: 1.24rem;
	line-height: 1.2;
}

.ranking-popular-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f0e7ff;
	color: #0f5fd4;
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1;
}

.ranking-row .mini-logo {
	width: 92px;
	height: 92px;
	border: 1px solid rgba(124, 144, 178, 0.2);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(23, 48, 83, 0.06);
	font-size: 1rem;
}

.ranking-row .mini-logo img {
	width: 76px;
	height: 76px;
	border-radius: 9px;
	object-fit: contain;
}

.ranking-promo-pill {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 7px;
	min-height: 28px;
	margin-top: 2px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f4f0ff;
	color: #0f5fd4;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
}

.ranking-promo-pill img {
	width: 14px;
	height: 14px;
	object-fit: contain;
	transform: rotate(-32deg);
}

.ranking-usage {
	display: grid;
	justify-items: center;
	gap: 4px;
	min-width: 0;
	color: #071a38;
	text-align: center;
}

.ranking-usage b,
.ranking-usage-label {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.ranking-usage b {
	font-size: 1.45rem;
	font-weight: 950;
	line-height: 1;
}

.ranking-usage-label {
	color: #183050;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.25;
}

.ranking-usage-label-mobile {
	display: none;
}

.ranking-row-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(124, 144, 178, 0.18);
	border-radius: 999px;
	background: #f8fafc;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease;
}

.ranking-row-action:hover,
.ranking-row-action:focus-visible {
	border-color: rgba(126, 89, 255, 0.24);
	background: #f4f0ff;
	transform: translateX(2px);
}

.ranking-row-action img {
	width: 21px;
	height: 21px;
	object-fit: contain;
}

.ranking-footer {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	margin-top: 26px;
	padding: 22px 24px;
	border: 1px solid rgba(126, 89, 255, 0.16);
	border-radius: 18px;
	background: linear-gradient(135deg, #fbf8ff, #ffffff);
}

.ranking-footer-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: #e9dcff;
}

.ranking-footer-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.ranking-footer strong,
.ranking-footer p {
	margin: 0;
}

.ranking-footer strong {
	color: #071a38;
	font-size: 1rem;
	font-weight: 950;
	line-height: 1.25;
}

.ranking-footer p {
	margin-top: 6px;
	color: #183050;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.ranking-footer-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 62px;
	padding: 0 24px;
	border: 1.5px solid #0f5fd4;
	border-radius: 999px;
	color: #0f5fd4;
	font-size: 1.08rem;
	font-weight: 950;
	text-decoration: none;
	transition:
		background-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.ranking-footer-link:hover,
.ranking-footer-link:focus-visible {
	background: #f4f0ff;
	color: #4b19e6;
	transform: translateY(-1px);
}

.ranking-footer-link img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.rank,
.step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: #e8f1ff;
	font-family: "Sora", "Segoe UI", sans-serif;
	color: var(--brand-deep);
	font-weight: 800;
}

.how-section .section-heading {
	margin-bottom: 24px;
}

.steps-grid {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 24px);
}

.step-card {
	position: relative;
	display: grid;
	grid-column: span 5;
	grid-template-columns: minmax(0, 0.9fr) minmax(120px, 0.75fr);
	align-items: center;
	min-height: clamp(230px, 24vw, 292px);
	overflow: hidden;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(36, 125, 255, 0.12);
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(250, 252, 255, 0.96), rgba(245, 249, 255, 0.96)),
		#ffffff;
	box-shadow: 0 20px 44px rgba(23, 48, 83, 0.08);
}

.step-card-wide {
	grid-column: span 7;
}

.step-card:nth-child(1),
.step-card:nth-child(4) {
	border-color: rgba(36, 125, 255, 0.26);
}

.step-card-copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	border-radius: 999px;
	background: #eccfff;
	font-family: "Sora", "Segoe UI", sans-serif;
	color: var(--brand-deep);
	font-weight: 800;
}

.step-card h3 {
	max-width: 300px;
	margin: 0;
	font-size: clamp(1.05rem, 1.5vw, 1.32rem);
	line-height: 1.24;
}

.step-card p {
	max-width: 300px;
	margin: 12px 0 0;
	color: #6a7687;
	font-size: clamp(0.92rem, 1.15vw, 1.04rem);
	line-height: 1.55;
}

.step-card img {
	position: relative;
	z-index: 1;
	justify-self: end;
	align-self: center;
	width: min(100%, 230px);
	max-height: 210px;
	object-fit: contain;
}

.step-card:not(.step-card-wide) {
	grid-template-columns: minmax(0, 1fr);
	align-content: space-between;
}

.step-card:not(.step-card-wide) img {
	width: min(68%, 190px);
	margin-top: 10px;
}

.faq-item h3 {
	margin: 14px 0 0;
}

.install-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
	gap: clamp(24px, 4vw, 42px);
	align-items: stretch;
	padding: clamp(30px, 4vw, 42px);
	background: #ffffff;
	box-shadow: none;
}

.install-copy {
	display: grid;
	align-content: center;
	gap: 16px;
	max-width: 640px;
}

.install-copy > p {
	margin: 0;
	max-width: 60ch;
}

.install-copy h2 {
	max-width: 13ch;
	font-size: clamp(2rem, 3.7vw, 3rem);
	line-height: 1.04;
}

.install-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.install-point {
	padding: 16px 18px;
	border: 1px solid rgba(124, 144, 178, 0.22);
	border-radius: 18px;
	background: #ffffff;
}

.install-point-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.install-point-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	object-fit: contain;
}

.install-point strong,
.install-point span {
	display: block;
}

.install-point strong {
	font-size: 0.96rem;
	line-height: 1.3;
}

.install-point span {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.93rem;
	line-height: 1.55;
}

.install-panel {
	position: relative;
	display: grid;
	gap: 16px;
	padding: 20px;
}

.install-panel::after {
	display: none;
}

.install-panel-head,
.install-actions {
	position: relative;
	z-index: 1;
}

.install-panel-head {
	display: grid;
	gap: 8px;
}

.install-panel-head p,
.install-panel-head span {
	margin: 0;
}

.install-panel-head p {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #5d7291;
}

.install-panel-head span {
	color: #445770;
	font-size: 0.96rem;
	line-height: 1.6;
}

/* .install-actions {
	display: grid;
	justify-items: center;
	gap: 8px;
} */

/* .install-card {
	display: grid;
	justify-items: center;
	gap: 8px;
	padding: 16px 18px;
	transition:
		transform 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease;
} */

/* .install-card:hover,
.install-card:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(36, 125, 255, 0.28);
	box-shadow: 0 18px 34px rgba(23, 48, 83, 0.12);
}

.install-store-badge {
	display: block;
	width: min(100%, 220px);
	height: auto;
	margin: 0 auto;
} */

.install-actions {
    display: grid;
    gap: 16px;
    justify-items: center;
}

.install-card {
    width: 320px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px;
    border-radius: 16px;

    background: #fff;
    border: 1px solid rgba(0,0,0,.08);

    transition: all .25s ease;
    text-decoration: none;
    cursor: pointer;
}

.install-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,144,178,.28);
    box-shadow: 0 12px 30px rgba(23,48,83,.08);
}

.install-store-badge {
    /* width: 220px; */
    height: 70px;      /* Same height for both */
    object-fit: contain;
    display: block;
}

.install-card-firefox{
	background-color: #20123a;
}

.install-card-chrome {
	background-color: #ffffff;
}

.faq-section {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
	gap: clamp(34px, 7vw, 96px);
	align-items: start;
	padding: clamp(38px, 6vw, 72px) clamp(28px, 7vw, 78px);
	border: 0;
	border-radius: 0;
	background: #ffffff;
	box-shadow: none;
}

.faq-intro {
	position: sticky;
	top: 24px;
	display: grid;
	justify-items: start;
	gap: 24px;
}

.faq-mark {
	width: 58px;
	height: 58px;
	border-radius: 999px;
	box-shadow: 0 18px 34px rgba(16, 32, 51, 0.08);
	object-fit: contain;
}

.faq-intro h2 {
	max-width: 360px;
	margin: 0;
	font-size: clamp(2.35rem, 5vw, 4rem);
	line-height: 1.06;
}

.faq-list {
	display: grid;
	gap: 18px;
	padding-top: 6px;
}

.faq-item {
	padding: 0;
	border: 1px solid transparent;
	border-radius: 22px;
	background: transparent;
}

.faq-item[open] {
	padding: 22px 24px;
	border-color: rgba(124, 144, 178, 0.14);
	background: #fbfcff;
	box-shadow: 0 18px 36px rgba(16, 32, 51, 0.045);
}

.faq-item summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px;
	align-items: center;
	gap: 14px;
	min-height: 44px;
	list-style: none;
	cursor: pointer;
	font-size: 1.04rem;
	font-weight: 800;
	color: #101418;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary svg {
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.3;
	transition: transform 0.18s ease;
}

.faq-item summary span {
	grid-column: 1;
	min-width: 0;
}

.faq-item[open] summary svg {
	transform: rotate(180deg);
}

.faq-item p {
	max-width: 560px;
	margin: 8px 48px 0 0;
	font-size: 0.94rem;
	line-height: 1.58;
}

.site-footer {
	padding: 30px 32px 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88));
}

.category-landing-shell {
	min-height: 100vh;
}

.category-landing-blank {
	min-height: calc(100vh - 118px);
	padding: clamp(34px, 7vw, 76px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.category-landing-blank h1 {
	max-width: 760px;
	margin: 12px 0 0;
	font-size: clamp(2.35rem, 6vw, 5rem);
	line-height: 0.98;
}

.category-landing-blank p:last-child {
	max-width: 560px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.category-landing-page {
	display: grid;
	gap: 18px;
}

.category-landing-hero {
	overflow: hidden;
	padding: clamp(30px, 5vw, 58px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(36, 125, 255, 0.12), rgba(255, 139, 44, 0.1) 56%, rgba(255, 255, 255, 0.94)),
		#ffffff;
	box-shadow: var(--shadow);
}

.category-landing-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	color: #60738b;
	font-size: 0.9rem;
	font-weight: 800;
}

.category-landing-breadcrumb a {
	color: var(--brand-deep);
}

.category-landing-breadcrumb strong {
	color: var(--ink);
}

.category-landing-hero h1 {
	max-width: 820px;
	margin: 12px 0 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(2.25rem, 5.4vw, 4.7rem);
	line-height: 0.98;
}

.category-landing-hero > p:last-of-type {
	max-width: 720px;
	margin: 18px 0 0;
	color: #4e6279;
	font-size: clamp(0.98rem, 1.4vw, 1.12rem);
	line-height: 1.7;
}

.category-landing-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 780px;
	margin-top: 28px;
}

.category-landing-metrics div {
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid rgba(124, 144, 178, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
}

.category-landing-metrics strong,
.category-landing-metrics span {
	display: block;
}

.category-landing-metrics strong {
	overflow: hidden;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.category-landing-metrics span {
	margin-top: 6px;
	color: #657991;
	font-size: 0.84rem;
	font-weight: 800;
}

.category-landing-browser {
	display: grid;
	grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.category-landing-sidebar {
	position: sticky;
	top: 104px;
	max-height: calc(100vh - 124px);
	overflow-y: auto;
	padding: 24px 18px 18px;
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.96) 100%);
	box-shadow:
		0 24px 44px rgba(19, 41, 68, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.category-sidebar-head {
	display: grid;
	gap: 10px;
	padding: 0 4px 18px;
	border-bottom: 1px solid rgba(124, 144, 178, 0.12);
}

.category-sidebar-head h2 {
	margin: 0;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.42rem;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.category-sidebar-head p:last-child {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
	text-wrap: pretty;
}

.category-directory-tree {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.category-directory-loading {
	margin: 0;
	color: var(--muted);
	font-weight: 700;
}

.category-tree-group {
	position: relative;
	min-width: 0;
	padding: 6px;
	border-radius: 22px;
	background: transparent;
	transition:
		box-shadow 0.18s ease,
		background-color 0.18s ease,
		transform 0.18s ease;
}

.category-tree-group::after {
	position: absolute;
	right: 12px;
	bottom: -5px;
	left: 12px;
	height: 1px;
	content: "";
	background: rgba(128, 148, 180, 0.14);
}

.category-tree-group.is-active {
	background: rgba(244, 249, 255, 0.88);
	box-shadow: 0 10px 24px rgba(20, 44, 75, 0.05);
}

.category-tree-group.is-expanded {
	background: rgba(252, 253, 255, 0.88);
}

.category-tree-group:last-child::after,
.category-tree-group.is-active::after {
	opacity: 0;
}

.category-tree-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 6px;
}

.category-tree-main {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 0;
	padding: 10px 12px;
	border-radius: 18px;
	color: #334c68;
	font-weight: 900;
	transition:
		background-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.category-tree-main:hover,
.category-tree-main:focus-visible,
.category-tree-group.is-active .category-tree-main {
	background: rgba(255, 255, 255, 0.72);
	color: var(--brand-deep);
	transform: translateY(-1px);
}

.category-tree-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(180deg, #eef4fb 0%, #e7eff8 100%);
	color: #17395f;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.category-tree-group.is-active .category-tree-mark {
	background: linear-gradient(180deg, #247dff 0%, #1859c9 100%);
	color: #ffffff;
	box-shadow: 0 10px 18px rgba(36, 125, 255, 0.2);
}

.category-tree-copy {
	min-width: 0;
}

.category-tree-label {
	display: block;
	font-size: 0.98rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.category-tree-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #4d6784;
	cursor: pointer;
	transition:
		border-color 0.18s ease,
		background-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.category-tree-toggle svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-tree-toggle:hover,
.category-tree-toggle:focus-visible,
.category-tree-group.is-active .category-tree-toggle {
	background: rgba(255, 255, 255, 0.72);
	color: var(--brand-deep);
	box-shadow: 0 8px 18px rgba(28, 50, 83, 0.08);
}

.category-tree-group.is-expanded .category-tree-toggle svg {
	transform: rotate(90deg);
}

.category-tree-sublist {
	--category-sublist-open-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--category-sublist-close-ease: cubic-bezier(0.3, 0, 1, 1);
	display: grid;
	gap: 6px;
	margin: 0 0 0 52px;
	padding: 0 0 0 16px;
	border-left: 0;
	position: relative;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-12px);
	pointer-events: none;
	transition:
		max-height 0.32s var(--category-sublist-close-ease),
		opacity 0.16s ease,
		transform 0.32s var(--category-sublist-close-ease),
		margin 0.32s var(--category-sublist-close-ease),
		padding 0.32s var(--category-sublist-close-ease);
	will-change: max-height, opacity, transform;
}

.category-tree-sublist[data-motion-state="expanding"],
.category-tree-sublist[data-motion-state="open"] {
	transition:
		max-height 0.52s var(--category-sublist-open-ease),
		opacity 0.24s ease,
		transform 0.52s var(--category-sublist-open-ease),
		margin 0.52s var(--category-sublist-open-ease),
		padding 0.52s var(--category-sublist-open-ease);
}

.category-tree-sublist::before {
	position: absolute;
	top: 4px;
	bottom: 6px;
	left: 0;
	width: 1px;
	content: "";
	background: linear-gradient(
		180deg,
		rgba(188, 205, 227, 0.12) 0%,
		rgba(188, 205, 227, 0.68) 22%,
		rgba(188, 205, 227, 0.68) 78%,
		rgba(188, 205, 227, 0.12) 100%
	);
	opacity: 0;
	transition: opacity 0.22s ease;
}

.category-tree-group.is-expanded .category-tree-sublist {
	margin: 2px 0 8px 52px;
	padding: 4px 0 2px 16px;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.category-tree-group.is-expanded .category-tree-sublist::before {
	opacity: 1;
}


.category-tree-subcategory {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.56);
	color: #405772;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
	transition:
		background-color 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.category-tree-subcategory::before {
	position: absolute;
	top: 50%;
	left: -19px;
	width: 7px;
	height: 7px;
	content: "";
	border-radius: 999px;
	background: #c7d5e7;
	transform: translateY(-50%);
}

.category-tree-subcategory:hover,
.category-tree-subcategory:focus-visible {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 20px rgba(24, 49, 81, 0.06);
	color: var(--brand-deep);
	transform: translateX(2px);
}

.category-tree-subcategory.is-active {
	background: linear-gradient(
		90deg,
		rgba(36, 125, 255, 0.16) 0%,
		rgba(36, 125, 255, 0.08) 34%,
		rgba(255, 255, 255, 0.94) 100%
	);
	box-shadow:
		0 12px 24px rgba(24, 49, 81, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	color: var(--brand-deep);
	transform: translateX(4px);
}

.category-tree-subcategory.is-active::before {
	background: #247dff;
	box-shadow: 0 0 0 6px rgba(36, 125, 255, 0.12);
}

.category-landing-content {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.category-content-panel {
	min-width: 0;
}

.category-panel-heading {
	align-items: center;
}

.category-panel-heading h2 {
	margin-top: 8px;
	font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.category-partner-group-list {
	display: grid;
	gap: 14px;
}

.category-partner-feed {
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.category-partner-feed-head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 22px 18px;
	border-bottom: 1px solid rgba(124, 144, 178, 0.22);
}

.category-partner-sort {
	display: grid;
	gap: 8px;
}

.category-partner-sort span {
	color: #657991;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.category-partner-sort select {
	min-width: 220px;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #d7e3f4;
	border-radius: 14px;
	background: #f8fbff;
	color: #24415f;
	font: inherit;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.category-partner-sort select:focus-visible {
	outline: 2px solid rgba(36, 125, 255, 0.22);
	outline-offset: 2px;
}

.category-partner-count {
	flex: 0 0 auto;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: #9b4e06;
	font-size: 0.82rem;
	font-weight: 900;
}

.category-partner-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 18px 22px 22px;
}

.category-shop-card-prioritized {
	border-color: rgba(36, 125, 255, 0.3);
	box-shadow: 0 18px 34px rgba(36, 125, 255, 0.1);
}

.category-shop-meta-priority {
	border-color: rgba(255, 139, 44, 0.24);
	background: var(--accent-soft);
	color: #9b4e06;
}

.category-partner-feed-footer {
	padding: 0 22px 22px;
	margin-top: 0;
}

.footer-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	max-width: 520px;
}

.footer-brand img {
	width: 50px;
	height: 50px;
	border-radius: 16px;
	object-fit: cover;
}

.footer-brand strong {
	display: block;
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 1.08rem;
	line-height: 1.1;
}

.footer-brand p:last-child {
	margin: 4px 0 0;
	max-width: 460px;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.footer-install-links {
	display: flex;
	flex-wrap: nowrap;
	justify-content: end;
	gap: 8px;
}

.footer-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: var(--brand-deep);
}

.footer-pill img,
.footer-link-with-logo img {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.footer-pill img {
	width: 30px;
	height: 30px;
}

.site-footer h3 {
	margin: 0 0 10px;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.35fr) minmax(140px, 0.8fr) minmax(120px, 0.7fr) minmax(150px, 0.8fr);
	align-items: start;
	gap: clamp(24px, 4vw, 56px);
	padding: 22px 0 20px;
}

.footer-column {
	display: grid;
	align-content: start;
	gap: 8px;
	min-width: 0;
}

.site-footer a,
.footer-link-list a {
	display: block;
	margin-top: 0;
	color: var(--muted);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--brand);
}

.footer-install-links .footer-pill {
	display: inline-flex;
	margin-top: 0;
}

.footer-link-list {
	display: grid;
	gap: 8px;
}

.footer-link-list a {
	margin-top: 0;
}

.footer-inline-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-inline-links a {
	margin-top: 0;
}

.footer-link-with-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
}

@media (max-width: 1120px) {
	.site-header,
	.hero,
	.install-section,
	.faq-section,
	.shop-grid,
	.trustpilot-grid,
	.category-grid,
	.steps-grid,
	.faq-list,
	.trust-band {
		grid-template-columns: 1fr;
	}

	.ranking-heading {
		display: grid;
		gap: 24px;
	}

	.ranking-heading > div:first-child {
		max-width: 620px;
	}

	.ranking-highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		max-width: none;
		padding-top: 0;
	}

	.ranking-row {
		grid-template-columns: 76px minmax(0, 1fr) 130px 46px;
		gap: 16px;
		min-height: 112px;
		padding: 16px;
	}

	.ranking-row .mini-logo {
		width: 76px;
		height: 76px;
	}

	.ranking-row .mini-logo img {
		width: 62px;
		height: 62px;
	}

	.header-actions {
		justify-content: start;
	}

	.site-header {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 16px;
		row-gap: 12px;
	}

	.header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.header-actions,
	.subnav-strip {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
		grid-column: 2;
		grid-row: 1;
		align-self: center;
		justify-self: end;
		width: 50px;
		height: 50px;
	}

	.search-deals-panel {
		grid-column: 1 / -1;
		grid-row: 3;
		display: none;
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		width: 100%;
		transform: none;
	}

	.site-header.search-deals-open .search-deals-panel {
		display: grid;
		transform: none;
	}

	.install-panel {
		max-width: 560px;
	}

	.search-deals-grid,
	.trustpilot-review-list,
	.category-mega-panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.deal-stack {
		grid-template-columns: 1fr;
	}

	.category-grid {
		grid-template-columns: none;
		grid-auto-columns: calc((100% - 18px) / 2);
	}

	.search-mega-promo {
		grid-column: 1 / -1;
	}

	.category-mega-panel::before {
		left: 48px;
	}

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

	.footer-shell,
	.footer-bottom {
		align-items: start;
		justify-content: flex-start;
	}

	.footer-shell {
		grid-template-columns: 1fr;
	}

	.footer-install-links {
		justify-content: start;
	}

	.hero-overlay {
		width: min(760px, 76%);
	}

	.how-section .steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.how-section .step-card,
	.how-section .step-card-wide {
		grid-column: auto;
		grid-template-columns: minmax(0, 1fr);
		align-content: space-between;
		min-height: 280px;
	}

	.how-section .step-card img,
	.how-section .step-card:not(.step-card-wide) img {
		width: min(70%, 190px);
		margin-top: 12px;
	}

	.faq-intro {
		position: static;
	}

	.faq-intro h2 {
		max-width: 520px;
	}

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

	.category-partner-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.category-landing-sidebar {
		position: static;
		max-height: none;
	}
}

@media (max-width: 720px) {
	.page-shell {
		width: min(var(--max), calc(100% - 20px));
	}

	.site-header {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 10px 12px;
		padding: 12px 0 14px;
	}

	.brand {
		align-self: center;
	}

	.brand img {
		width: clamp(136px, 42vw, 168px);
	}

	.header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		grid-template-columns: minmax(0, 1fr) 48px;
		border-radius: 24px;
		padding: 8px;
	}

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

	.header-search button,
	.button,
	.deal-banner a {
		width: 100%;
	}

	.header-search button {
		width: 48px;
		height: 48px;
		justify-self: end;
		margin-right: 0;
	}

	.header-search:focus-within,
	.site-header.search-deals-open .header-search {
		grid-template-columns: minmax(0, 1fr) 132px;
	}

	.header-search:focus-within button,
	.site-header.search-deals-open .header-search button {
		width: 128px;
		padding: 0 18px;
		box-shadow: 0 10px 22px rgba(36, 125, 255, 0.22);
	}

	.header-search:focus-within .header-search-button-label,
	.site-header.search-deals-open .header-search-button-label {
		max-width: 76px;
		margin-left: 8px;
		opacity: 1;
	}

	.search-deals-panel {
		grid-column: 1 / -1;
		display: none;
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		grid-template-columns: 1fr;
		width: 100%;
		max-height: min(64vh, 520px);
		margin-top: 0;
		padding: 18px 16px 20px;
		overflow-y: auto;
		border-radius: 22px;
		box-shadow: 0 18px 38px rgba(24, 43, 74, 0.16);
	}

	.site-header.search-deals-open .search-deals-panel {
		display: grid;
		transform: none;
	}

	.mobile-menu-drawer {
		top: 12px;
		right: 12px;
		bottom: 12px;
		width: min(24rem, calc(100vw - 24px));
		padding: 20px 16px 18px;
		border-radius: 24px;
	}

	.mobile-menu-toggle {
		grid-column: 2;
		grid-row: 1;
		width: 48px;
		height: 48px;
		border-radius: 16px;
	}

	.search-deals-grid,
	.trustpilot-grid,
	.trustpilot-review-list,
	.category-mega-panel {
		grid-template-columns: 1fr;
	}

	.search-history-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.search-history-chip {
		justify-content: flex-start;
		min-height: 44px;
		border-radius: 14px;
		text-align: left;
	}

	.search-shop-result {
		grid-template-columns: 46px minmax(0, 1fr);
	}

	.search-result-logo {
		width: 44px;
		height: 44px;
	}

	.category-mega-panel {
		position: static;
		display: none;
		max-height: 72vh;
		margin-top: 8px;
		padding: 12px;
		overflow-y: auto;
		border-radius: 18px;
	}

	.category-mega-panel::before {
		display: none;
	}

	.subnav-menu:hover .category-mega-panel,
	.subnav-menu:focus-within .category-mega-panel,
	.subnav-menu.category-menu-open .category-mega-panel {
		display: grid;
	}

	.search-mega-promo {
		grid-column: auto;
	}

	.search-mega-categories {
		gap: 4px;
	}

	.mega-category {
		min-height: 42px;
	}

	.subnav-strip,
	.hero,
	.trust-band,
	.shops-section,
	.categories-section,
	.deals-section,
	.trustpilot-section,
	.ranking-section,
	.how-section,
	.install-section,
	.faq-section,
	.site-footer {
		padding: 18px;
	}

	.install-section {
		background: #ffffff;
		box-shadow: none;
	}

	.install-point {
		background: #ffffff;
		border-color: rgba(124, 144, 178, 0.22);
	}

	.install-panel::after {
		display: none;
	}

	.ranking-section {
		padding: 24px;
		border-radius: 22px;
	}

	.ranking-heading {
		gap: 18px;
		margin-bottom: 26px;
	}

	.ranking-section .eyebrow {
		font-size: 0.74rem;
	}

	.ranking-section .section-heading h2 {
		max-width: 12.5ch;
		margin-top: 10px;
		font-size: clamp(1.9rem, 8vw, 2.12rem);
		line-height: 1.08;
	}

	.ranking-section .section-heading p:not(.eyebrow) {
		margin-top: 14px;
		font-size: 0.96rem;
		line-height: 1.55;
	}

	.ranking-highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		justify-items: center;
		width: 100%;
		gap: 12px;
	}

	.ranking-highlight {
		grid-template-columns: 1fr;
		place-items: center;
		width: 58px;
		height: 50px;
		min-height: 50px;
		padding: 0;
		border-radius: 10px;
	}

	.ranking-highlight-icon {
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: transparent;
	}

	.ranking-highlight-icon img {
		width: 25px;
		height: 25px;
	}

	.ranking-highlight-copy {
		display: none;
	}

	.ranking-list {
		gap: 10px;
	}

	.ranking-row {
		grid-template-columns: 58px minmax(0, 1fr) 54px 34px;
		align-items: center;
		gap: 10px;
		min-height: 112px;
		padding: 18px 16px;
		border-radius: 16px;
	}

	.ranking-row:hover,
	.ranking-row:focus-within {
		transform: none;
	}

	.ranking-row .mini-logo {
		width: 54px;
		height: 54px;
		border-radius: 10px;
	}

	.ranking-row .mini-logo img {
		width: 46px;
		height: 46px;
		border-radius: 8px;
	}

	.ranking-title-row {
		display: grid;
		justify-items: start;
		gap: 5px;
	}

	.ranking-brand strong {
		font-size: 0.98rem;
		line-height: 1.2;
	}

	.ranking-brand p {
		margin-top: 6px;
		font-size: 0.8rem;
		line-height: 1.25;
	}

	.ranking-popular-badge {
		min-height: 22px;
		padding: 0 9px;
		font-size: 0.72rem;
	}

	.ranking-promo-pill {
		min-height: 22px;
		padding: 0 9px;
		font-size: 0.74rem;
	}

	.ranking-promo-pill img {
		width: 12px;
		height: 12px;
	}

	.ranking-usage {
		gap: 3px;
		align-self: center;
	}

	.ranking-usage b {
		font-size: 1.06rem;
	}

	.ranking-usage-label {
		font-size: 0.66rem;
		line-height: 1.1;
	}

	.ranking-usage-label-desktop {
		display: none;
	}

	.ranking-usage-label-mobile {
		display: block;
	}

	.ranking-row-action {
		width: 34px;
		height: 34px;
	}

	.ranking-row-action img {
		width: 17px;
		height: 17px;
	}

	.ranking-footer {
		grid-template-columns: 58px minmax(0, 1fr) 38px;
		gap: 12px;
		margin: 24px -24px -24px;
		padding: 24px;
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 0 0 22px 22px;
	}

	.ranking-footer-icon {
		width: 52px;
		height: 52px;
	}

	.ranking-footer-icon img {
		width: 25px;
		height: 25px;
	}

	.ranking-footer strong {
		font-size: 0.98rem;
	}

	.ranking-footer p {
		margin-top: 6px;
		font-size: 0.94rem;
		line-height: 1.4;
	}

	.ranking-footer-link {
		width: 38px;
		min-width: 0;
		height: 38px;
		min-height: 38px;
		padding: 0;
		border-width: 1px;
		background: rgba(255, 255, 255, 0.7);
	}

	.ranking-footer-link span {
		display: none;
	}

	.ranking-footer-link img {
		width: 18px;
		height: 18px;
	}

	.hero-banner-section {
		min-height: 520px;
		padding: 0;
	}

	.hero-banner-section::after {
		background:
			linear-gradient(
				180deg,
				rgba(7, 17, 35, 0.1) 0%,
				rgba(7, 17, 35, 0.42) 36%,
				rgba(7, 17, 35, 0.8) 100%
			);
	}

	.hero-banner {
		object-position: center;
	}

	.hero-overlay {
		justify-content: flex-end;
		width: 100%;
		padding: 28px 20px;
	}

	.hero .hero-overlay h1 {
		max-width: 100%;
		font-size: 2rem;
		line-height: 1.1;
	}

	.hero-overlay-cta {
		width: 50%;
		margin-top: 18px;
	}

	.subnav-menu {
		display: block;
		grid-column: 1 / -1;
		width: 100%;
	}

	.subnav-menu-trigger,
	.subnav-link {
		width: 100%;
		min-height: 42px;
		justify-content: center;
		padding: 0 12px;
		font-size: 14px;
	}

	.subnav-menu-trigger {
		justify-content: space-between;
		background: #edf4ff;
	}

	.deal-banner-footer {
		flex-direction: column;
		align-items: start;
	}

	.trustpilot-score-card,
	.trustpilot-review-card {
		padding: 16px;
	}

	.trustpilot-stars span {
		width: 26px;
		height: 26px;
		font-size: 14px;
	}

	.trustpilot-stars-small span {
		width: 22px;
		height: 22px;
		font-size: 12px;
	}

	.category-carousel {
		padding: 0;
	}

	.category-grid {
		grid-template-columns: none;
		grid-auto-columns: calc((100% - 12px) / 2);
		gap: 12px;
		padding: 2px 0 12px;
	}

	.category-card {
		min-height: 260px;
		padding: 22px 12px;
	}

	.category-card strong {
		font-size: clamp(1rem, 5.2vw, 1.28rem);
	}

	.category-card span {
		font-size: 0.78rem;
	}

	.category-card-copy {
		padding: 10px 12px 12px;
		border-radius: 14px;
	}

	.category-carousel-button {
		width: 32px;
		height: 32px;
	}

	.shop-load-more {
		margin-top: 18px;
	}

	.how-section .steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.how-section .step-card,
	.how-section .step-card-wide {
		min-height: 244px;
		padding: 16px;
		border-radius: 20px;
	}

	.how-section .step-card span {
		width: 34px;
		height: 34px;
		margin-bottom: 14px;
		font-size: 0.88rem;
	}

	.how-section .step-card h3 {
		font-size: clamp(0.88rem, 4.2vw, 1rem);
		line-height: 1.22;
	}

	.how-section .step-card p {
		margin-top: 8px;
		font-size: clamp(0.74rem, 3.5vw, 0.84rem);
		line-height: 1.42;
	}

	.how-section .step-card img,
	.how-section .step-card:not(.step-card-wide) img {
		width: min(82%, 138px);
		max-height: 106px;
		margin-top: 8px;
	}

	.install-copy {
		gap: 14px;
	}

	.install-copy h2 {
		max-width: none;
		font-size: clamp(1.95rem, 9vw, 2.6rem);
	}

	.install-points {
		grid-template-columns: 1fr;
	}

	.install-panel {
		padding: 18px;
	}

	.install-card {
		padding: 14px 16px;
	}

	.install-store-badge {
		width: min(100%, 200px);
	}

	.faq-section {
		gap: 22px;
		padding: 26px 14px 30px;
	}

	.faq-intro {
		gap: 14px;
	}

	.faq-mark {
		width: 42px;
		height: 42px;
	}

	.faq-intro h2 {
		max-width: 280px;
		font-size: clamp(1.9rem, 9vw, 2.55rem);
		line-height: 1.08;
	}

	.faq-list {
		gap: 10px;
		padding-top: 0;
	}

	.faq-item {
		border-color: rgba(124, 144, 178, 0.16);
		border-radius: 16px;
		background: #fbfcff;
	}

	.faq-item[open] {
		padding: 0;
		border-radius: 16px;
		box-shadow: 0 12px 26px rgba(16, 32, 51, 0.06);
	}

	.faq-item summary {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 32px;
		gap: 10px;
		min-height: 56px;
		padding: 14px 12px 14px 14px;
		font-size: clamp(0.92rem, 4vw, 1rem);
		line-height: 1.28;
		cursor: pointer;
	}

	.faq-item summary svg {
		display: block;
		width: 15px;
		height: 15px;
	}

	.faq-item p {
		max-width: none;
		margin: 0;
		padding: 0 46px 16px 14px;
		font-size: clamp(0.84rem, 3.6vw, 0.9rem);
		line-height: 1.55;
	}

	.button-load-more {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.footer-brand {
		align-items: flex-start;
	}

	.footer-shell {
		align-items: stretch;
	}

	.footer-install-links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-pill {
		width: 100%;
	}

	.footer-column:not(:last-child) {
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(124, 144, 178, 0.14);
	}

	.category-landing-blank {
		min-height: 460px;
		padding: 28px 18px;
	}

	.category-landing-hero {
		padding: 28px 18px;
		border-radius: 22px;
	}

	.category-landing-hero h1 {
		font-size: clamp(2rem, 12vw, 3rem);
		line-height: 1.05;
	}

	.category-landing-metrics,
	.category-landing-browser,
	.category-partner-list {
		grid-template-columns: 1fr;
	}

	.category-landing-sidebar {
		position: static;
		max-height: none;
		padding: 20px 16px 16px;
		border-radius: 24px;
	}

	.category-tree-main {
		grid-template-columns: 34px minmax(0, 1fr);
		min-height: 0;
	}

	.category-tree-mark {
		width: 32px;
		height: 32px;
		border-radius: 10px;
	}

	.category-tree-sublist {
		margin-left: 18px;
		padding-left: 14px;
	}

	.category-tree-subcategory::before {
		left: -14px;
		width: 6px;
		height: 6px;
	}

	.category-panel-heading {
		align-items: start;
	}

	.category-partner-feed-head {
		display: grid;
		padding: 18px;
	}

	.category-partner-sort select {
		width: 100%;
		min-width: 0;
	}

	.category-partner-count {
		width: fit-content;
	}

	.footer-pill {
		width: 100%;
	}

	.partner-logo-grid {
		grid-template-columns: repeat(8, calc((100% - 24px) / 3));
	}
}

.mobile-nav-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(124, 144, 178, 0.14);
	border-radius: 18px;
	background: rgba(246, 250, 255, 0.82);
}

.mobile-nav-wrapper .disabled-link {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #999999;
	cursor: not-allowed;
	pointer-events: none;
	text-decoration: none;
}

.mobile-nav-wrapper .disabled-link::after {
	content: none;
}

.mobile-nav-wrapper .badge-upcoming {
	position: static;
	margin-left: auto;
	flex: 0 0 auto;
}

.badge-upcoming {
  background-color: #ff4757;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  white-space: nowrap; /* Prevents the badge text from wrapping */
}

/* 1. Wrapper for the desktop item */
.desktop-nav-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.desktop-nav-wrapper .badge-upcoming {
  position: absolute;
  top: -8px;
  right: -40px;
}

/* 2. Disabled state for the desktop link */
/* This will combine with your existing .subnav-link styles */
.desktop-nav-wrapper .disabled-link {
  color: #999999; /* Greyed out text */
  cursor: not-allowed;
  pointer-events: none; /* Prevents clicks/navigation */
  opacity: 0.7; /* Optional: adds an extra visual cue that it's inactive */
}

@media (max-width: 1120px) {
  .subnav-strip .desktop-nav-wrapper {
    display: none;
  }
}

.mobile-category-disclosure {
	display: grid;
	gap: 8px;
	width: 100%;
	min-width: 0;
}

.mobile-category-disclosure-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 46px;
	align-items: center;
	min-height: 52px;
	border: 1px solid rgba(124, 144, 178, 0.14);
	border-radius: 18px;
	background: rgba(246, 250, 255, 0.82);
	overflow: hidden;
}

.mobile-menu-links .mobile-category-disclosure-link {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0 16px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	font-weight: 700;
}

.mobile-menu-links .mobile-category-disclosure-link::after,
.mobile-menu-links .mobile-category-tree a::after {
	content: none;
}

.mobile-category-disclosure-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: 4px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: transparent;
	color: #6b7f96;
	cursor: pointer;
	transition:
		background-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.mobile-category-disclosure-toggle:hover,
.mobile-category-disclosure-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.82);
	color: var(--brand-deep);
}

.mobile-category-disclosure-toggle svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-category-disclosure.is-expanded .mobile-category-disclosure-toggle svg {
	transform: rotate(90deg);
}

.mobile-category-tree {
	display: grid;
	gap: 6px;
	max-height: min(48vh, 380px);
	padding: 8px;
	border: 1px solid rgba(124, 144, 178, 0.14);
	border-radius: 18px;
	background: rgba(246, 250, 255, 0.62);
	overflow-y: auto;
}

.mobile-category-tree[hidden] {
	display: none;
}

.mobile-category-status {
	margin: 0;
	padding: 12px;
	color: var(--muted);
	font-weight: 800;
}

.mobile-category-tree .category-tree-group {
	padding: 4px;
	border-radius: 16px;
}

.mobile-category-tree .category-tree-row {
	align-items: center;
}

.mobile-menu-links .mobile-category-tree .category-tree-main {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 0;
	padding: 8px 10px;
	border: 0;
	border-radius: 14px;
	background: transparent;
	font-weight: 900;
}

.mobile-category-tree .category-tree-mark {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	font-size: 0.68rem;
}

.mobile-category-tree .category-tree-toggle {
	width: 36px;
	height: 36px;
	border-radius: 12px;
}

.mobile-category-tree .category-tree-label {
	font-size: 0.92rem;
}

.mobile-category-tree .category-tree-group.is-expanded .category-tree-sublist {
	margin-left: 44px;
}

.mobile-menu-links .mobile-category-tree .category-tree-subcategory {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	min-height: 0;
	padding: 10px 12px;
	border: 0;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.56);
	font-size: 0.86rem;
}

.mobile-menu-links .mobile-menu-card::after,
.mobile-menu-command.mobile-menu-card::after,
.mobile-category-panel-link::after {
	content: "\203A";
	color: #718199;
	font-size: 1.08rem;
	line-height: 1;
}

.mobile-menu-creator-section .mobile-menu-card::after {
	content: none;
}

.mobile-category-panel {
	display: grid;
	align-content: start;
	gap: 14px;
	min-width: 0;
	min-height: min(580px, calc(100vh - 112px));
	padding-left: 18px;
	border-left: 1px solid rgba(124, 144, 178, 0.16);
}

.mobile-category-panel[hidden] {
	display: none;
}

.mobile-category-panel-head {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	align-items: center;
	gap: 10px;
	padding-bottom: 8px;
}

.mobile-category-panel-head h2,
.mobile-category-panel-head p {
	margin: 0;
}

.mobile-category-panel-head h2 {
	font-size: 0.98rem;
	line-height: 1.2;
}

.mobile-category-panel-head p {
	margin-top: 2px;
	color: #6b7f96;
	font-size: 0.72rem;
	font-weight: 800;
}

.mobile-category-panel-back,
.mobile-category-panel-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: #f6f8fc;
	cursor: pointer;
}

.mobile-category-panel-back img {
	width: 18px;
	height: 18px;
}

.mobile-category-panel-close {
	position: relative;
	color: var(--ink);
}

.mobile-category-panel-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.mobile-category-panel-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-category-panel-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-category-panel-list {
	display: grid;
	gap: 8px;
}

.mobile-category-panel-link {
	text-decoration: none;
}

.mobile-category-panel-link,
.mobile-category-view-all {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 64px;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 16px;
	background: #ffffff;
	color: var(--ink);
	box-shadow: inset 0 -1px 0 rgba(124, 144, 178, 0.12);
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.mobile-category-panel-link:hover,
.mobile-category-panel-link:focus-visible,
.mobile-category-view-all:hover,
.mobile-category-view-all:focus-visible {
	border-color: rgba(126, 89, 255, 0.18);
	background: #fbf9ff;
	box-shadow: 0 12px 24px rgba(80, 58, 142, 0.06);
	transform: translateY(-1px);
}

.mobile-category-view-all {
	margin-top: 8px;
	background: #fbf8ff;
	font-size: 0.86rem;
	font-weight: 900;
}

.mobile-category-view-all::after {
	content: none;
}

@media (max-width: 680px) {
	.mobile-menu-drawer.is-category-panel-open {
		width: min(430px, calc(100vw - 32px));
		overflow: hidden;
	}

	.mobile-menu-drawer.is-category-panel-open .mobile-menu-content {
		grid-template-columns: 1fr;
		min-height: calc(100vh - 168px);
		min-height: calc(100dvh - 168px);
	}

	.mobile-menu-primary {
		transition:
			opacity 0.24s ease,
			transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.mobile-menu-drawer.is-category-panel-open .mobile-menu-primary {
		opacity: 0;
		pointer-events: none;
		transform: translateX(-18px);
	}

	.mobile-category-panel {
		position: absolute;
		inset: 0;
		z-index: 2;
		grid-template-rows: auto minmax(0, 1fr) auto;
		min-height: 0;
		padding-top: 0;
		padding-left: 0;
		background: rgba(255, 255, 255, 0.99);
		overflow: hidden;
		border-top: 0;
		border-left: 0;
		opacity: 0;
		pointer-events: none;
		transform: translateX(104%);
		transition:
			opacity 0.24s ease,
			transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
		will-change: transform, opacity;
	}

	.mobile-menu-drawer.is-category-panel-open .mobile-category-panel {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.mobile-category-panel-list {
		min-height: 0;
		overflow-y: auto;
		padding-right: 2px;
	}
}

.mobile-menu-creator-section .mobile-nav-wrapper {
	min-height: 72px;
	border-color: rgba(126, 89, 255, 0.1);
	background: #fbf8ff;
}

.mobile-menu-creator-section .mobile-nav-wrapper .disabled-link {
	width: auto;
	color: var(--ink);
	opacity: 1;
}

.mobile-menu-creator-section .mobile-nav-wrapper .disabled-link span {
	display: grid;
	gap: 3px;
}

.mobile-menu-creator-section .mobile-nav-wrapper .disabled-link strong,
.mobile-menu-creator-section .mobile-nav-wrapper .disabled-link small {
	display: block;
	line-height: 1.2;
}

.mobile-menu-creator-section .mobile-nav-wrapper .disabled-link strong {
	font-size: 0.88rem;
}

.mobile-menu-creator-section .mobile-nav-wrapper .disabled-link small {
	color: #6b7f96;
	font-size: 0.68rem;
	font-weight: 700;
}

.site-footer {
	display: grid;
	gap: 26px;
	padding: clamp(26px, 4vw, 42px);
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 255, 0.94)),
		var(--surface);
}

.footer-shell {
	display: grid;
	padding: 0 0 26px;
	border-bottom: 1px solid rgba(124, 144, 178, 0.2);
}

.footer-brand {
	display: grid;
	gap: 10px;
	max-width: 620px;
}

.footer-brand img {
	width: min(236px, 72vw);
	height: auto;
	border-radius: 0;
	object-fit: contain;
}

.footer-brand p,
.footer-muted,
.footer-connect p,
.footer-savings-card p {
	margin: 0;
	color: #586985;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 5vw, 48px) clamp(42px, 9vw, 92px);
	padding: 0 0 26px;
	border-bottom: 1px solid rgba(124, 144, 178, 0.2);
}

.footer-column {
	display: grid;
	align-content: start;
	gap: 12px;
	min-width: 0;
}

.footer-heading {
	display: grid;
	grid-template-columns: 54px max-content max-content;
	align-items: center;
	gap: 12px;
	margin-bottom: 4px;
}

.footer-heading .badge-upcoming {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	width: fit-content;
	max-width: max-content;
	padding: 3px 8px;
	line-height: 1;
}

.footer-heading-icon,
.footer-savings-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(126, 89, 255, 0.12);
	border-radius: 18px;
	background: #f5efff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-heading-icon img,
.footer-savings-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.site-footer h3 {
	margin: 0;
	color: var(--ink);
	font-size: 1.08rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.footer-column > a,
.footer-link-list a,
.footer-legal-links a {
	display: block;
	margin: 0;
	color: #586985;
	font-size: 1rem;
	font-weight: 750;
	line-height: 1.5;
	text-decoration: none;
	transition:
		color 0.16s ease,
		transform 0.16s ease;
}

.footer-column > a:hover,
.footer-column > a:focus-visible,
.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
	color: var(--brand);
	transform: translateX(2px);
}

.footer-link-list {
	display: grid;
	gap: 10px;
}

.footer-category-group {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.footer-category-row {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #586985;
	font: inherit;
	font-size: 1rem;
	font-weight: 750;
	line-height: 1.5;
	text-align: left;
	cursor: pointer;
}

.footer-row-icon,
.footer-row-chevron {
	display: none;
}

.footer-subcategory-list {
	display: grid;
	gap: 8px;
	padding: 0 0 0 12px;
	border-left: 1px solid rgba(124, 144, 178, 0.18);
}

.footer-subcategory-list[hidden] {
	display: none;
}

.footer-link-list a:last-child {
	color: #0f5fd4;
	font-weight: 900;
}

.footer-link-list a:last-child::after {
	content: " ->";
}

.footer-connect {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 56px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(124, 144, 178, 0.2);
}

.footer-connect strong,
.footer-savings-card strong {
	display: block;
	color: var(--ink);
	font-size: 1.04rem;
	font-weight: 900;
	line-height: 1.25;
}

.footer-connect p {
	margin-top: 4px;
}

.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	gap: 12px;
	width: auto;
}

.site-footer .footer-link-with-logo,
.site-footer .footer-social-text {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(124, 144, 178, 0.18);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 10px 24px rgba(44, 62, 92, 0.06);
	line-height: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.site-footer .footer-link-with-logo:hover,
.site-footer .footer-link-with-logo:focus-visible,
.site-footer .footer-social-text:hover,
.site-footer .footer-social-text:focus-visible {
	border-color: rgba(126, 89, 255, 0.26);
	transform: translateY(-1px);
}

.site-footer .footer-link-with-logo img {
	display: block;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	margin: auto;
	object-fit: contain;
	object-position: center;
	pointer-events: none;
}

.site-footer .footer-link-with-logo .footer-social-logo-x {
	width: 20px;
	height: 20px;
}

.site-footer .footer-link-with-logo .footer-social-logo-youtube {
	width: 26px;
	height: 22px;
}

.footer-social-text {
	color: var(--ink);
	font-size: 0.94rem;
	font-weight: 950;
}

.footer-savings-card {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 20px;
	border: 1px solid rgba(126, 89, 255, 0.14);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(245, 239, 255, 0.9), rgba(255, 255, 255, 0.92)),
		#ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.footer-savings-icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
}

.footer-savings-card p {
	margin-top: 6px;
	max-width: 360px;
}

.site-footer .footer-savings-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 178px;
	min-height: 56px;
	padding: 0 10px 0 22px;
	border-radius: 16px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 900;
	box-shadow: 0 16px 30px rgba(25, 115, 191, 0.24);
}

.site-footer .footer-savings-button:hover,
.site-footer .footer-savings-button:focus-visible {
	color: #ffffff;
}

.site-footer .footer-savings-button .button-start-icon img {
	filter: brightness(0) invert(1);
}

.footer-bottom {
	display: grid;
	justify-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	padding-top: 0;
	border-top: 0;
	text-align: center;
}

.footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 0;
	width: 100%;
}

.footer-legal-links a {
	position: relative;
	padding: 0 24px;
	color: #586985;
	font-size: 0.94rem;
	font-weight: 760;
}

.footer-legal-links a:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 18px;
	content: "";
	background: rgba(124, 144, 178, 0.36);
	transform: translateY(-50%);
}

.footer-bottom p {
	width: 100%;
	margin: 0;
	color: #586985;
	font-size: 0.94rem;
	font-weight: 750;
	text-align: center;
}

@media (max-width: 760px) {
	.site-footer {
		gap: 16px;
		padding: 18px 14px;
		border-radius: 24px;
	}

	.footer-shell {
		padding-bottom: 18px;
	}

	.footer-brand {
		gap: 8px;
	}

	.footer-brand img {
		width: min(206px, 68vw);
	}

	.footer-brand p,
	.footer-muted,
	.footer-connect p,
	.footer-savings-card p {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.footer-grid,
	.footer-connect,
	.footer-savings-card {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		gap: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.footer-column {
		gap: 8px;
		padding: 16px 0;
		border-bottom: 1px solid rgba(124, 144, 178, 0.16);
	}

	.footer-column:not(:last-child) {
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(124, 144, 178, 0.16);
	}

	.footer-heading {
		grid-template-columns: 42px minmax(0, max-content) auto;
		gap: 10px;
		margin-bottom: 6px;
	}

	.footer-heading-icon {
		width: 38px;
		height: 38px;
		border-radius: 12px;
	}

	.footer-heading-icon img {
		width: 20px;
		height: 20px;
	}

	.site-footer h3 {
		font-size: 1.02rem;
	}

	.footer-heading .badge-upcoming {
		justify-self: start;
		font-size: 0.56rem;
	}

	.footer-connect {
		align-items: start;
		gap: 12px;
		padding: 10px 0 18px;
	}

	.footer-social-links {
		grid-column: auto;
		grid-row: auto;
		justify-content: flex-start;
		justify-self: stretch;
		gap: 10px;
		width: 100%;
	}

	.footer-link-list {
		gap: 0;
	}

	.footer-category-group {
		gap: 0;
	}

	.footer-category-row,
	.footer-row-link {
		display: grid;
		grid-template-columns: 38px minmax(0, 1fr) 24px;
		align-items: center;
		gap: 8px;
		min-height: 42px;
		color: #586985;
		font-size: 0.9rem;
		font-weight: 760;
		text-decoration: none;
	}

	.footer-row-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		border: 1px solid rgba(126, 89, 255, 0.13);
		border-radius: 10px;
		background: #f5efff;
	}

	.footer-row-icon img {
		width: 17px;
		height: 17px;
		object-fit: contain;
	}

	.footer-row-label {
		min-width: 0;
	}

	.footer-category-row .footer-row-chevron,
	.footer-row-link::after {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		justify-self: end;
		color: #7b8ca3;
		font-size: 1.08rem;
		line-height: 1;
		content: "\203A";
	}

	.footer-category-row .footer-row-chevron::before {
		content: "\203A";
		transition: transform 0.18s ease;
	}

	.footer-category-group.is-open .footer-row-chevron::before {
		transform: rotate(90deg);
	}

	.footer-subcategory-list {
		gap: 6px;
		margin: 2px 0 8px 40px;
		padding: 8px 0 8px 12px;
	}

	.footer-subcategory-list a {
		color: #6b7f96;
		font-size: 0.84rem;
		font-weight: 760;
		line-height: 1.35;
	}

	.footer-all-categories-link {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 24px;
		align-items: center;
		min-height: 40px;
		margin-top: 8px;
		padding: 0 14px;
		border: 1px solid rgba(126, 89, 255, 0.16);
		border-radius: 10px;
		background: #fbf8ff;
		color: #7e3cff !important;
		font-size: 0.96rem;
		font-weight: 900;
	}

	.footer-all-categories-link::after {
		justify-self: end;
		content: "\2192";
	}

	.footer-link-list a:last-child::after {
		content: "\2192";
	}

	.site-footer .footer-link-with-logo,
	.site-footer .footer-social-text {
		width: 56px;
		height: 42px;
		border-radius: 18px;
	}

	.footer-savings-card {
		grid-template-columns: 74px minmax(0, 1fr) minmax(128px, auto);
		gap: 12px;
		padding: 12px;
		border-radius: 10px;
	}

	.footer-savings-icon {
		width: 64px;
		height: 64px;
		border-radius: 22px;
	}

	.footer-savings-card strong {
		font-size: 0.92rem;
	}

	.footer-savings-card p {
		margin-top: 4px;
		font-size: 0.78rem;
	}

	.site-footer .footer-savings-button {
		width: auto;
		min-width: 128px;
		min-height: 48px;
		padding: 0 12px 0 18px;
		border-radius: 12px;
		font-size: 0.88rem;
	}

	.footer-legal-links {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		width: 100%;
	}

	.footer-legal-links a {
		flex: 1 1 0;
		min-width: 0;
		padding: 0 8px;
		font-size: 0.68rem;
		white-space: nowrap;
	}

	.footer-legal-links a:not(:last-child)::after {
		content: "";
	}

	.footer-bottom {
		gap: 12px;
	}

	.footer-bottom p {
		font-size: 0.78rem;
	}
}

@media (max-width: 460px) {
	.footer-savings-card {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.site-footer .footer-savings-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}
