/*
Theme Name: F-Machine
Theme URI: https://f-machine.hk/
Author: F-Machine
Description: F-Machine official storefront theme with WooCommerce support.
Version: 0.3.51
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: f-machine
*/

:root {
  --fm-bg: #000;
  --fm-surface: #1f1f21;
  --fm-panel: #111113;
  --fm-panel-soft: #19191b;
  --fm-text: #f5f5f5;
  --fm-muted: #a6a6a6;
  --fm-line: rgba(245, 245, 245, 0.18);
  --fm-blue: #12a0dc;
  --fm-blue-hover: #2aafe6;
  --fm-content: 1000px;
  --fm-wide: 1400px;
  --fm-radius: 24px;
}

/* 0.3.27: accessories catalog page. */
.fm-accessories-page {
	min-height: 100vh;
	overflow: hidden;
	color: #f5f5f5;
	background: #000;
}

.fm-accessories-shell {
	width: min(calc(100% - 48px), 1480px);
	margin-right: auto;
	margin-left: auto;
}

.fm-accessories-hero {
	min-height: 560px;
	padding: 112px 0 72px;
	display: flex;
	align-items: center;
	background: radial-gradient(circle at 72% 22%, rgba(0, 163, 224, 0.13), transparent 30%), #000;
}

.fm-accessories-hero h1 {
	margin: 0 0 18px;
	color: #f5f5f5;
	font-size: clamp(68px, 9vw, 148px);
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -0.02em;
}

.fm-accessories-hero p {
	margin: 0;
	color: #a1a1a6;
	font-size: clamp(20px, 2vw, 30px);
	line-height: 1.4;
}

.fm-accessories-nav {
	margin-top: 38px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fm-accessories-nav a {
	padding: 10px 17px;
	color: #f5f5f5;
	border: 1px solid #3a3a3c;
	border-radius: 999px;
	font-size: 14px;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.fm-accessories-nav a:hover,
.fm-accessories-nav a:focus-visible {
	color: #f5f5f5;
	border-color: var(--fm-blue);
	background: rgba(0, 169, 232, 0.1);
}

.fm-accessories-groups {
	padding-bottom: 120px;
	background: #0b0b0c;
}

.fm-accessories-group {
	padding: 108px 0 16px;
	scroll-margin-top: 84px;
}

.fm-accessories-group + .fm-accessories-group {
	padding-top: 132px;
}

.fm-accessories-group-heading {
	margin-bottom: 38px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.fm-accessories-group-heading h2 {
	margin: 0 0 12px;
	color: #f5f5f5;
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 650;
	line-height: 1;
	letter-spacing: -0.02em;
}

.fm-accessories-group-heading p {
	margin: 0;
	color: #86868b;
	font-size: 17px;
	line-height: 1.5;
}

.fm-accessories-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.fm-accessories-product-card {
	min-width: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	color: #f5f5f5;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 30px;
	background: #000;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.fm-accessories-product-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 6 / 7;
	background: #000;
}

.fm-accessories-product-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fm-accessories-product-card:hover .fm-accessories-product-media img {
	transform: scale(1.025);
}

.fm-accessories-product-copy {
	min-height: 142px;
	padding: 18px 24px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.fm-accessories-product-copy > p {
	margin: 0 0 9px;
	color: var(--fm-blue);
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.02em;
}

.fm-accessories-product-copy h3 {
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(18px, 1.35vw, 22px);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -0.018em;
}

.fm-accessories-product-copy > span {
	margin-top: 9px;
	margin-bottom: 16px;
	display: block;
	color: #a1a1a6;
	font-size: 13px;
	line-height: 1.45;
}

.fm-accessories-buy {
	min-height: 34px;
	padding: 0 16px;
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: 1px solid var(--fm-blue);
	border-radius: 999px;
	background: var(--fm-blue);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.fm-accessories-actions {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fm-accessories-buy:hover,
.fm-accessories-buy:focus-visible {
	color: #fff;
	border-color: var(--fm-blue-hover);
	background: var(--fm-blue-hover);
}

@media (max-width: 1100px) {
	.fm-accessories-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.fm-accessories-shell {
		width: min(calc(100% - 32px), 1480px);
	}

	.fm-accessories-hero {
		min-height: 480px;
		padding: 92px 0 58px;
	}

	.fm-accessories-group,
	.fm-accessories-group + .fm-accessories-group {
		padding-top: 92px;
	}

	.fm-accessories-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.fm-accessories-product-card {
		border-radius: 24px;
	}

	.fm-accessories-product-copy {
		min-height: 136px;
		padding: 17px 20px 22px;
	}
}

@media (max-width: 520px) {
	.fm-accessories-hero h1 {
		font-size: clamp(64px, 24vw, 96px);
	}

	.fm-accessories-group-heading {
		align-items: flex-start;
	}

	.fm-accessories-product-grid {
		grid-template-columns: 1fr;
	}

	.fm-accessories-product-copy {
		min-height: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fm-accessories-nav a,
	.fm-accessories-product-media img {
		transition: none;
	}
}

/* ALPHA product detail. Kept inside .fm-product-page so the homepage and shop stay unchanged. */
.fm-product-page {
	--fm-product-blue: #11a9e2;
	margin: 0;
	padding: 0;
	background: #000;
	color: #f5f5f7;
	overflow: hidden;
}

.fm-site-header + .fm-product-page.fm-product-alpha {
	margin-top: 0;
	padding-top: 0;
}

.fm-product-page .fm-optical-title {
	display: inline-grid;
	grid-template-columns: 1fr 0;
	align-items: baseline;
}

.fm-product-page .fm-optical-title-punctuation {
	width: 0;
	white-space: nowrap;
}

.fm-product-page .fm-optical-title--multiline {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.fm-product-page .fm-optical-title-line {
	position: relative;
	display: inline-grid;
	grid-template-columns: 1fr 0;
	align-items: baseline;
}

.fm-product-local-nav {
	position: sticky;
	top: 44px;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	padding: 0 5vw;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.82);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.fm-product-local-nav a {
	color: #f5f5f7;
	text-decoration: none;
}

.fm-product-local-name {
	font-size: 15px;
	font-weight: 650;
	letter-spacing: 0.08em;
}

.fm-product-local-links {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 30px);
	font-size: 12px;
}

.fm-product-local-links .fm-product-local-buy {
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--fm-product-blue);
	color: #fff;
	line-height: 1.2;
}

.fm-product-alpha .fm-product-local-nav {
	height: 44px;
	min-height: 44px;
	margin: 0;
	padding-right: max(18px, calc((100vw - 1440px) / 2 + 18px));
	padding-left: max(18px, calc((100vw - 1440px) / 2 + 18px));
}

.fm-product-hero {
	position: relative;
	display: grid;
	place-items: start center;
	min-height: calc(100svh - 92px);
	overflow: hidden;
	background: #000;
}

.fm-product-hero-copy {
	position: relative;
	z-index: 2;
	width: min(920px, 92vw);
	padding-top: clamp(62px, 8vh, 112px);
	text-align: center;
}

.fm-product-hero-logo {
	display: block;
	width: min(400px, 80vw);
	height: auto;
	margin: 0 auto clamp(22px, 2.4vw, 36px);
	object-fit: contain;
}

.fm-product-eyebrow {
	margin: 0;
	font-size: clamp(26px, 3.1vw, 48px);
	font-weight: 700;
	letter-spacing: 0.42em;
	text-indent: 0.42em;
}

.fm-product-subtitle {
	margin: 11px auto 20px;
	color: #b5b5ba;
	font-size: clamp(12px, 1vw, 15px);
	letter-spacing: 0.55em;
	text-indent: 0.55em;
}

.fm-product-hero h1 {
	margin: 0;
	font-size: clamp(38px, 5.2vw, 78px);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.fm-product-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.fm-product-purchase {
	position: relative;
	z-index: 3;
	display: grid;
	justify-items: center;
}

.fm-product-alpha .fm-product-purchase {
	position: absolute;
	bottom: clamp(30px, 4vw, 64px);
	left: 50%;
	transform: translateX(-50%);
}

.fm-product-page .button-primary,
.fm-product-page .button-secondary,
.fm-product-page .button-tertiary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 21px;
	border: 1px solid var(--fm-product-blue);
	border-radius: 999px;
	font-size: 15px;
	text-decoration: none;
}

.fm-product-page .button-primary {
	background: var(--fm-product-blue);
	color: #fff;
}

.fm-product-page .button-secondary {
	background: transparent;
	color: var(--fm-product-blue);
}

.fm-product-page .button-tertiary {
	border-color: rgba(245, 245, 247, 0.24);
	background: rgba(0, 0, 0, 0.24);
	color: #f5f5f7;
}

.fm-product-price {
	margin: 15px 0 0;
	color: #b5b5ba;
	font-size: 13px;
}

.fm-product-hero-media {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 66%;
	object-fit: contain;
	object-position: center bottom;
}

.fm-product-highlights {
	padding: clamp(82px, 10vw, 150px) 0 clamp(72px, 9vw, 130px);
	background: #111113;
}

.fm-product-section-heading {
	width: min(1280px, 90vw);
	margin: 0 auto clamp(34px, 5vw, 70px);
}

.fm-product-section-heading h2 {
	margin: 0;
	font-size: clamp(44px, 6.2vw, 92px);
	line-height: 1;
	letter-spacing: -0.02em;
}

.fm-product-carousel-track {
	display: flex;
	gap: clamp(14px, 1.5vw, 24px);
	overflow-x: auto;
	padding: 0 max(5vw, calc((100vw - 1280px) / 2));
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.fm-product-carousel-track::-webkit-scrollbar {
	display: none;
}

.fm-product-highlight-card {
	position: relative;
	flex: 0 0 clamp(300px, 31vw, 470px);
	aspect-ratio: 470 / 550;
	overflow: hidden;
	border-radius: clamp(18px, 2vw, 30px);
	background: #000;
	scroll-snap-align: center;
	cursor: pointer;
}

.fm-product-highlight-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fm-product-highlight-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 55%, rgba(0,0,0,.12) 100%);
}

.fm-product-highlight-copy {
	position: relative;
	z-index: 1;
	padding: clamp(28px, 3vw, 48px) 8%;
	text-align: center;
}

.fm-product-highlight-kicker {
	margin: 0 0 17px;
	color: var(--fm-product-blue);
	font-size: clamp(16px, 1.5vw, 23px);
	font-weight: 650;
}

.fm-product-highlight-copy h3 {
	margin: 0;
	font-size: clamp(25px, 2.4vw, 38px);
	line-height: 1.18;
}

.fm-product-highlight-desc {
	margin: 18px 0 0;
	color: #96969b;
	font-size: clamp(15px, 1.4vw, 21px);
	font-weight: 600;
}

.fm-product-carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.fm-product-carousel-arrow,
.fm-product-carousel-dots {
	border: 0;
	border-radius: 999px;
	background: #2d2d30;
}

.fm-product-carousel-arrow {
	width: 42px;
	height: 42px;
	color: #f5f5f7;
	font-size: 29px;
	cursor: pointer;
}

.fm-product-carousel-dots {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 0 15px;
}

.fm-product-carousel-dots button {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #8e8e93;
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.fm-product-carousel-dots button.is-active {
	width: 28px;
	background: #f5f5f7;
}

.fm-product-stories {
	background: #000;
}

.fm-product-story {
	display: grid;
	justify-items: center;
	min-height: 100svh;
	padding: clamp(88px, 10vw, 150px) 5vw 0;
	overflow: hidden;
	text-align: center;
}

.fm-product-story-copy {
	position: relative;
	z-index: 2;
	width: min(1100px, 92vw);
}

.fm-product-story-copy h2 {
	margin: 0;
	font-size: clamp(42px, 5.4vw, 82px);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.fm-product-story-copy p {
	max-width: 920px;
	margin: 22px auto 0;
	color: #99999e;
	font-size: clamp(16px, 1.45vw, 22px);
	line-height: 1.65;
}

.fm-product-story-media {
	align-self: end;
	width: min(1280px, 100vw);
	margin-top: 48px;
}

.fm-product-story-media img,
.fm-product-story-media video {
	display: block;
	width: 100%;
	max-height: 72svh;
	object-fit: contain;
}

.fm-product-alpha .fm-product-story {
	min-height: auto;
	padding-top: clamp(68px, 7vw, 104px);
}

.fm-product-alpha .fm-product-story-media {
	margin-top: clamp(24px, 3vw, 38px);
}

.fm-product-alpha .fm-product-story-media video {
	max-height: 64svh;
}

.fm-product-alpha .fm-product-story:last-child {
	padding-bottom: clamp(72px, 9vw, 128px);
}

.fm-product-alpha .fm-product-highlight-copy {
	min-height: 33.333%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	padding-top: clamp(24px, 2.4vw, 36px);
	padding-bottom: clamp(20px, 2vw, 30px);
}

.fm-product-alpha .fm-product-highlight-kicker {
	margin-bottom: 10px;
	font-size: clamp(14px, 1.15vw, 18px);
}

.fm-product-alpha .fm-product-highlight-copy h3 {
	font-size: clamp(22px, 1.9vw, 31px);
	line-height: 1.15;
}

.fm-product-alpha .fm-product-highlight-desc {
	margin-top: 10px;
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.35;
}

.fm-product-package {
	padding: clamp(82px, 9vw, 140px) 5vw;
	background: #f5f5f7;
	color: #1d1d1f;
}

.fm-product-package .fm-product-section-heading {
	text-align: center;
}

.fm-product-package .fm-product-section-heading p {
	margin: 18px 0 0;
	font-size: clamp(20px, 2vw, 30px);
}

.fm-product-package-list {
	width: min(1080px, 92vw);
	margin: 0 auto;
}

.fm-product-package-item {
	display: grid;
	grid-template-columns: 140px 1fr auto;
	align-items: center;
	min-height: 118px;
	border-bottom: 1px solid #d2d2d7;
	font-size: clamp(16px, 1.5vw, 22px);
}

.fm-product-package-thumb {
	display: grid;
	place-items: center;
	height: 104px;
}

.fm-product-package-thumb img {
	max-width: 118px;
	max-height: 92px;
	object-fit: contain;
}

.fm-product-package-item span {
	padding-left: 20px;
}

.fm-product-alpha .fm-product-package-item {
	column-gap: clamp(24px, 3vw, 42px);
}

/* ALPHA technical specifications and product comparison. */
.fm-product-alpha .fm-product-specs {
	scroll-margin-top: 112px;
	padding: clamp(96px, 10vw, 144px) 24px;
	background: #1d1d1f;
	color: #f5f5f5;
}

.fm-product-alpha .fm-product-specs-inner {
	width: min(100%, 1100px);
	margin: 0 auto;
}

.fm-product-alpha .fm-product-specs h2 {
	margin: 0 0 clamp(52px, 7vw, 80px);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-align: center;
}

.fm-product-alpha .fm-product-specs-group {
	display: grid;
	grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 84px);
	padding: clamp(40px, 5vw, 58px) 0;
	border-top: 1px solid rgba(245, 245, 245, 0.28);
}

.fm-product-alpha .fm-product-specs-group:last-child {
	padding-bottom: 0;
}

.fm-product-alpha .fm-product-specs h3 {
	margin: 0;
	font-size: clamp(25px, 2.6vw, 34px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.fm-product-alpha .fm-product-specs-list {
	min-width: 0;
	margin: 0;
}

.fm-product-alpha .fm-product-specs-row {
	display: grid;
	grid-template-columns: minmax(116px, 150px) minmax(0, 1fr);
	gap: 22px;
	margin: 0 0 14px;
	font-size: clamp(16px, 1.55vw, 20px);
	line-height: 1.48;
}

.fm-product-alpha .fm-product-specs-row:last-child {
	margin-bottom: 0;
}

.fm-product-alpha .fm-product-specs dt,
.fm-product-alpha .fm-product-specs dd {
	margin: 0;
}

.fm-product-alpha .fm-product-specs dt {
	color: #f5f5f5;
	font-weight: 500;
}

.fm-product-alpha .fm-product-specs dd {
	color: #a1a1a6;
}

.fm-product-alpha .fm-product-specs-dimension-body {
	min-width: 0;
}

.fm-product-alpha .fm-product-specs-figure {
	position: relative;
	width: min(620px, 100%);
	height: 260px;
	margin: -18px auto 30px;
}

.fm-product-alpha .fm-product-specs-figure img {
	position: absolute;
	top: 60%;
	left: 50%;
	display: block;
	width: auto;
	max-width: 72%;
	height: 280px;
	object-fit: contain;
	transform: translate(-50%, -50%);
}

.fm-product-alpha .fm-product-specs-figure figcaption {
	position: absolute;
	inset: 0;
	margin: 0;
	color: #a1a1a6;
	font-size: 15px;
	line-height: 1.35;
	pointer-events: none;
}

.fm-product-alpha .fm-product-specs-dimension-label {
	position: absolute;
	display: flex;
	flex-direction: column;
	white-space: nowrap;
}

.fm-product-alpha .fm-product-specs-dimension-label strong {
	font-weight: 400;
}

.fm-product-alpha .fm-product-specs-figure .is-1 {
	top: 0;
	left: 31%;
}

.fm-product-alpha .fm-product-specs-figure .is-2 {
	top: 0%;
	left: 55%;
}

.fm-product-alpha .fm-product-specs-figure .is-3 {
	top: 38%;
	right: 6%;
}

.fm-product-alpha .fm-product-specs-figure .is-4 {
	top: 65%;
	left: 15%;
}

.fm-product-alpha .fm-product-specs-figure .is-5 {
	bottom: -5%;
	left: 1%;
}

.fm-product-alpha .fm-product-specs-figure .is-6 {
	bottom: -5%;
	right: -3%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='pro4'] .is-1 {
	top: 10%;
	right: 27%;
	left: auto;
}

.fm-product-alpha .fm-product-specs-figure[data-product='pro4'] .is-2 {
	top: 30%;
	left: 30%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='pro4'] .is-3 {
	top: 80%;
	right: auto;
	left: 9%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='pro4'] .is-4 {
	top: 51%;
	right: 4%;
	left: auto;
}

.fm-product-alpha .fm-product-specs-figure[data-product='pro4'] .is-5 {
	top: 70%;
	right: 5%;
	bottom: auto;
	left: auto;
}

.fm-product-alpha .fm-product-specs-figure[data-product='pro4'] .is-6 {
	right: auto;
	bottom: -12%;
	left: 44%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] img {
	top: 60%;
	height: 300px;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] .is-1 {
	top: 14%;
	left: 38%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] .is-2 {
	top: 20%;
	left: 58%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] .is-3 {
	top: 53%;
	right: 14%;
	left: auto;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] .is-4 {
	top: 64%;
	left: 33%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] .is-5 {
	right: auto;
	bottom: -5%;
	left: 23%;
}

.fm-product-alpha .fm-product-specs-figure[data-product='gigolo'] .is-6 {
	right: 7%;
	bottom: -5%;
	left: auto;
}

.fm-product-alpha .fm-product-specs-figure[data-product='tremblr'] img {
	top: 48%;
	left: 43%;
	max-width: 68%;
	height: 220px;
}

.fm-product-alpha .fm-product-specs-figure[data-product='tremblr'] .is-1 {
	top: auto;
	bottom: -3%;
	left: 43%;
	text-align: center;
	transform: translateX(-50%);
}

.fm-product-alpha .fm-product-specs-figure[data-product='tremblr'] .is-2 {
	top: 16%;
	right: 5%;
	left: auto;
}

.fm-product-alpha .fm-product-specs-figure[data-product='tremblr'] .is-3 {
	top: 54%;
	right: 5%;
	left: auto;
}

.fm-product-alpha .fm-product-specs-weight-list {
	width: 100%;
	margin: 0;
}

.fm-product-alpha .fm-product-specs-mobile-dimensions {
	display: none;
}

.fm-product-alpha .fm-product-compare {
	scroll-margin-top: 112px;
	padding: clamp(96px, 10vw, 150px) 24px clamp(112px, 11vw, 160px);
	background: #000;
	color: #f5f5f5;
}

.fm-product-alpha .fm-product-compare-heading {
	max-width: 980px;
	margin: 0 auto 58px;
	text-align: center;
}

.fm-product-alpha .fm-product-compare-heading h2 {
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(56px, 4.8vw, 72px);
	font-weight: 680;
	line-height: 1.04;
	letter-spacing: 0;
	white-space: nowrap;
}

.fm-product-alpha .fm-product-compare-heading p {
	max-width: 680px;
	margin: 24px auto 0;
	color: #a6a6a6;
	font-size: clamp(17px, 1.7vw, 21px);
	line-height: 1.55;
}

.fm-product-alpha .fm-product-compare-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.fm-product-alpha .fm-product-compare-grid {
	display: grid;
	grid-template-columns: 16% repeat(3, 28%);
	width: min(1160px, 100%);
	min-width: 920px;
	margin: 0 auto;
}

.fm-product-alpha .fm-product-compare-product {
	position: relative;
	padding: 0 16px 12px;
	text-align: center;
}

.fm-product-alpha .fm-product-compare-image-wrap {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	height: 224px;
}

.fm-product-alpha .fm-product-compare-image-wrap img {
	display: block;
	width: min(100%, 250px);
	height: 190px;
	object-fit: contain;
	object-position: center bottom;
}

.fm-product-alpha .fm-product-compare-product h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #f5f5f5;
	font-size: 26px;
	font-weight: 650;
	line-height: 1.12;
	letter-spacing: 0;
}

.fm-product-alpha .fm-product-compare-rows {
	grid-column: 1 / -1;
}

.fm-product-alpha .fm-product-compare-row {
	display: grid;
	grid-template-columns: 16% repeat(3, 28%);
	min-height: 56px;
}

.fm-product-alpha .fm-product-compare-label {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 8px 12px 8px 8px;
	color: #6f6f73;
	font-size: 15px;
	line-height: 1.35;
	letter-spacing: 0;
	text-align: right;
}

.fm-product-alpha .fm-product-compare-label span {
	display: inline-block;
}

.fm-product-alpha .fm-product-compare-value {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	color: #f5f5f5;
	font-size: 15px;
	line-height: 1.38;
	text-align: center;
}

.fm-product-alpha .fm-product-compare-actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
	min-height: 66px;
	margin-top: 16px;
}

.fm-product-alpha .fm-product-compare-current {
	color: #a6a6a6;
	font-size: 13px;
	line-height: 28px;
}

.fm-product-alpha .fm-product-compare-learn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	height: 28px;
	padding: 0 14px;
	border-radius: 999px;
	background: #12a0dc;
	color: #f5f5f5;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
}

.fm-product-alpha .fm-product-compare-buy {
	color: #12a0dc;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
}

.fm-product-alpha .fm-product-compare-value span {
	display: block;
}

.fm-product-alpha .fm-product-compare-value span + span {
	margin-top: 4px;
}

.fm-product-alpha .fm-product-compare-row-dimensions {
	min-height: 84px;
}

.fm-product-alpha .fm-product-compare-dimensions {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.45;
}

.fm-product-alpha .fm-product-compare-dimensions span {
	display: block;
	width: 100%;
	margin-top: 0;
	white-space: nowrap;
}

.fm-product-faq {
	padding: clamp(90px, 10vw, 150px) 5vw;
	background: #000;
}

.fm-product-section-label {
	margin: 0 0 20px;
	color: #8e8e93;
	font-size: 13px;
	letter-spacing: .28em;
}

.fm-product-faq-list {
	width: min(1280px, 90vw);
	margin: 0 auto;
}

.fm-product-faq-list details {
	border-top: 1px solid #2b2b2e;
}

.fm-product-faq-list details:last-child {
	border-bottom: 1px solid #2b2b2e;
}

.fm-product-faq-list summary {
	padding: 27px 4px;
	font-size: clamp(18px, 1.65vw, 25px);
	font-weight: 650;
	cursor: pointer;
}

.fm-product-faq-answer {
	max-width: 980px;
	padding: 0 4px 30px;
	color: #a1a1a6;
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.7;
}

@media (max-width: 780px) {
	.fm-product-local-nav {
		top: 44px;
		padding: 0 18px;
	}

	.fm-product-alpha .fm-product-local-nav {
		height: 40px;
		min-height: 40px;
		padding: 0 14px;
	}

	.fm-product-alpha .fm-product-local-name {
		font-size: 12px;
		letter-spacing: 0.06em;
	}

	.fm-product-alpha .fm-product-local-links {
		gap: 8px;
		font-size: 12px;
	}

	.fm-product-alpha .fm-product-local-links .fm-product-local-buy {
		padding: 4px 10px;
	}

	.fm-product-local-links a:not(.fm-product-local-buy) {
		display: none;
	}

	.fm-product-hero {
		min-height: 760px;
	}

	.fm-product-alpha .fm-product-hero {
		display: flex;
		place-items: initial;
		flex-direction: column;
		min-height: 0;
	}

	.fm-product-hero-copy {
		padding-top: 58px;
	}

	.fm-product-alpha .fm-product-hero-copy {
		width: 100%;
		padding: 32px 18px 26px;
	}

	.fm-product-alpha .fm-product-hero-logo {
		width: min(220px, 62vw);
		margin-bottom: 14px;
	}

	.fm-product-alpha .fm-product-hero h1 {
		font-size: clamp(25px, 7.5vw, 32px);
		line-height: 1.15;
		letter-spacing: -0.01em;
	}

	.fm-product-hero-media {
		height: 58%;
	}

	.fm-product-alpha .fm-product-hero-media {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		object-position: center;
	}

	.fm-product-alpha .fm-product-purchase {
		bottom: 14px;
		width: 100%;
	}

	.fm-product-alpha .fm-product-actions {
		gap: 8px;
		margin-top: 0;
	}

	.fm-product-alpha .button-primary,
	.fm-product-alpha .button-secondary {
		min-height: 32px;
		padding: 0 14px;
		font-size: 12px;
	}

	.fm-product-alpha .fm-product-price {
		margin-top: 8px;
		font-size: 10px;
	}

	.fm-product-highlights {
		padding-top: 72px;
	}

	.fm-product-alpha .fm-product-highlights {
		padding: 50px 0 56px;
	}

	.fm-product-alpha .fm-product-section-heading {
		width: calc(100% - 36px);
		margin-bottom: 26px;
	}

	.fm-product-alpha .fm-product-section-heading h2 {
		font-size: clamp(29px, 8vw, 34px);
		line-height: 1.06;
		letter-spacing: -0.02em;
	}

	.fm-product-highlight-card {
		flex-basis: min(82vw, 390px);
	}

	.fm-product-alpha .fm-product-highlight-card {
		flex-basis: min(84vw, 360px);
	}

	.fm-product-alpha .fm-product-highlight-copy {
		min-height: 33.333%;
		padding: 18px 16px 16px;
	}

	.fm-product-alpha .fm-product-highlight-kicker {
		margin-bottom: 7px;
		font-size: 12px;
	}

	.fm-product-alpha .fm-product-highlight-copy h3 {
		font-size: clamp(19px, 5.6vw, 23px);
		line-height: 1.14;
	}

	.fm-product-alpha .fm-product-highlight-desc {
		margin-top: 7px;
		font-size: 13px;
		line-height: 1.35;
	}

	.fm-product-story {
		min-height: auto;
		padding-top: 88px;
	}

	.fm-product-story-media {
		margin-top: 36px;
	}

	.fm-product-alpha .fm-product-story {
		padding: 48px 0 0;
	}

	.fm-product-alpha .fm-product-story-copy {
		width: 100%;
		padding: 0 18px;
	}

	.fm-product-alpha .fm-product-story-copy h2 {
		max-width: 11em;
		margin: 0 auto;
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.18;
		letter-spacing: -0.015em;
		text-wrap: balance;
	}

	.fm-product-alpha .fm-product-story-copy p {
		width: min(88vw, 34em);
		margin-top: 14px;
		font-size: 14px;
		line-height: 1.6;
		text-align: center;
	}

	.fm-product-alpha .fm-product-story-media {
		width: 100vw;
		margin-top: 22px;
	}

	.fm-product-alpha .fm-product-story-media img,
	.fm-product-alpha .fm-product-story-media video {
		width: 100%;
		max-height: none;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}

	.fm-product-alpha .fm-product-story:last-child {
		padding-bottom: 64px;
	}

	.fm-product-alpha .fm-product-package {
		padding: 58px 5vw 64px;
	}

	.fm-product-alpha .fm-product-package .fm-product-section-heading p {
		margin-top: 10px;
		font-size: 16px;
	}

	.fm-product-alpha .fm-product-faq {
		padding: 48px 5vw 78px;
	}

	.fm-product-alpha .fm-product-faq-list {
		width: 100%;
	}

	.fm-product-alpha .fm-product-faq-list summary {
		padding: 21px 2px;
		font-size: 16px;
		line-height: 1.4;
	}

	.fm-product-alpha .fm-product-faq-answer {
		padding: 0 2px 24px;
		font-size: 14px;
		line-height: 1.65;
	}

	.fm-product-package-item {
		grid-template-columns: 82px 1fr auto;
		min-height: 90px;
		font-size: 14px;
	}

	.fm-product-package-thumb {
		height: 80px;
	}

	.fm-product-package-thumb img {
		max-width: 72px;
		max-height: 68px;
	}

	.fm-product-alpha .fm-product-package-item {
		grid-template-columns: 58px minmax(0, 1fr) auto;
		column-gap: 10px;
		min-height: 70px;
		font-size: 13px;
		line-height: 1.35;
	}

	.fm-product-alpha .fm-product-package-item p {
		margin: 0;
	}

	.fm-product-alpha .fm-product-package-item span {
		padding-left: 6px;
		font-size: 12px;
	}

	.fm-product-alpha .fm-product-package-thumb {
		height: 64px;
	}

	.fm-product-alpha .fm-product-package-thumb img {
		max-width: 50px;
		max-height: 52px;
	}

	.fm-product-alpha .fm-product-specs {
		scroll-margin-top: 88px;
		padding: 64px 20px 72px;
	}

	.fm-product-alpha .fm-product-specs h2 {
		margin-bottom: 36px;
		font-size: 32px;
		font-weight: 500;
	}

	.fm-product-alpha .fm-product-specs-group {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 28px 0;
	}

	.fm-product-alpha .fm-product-specs h3 {
		font-size: 20px;
		line-height: 1.25;
	}

	.fm-product-alpha .fm-product-specs-row {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 8px;
		margin-bottom: 8px;
		font-size: 13px;
		line-height: 1.45;
	}

	.fm-product-alpha .fm-product-specs-figure {
		display: block;
		width: min(320px, 100%);
		height: 170px;
		margin: 0 auto 14px;
	}

	.fm-product-alpha .fm-product-specs-figure img {
		top: 50%;
		max-width: 90%;
		height: 160px;
	}

	.fm-product-alpha .fm-product-specs-figure figcaption {
		display: none;
	}

	.fm-product-alpha .fm-product-specs-mobile-dimensions {
		display: block;
		margin: 0 0 8px;
	}

	.fm-product-alpha .fm-product-compare {
		scroll-margin-top: 88px;
		display: block;
		padding: 64px 8px 52px;
	}

	.fm-product-alpha .fm-product-compare-heading {
		position: static;
		width: auto;
		height: auto;
		margin: 0 auto 30px;
		padding: 0 10px;
		overflow: visible;
		clip: auto;
		clip-path: none;
		white-space: normal;
	}

	.fm-product-alpha .fm-product-compare-heading h2 {
		font-size: clamp(27px, 8vw, 32px);
		line-height: 1.08;
		white-space: normal;
	}

	.fm-product-alpha .fm-product-compare-heading-line {
		display: block;
	}

	.fm-product-alpha .fm-product-compare-heading p {
		margin-top: 12px;
		font-size: 12px;
		line-height: 1.45;
	}

	.fm-product-alpha .fm-product-compare-scroll {
		width: 100%;
		overflow: visible;
		margin: 0;
		padding: 0;
	}

	.fm-product-alpha .fm-product-compare-grid {
		grid-template-columns: 18% repeat(3, 27.333%);
		width: 100%;
		min-width: 0;
		margin: 0;
	}

	.fm-product-alpha .fm-product-compare-product {
		padding: 0 3px 8px;
	}

	.fm-product-alpha .fm-product-compare-image-wrap {
		height: 88px;
	}

	.fm-product-alpha .fm-product-compare-image-wrap img {
		width: min(100%, 82px);
		height: 76px;
	}

	.fm-product-alpha .fm-product-compare-product h3 {
		min-height: 27px;
		font-size: clamp(10px, 3vw, 12px);
		line-height: 1.15;
	}

	.fm-product-alpha .fm-product-compare-actions {
		gap: 5px;
		min-height: 42px;
		margin-top: 6px;
	}

	.fm-product-alpha .fm-product-compare-current {
		font-size: 8px;
		line-height: 22px;
	}

	.fm-product-alpha .fm-product-compare-learn {
		min-width: 48px;
		height: 22px;
		padding: 0 7px;
		font-size: 8px;
	}

	.fm-product-alpha .fm-product-compare-buy {
		font-size: 8px;
	}

	.fm-product-alpha .fm-product-compare-row {
		grid-template-columns: 18% repeat(3, 27.333%);
		min-height: 38px;
	}

	.fm-product-alpha .fm-product-compare-label {
		padding: 5px 5px 5px 0;
		font-size: clamp(8px, 2.4vw, 10px);
		line-height: 1.3;
	}

	.fm-product-alpha .fm-product-compare-value {
		padding: 5px 2px;
		font-size: clamp(8px, 2.25vw, 9.5px);
		line-height: 1.35;
		overflow-wrap: anywhere;
	}

	.fm-product-alpha .fm-product-compare-row-dimensions {
		min-height: 56px;
	}

	.fm-product-alpha .fm-product-compare-dimensions span {
		white-space: normal;
	}
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--fm-surface);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fm-bg);
  color: var(--fm-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.admin-bar .fm-site-header {
  top: 32px;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--fm-blue);
  outline-offset: 4px;
}

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

.fm-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 44px;
  background: rgba(22, 22, 24, 0.96);
  backdrop-filter: blur(20px);
}

.fm-header-inner {
  width: min(var(--fm-content), calc(100vw - 48px));
  height: 44px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.fm-brand,
.fm-custom-logo-link {
  min-width: 24px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--fm-text);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.fm-custom-logo-link img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 25px;
}

.fm-primary-nav > ul,
.fm-primary-nav .menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  list-style: none;
}

.fm-primary-nav a,
.fm-header-actions a,
.fm-language summary {
  color: var(--fm-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 44px;
  white-space: nowrap;
  opacity: 0.86;
  transition: opacity 160ms ease;
}

.fm-primary-nav a:hover,
.fm-header-actions a:hover,
.fm-language summary:hover {
  opacity: 1;
}

.fm-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.fm-account-icon,
.fm-cart-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  color: var(--fm-text);
}

.fm-account-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.fm-account-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 12px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.fm-cart-icon {
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.fm-cart-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -5px;
  width: 7px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.fm-cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--fm-blue);
  color: #000;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
}

.fm-language {
  position: relative;
}

.fm-language summary {
  cursor: pointer;
  list-style: none;
}

.fm-language summary::-webkit-details-marker {
  display: none;
}

.fm-language-list {
  position: absolute;
  top: 3px;
  right: auto;
  left: calc(100% + 8px);
  width: 138px;
  margin: 0;
  padding: 5px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--fm-line);
  border-radius: 11px;
  background: rgba(28, 28, 30, 0.98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
  list-style: none;
}

.fm-language-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 8px;
  height: 100%;
}

.fm-language-list a {
  display: block;
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--fm-muted);
  font-size: 11px;
  line-height: 1.2;
}

.fm-language-list a:hover,
.fm-language-list .wpml-ls-current-language a {
  background: rgba(245, 245, 245, 0.08);
  color: var(--fm-text);
}

.fm-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fm-text);
}

.fm-menu-toggle > span:not(.screen-reader-text) {
  width: 18px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.fm-menu-toggle > span:not(.screen-reader-text):first-child {
  transform: translate(-50%, -4px);
}

.fm-menu-toggle > span:not(.screen-reader-text):nth-child(2) {
  transform: translate(-50%, 4px);
}

.fm-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.fm-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.fm-main {
  min-height: 60vh;
  background: var(--fm-bg);
}

.fm-content,
.fm-archive,
.fm-woocommerce-shell {
  width: min(var(--fm-content), calc(100vw - 48px));
  margin: 0 auto;
  padding: 96px 0 120px;
}

.fm-wide {
  width: min(var(--fm-wide), calc(100vw - 48px));
  margin-inline: auto;
}

.fm-page-header {
  max-width: 800px;
  margin-bottom: 54px;
}

.fm-page-header h1,
.fm-entry-title {
  margin: 0;
  color: var(--fm-text);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.fm-entry-content {
  color: var(--fm-text);
  font-size: 17px;
  line-height: 1.75;
}

.fm-entry-content > * {
  max-width: 800px;
}

.fm-entry-content > .alignwide {
  width: min(var(--fm-wide), calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.fm-entry-content h2,
.fm-entry-content h3 {
  color: var(--fm-text);
  line-height: 1.12;
}

.fm-entry-content p,
.fm-entry-content li {
  color: var(--fm-muted);
}

.fm-entry-content a {
  color: var(--fm-blue);
}

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

.fm-card {
  padding: 28px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: var(--fm-radius);
  background: var(--fm-panel);
}

.fm-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.fm-card p {
  margin: 0;
  color: var(--fm-muted);
  font-size: 14px;
  line-height: 1.6;
}

.fm-front-placeholder {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.fm-front-placeholder h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.fm-front-placeholder p {
  margin: 26px 0 0;
  color: var(--fm-muted);
  font-size: 18px;
}

.fm-site-footer {
  padding: 0 0 36px;
  background: var(--fm-surface);
}

.fm-service-row,
.fm-footer-grid,
.fm-footer-bottom {
  width: min(var(--fm-content), calc(100vw - 48px));
  margin-inline: auto;
}

.fm-service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 42px 0 36px;
  text-align: center;
}

.fm-service-item {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.fm-service-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  border: 1px solid rgba(245, 245, 245, 0.72);
  border-radius: 17px;
  color: var(--fm-text);
  font-size: 19px;
}

.fm-service-item strong {
  font-size: 14px;
}

.fm-service-item p {
  margin: 0;
  color: var(--fm-muted);
  font-size: 12px;
  line-height: 1.55;
}

.fm-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 72px;
  padding: 32px 0 34px;
  border-top: 1px solid var(--fm-line);
  border-bottom: 1px solid var(--fm-line);
}

.fm-footer-column h2 {
  margin: 0 0 14px;
  font-size: 13px;
}

.fm-footer-column ul,
.fm-footer-column .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fm-footer-column a {
  display: block;
  margin-bottom: 10px;
  color: var(--fm-muted);
  font-size: 12px;
}

.fm-footer-column a:hover {
  color: var(--fm-text);
}

.fm-footer-brand {
  display: block;
  margin: 0 0 18px;
  color: var(--fm-text);
  font-size: 20px;
  font-weight: 600;
}

.fm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  color: var(--fm-muted);
  font-size: 11px;
}

.fm-footer-bottom p {
  margin: 0;
}

.fm-button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--fm-blue);
  border-radius: 999px;
  background: var(--fm-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 160ms ease, border-color 160ms ease;
}

.fm-button:hover,
.wp-element-button:hover {
  border-color: var(--fm-blue-hover);
  background: var(--fm-blue-hover);
}

@media (max-width: 900px) {
  body.admin-bar .fm-site-header {
    top: 46px;
  }

  .fm-header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .fm-menu-toggle {
    display: block;
  }

  .fm-primary-nav {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 24px 30px;
    background: rgba(22, 22, 24, 0.99);
  }

  body.admin-bar .fm-primary-nav {
    top: 90px;
  }

  .fm-primary-nav[data-open="true"] {
    display: block;
  }

  .fm-primary-nav > ul,
  .fm-primary-nav .menu {
    display: grid;
    gap: 0;
  }

  .fm-primary-nav a {
    justify-content: flex-start;
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    font-size: 15px;
  }

  .fm-header-actions .fm-account-link {
    display: none;
  }

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

  .fm-footer-grid {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .fm-header-inner,
  .fm-content,
  .fm-archive,
  .fm-woocommerce-shell,
  .fm-service-row,
  .fm-footer-grid,
  .fm-footer-bottom {
    width: min(100% - 32px, var(--fm-content));
  }

  .fm-content,
  .fm-archive,
  .fm-woocommerce-shell {
    padding: 64px 0 84px;
  }

  .fm-language summary {
    max-width: 42px;
    overflow: hidden;
  }

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

  .fm-service-row {
    gap: 18px;
  }

  .fm-service-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .fm-service-item p {
    font-size: 10px;
  }

  .fm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fm-home-hero-rays {
    display: none;
  }
}

/* F-Machine 0.2 homepage and shared chrome. */

.fm-site-header {
  background: rgba(22, 22, 24, 0.96);
}

.fm-header-inner {
  width: min(1000px, calc(100vw - 48px));
}

.fm-brand {
  width: 28px;
  min-width: 28px;
  padding: 0;
}

.fm-brand img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.fm-primary-nav > ul,
.fm-primary-nav .menu {
  gap: clamp(24px, 3.3vw, 48px);
}

/*
 * Keep the theme header independent from legacy Astra/Elementor menus.
 * Existing WordPress menu records remain untouched and can still be restored.
 */
.fm-site-header,
.fm-site-header .fm-header-inner {
  min-height: 44px;
  max-height: 44px;
}

.fm-site-header .fm-primary-nav,
.fm-site-header .fm-primary-nav > ul,
.fm-site-header .fm-primary-nav .menu {
  min-height: 44px;
  max-height: 44px;
}

.fm-site-header .fm-primary-nav > ul,
.fm-site-header .fm-primary-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fm-site-header .fm-primary-nav .menu > li {
  position: static;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.fm-site-header .fm-primary-nav .menu > li > a {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fm-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.fm-site-header .fm-primary-nav .sub-menu,
.fm-site-header .fm-primary-nav .children {
  display: none !important;
}

.fm-header-actions {
  gap: 16px;
}

.fm-language summary {
  width: 18px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
}

.fm-language-icon {
  width: 15px;
  height: 15px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fm-account-link,
.fm-cart-link {
  width: 18px;
  height: 44px;
  display: grid;
  place-items: center;
  line-height: 1;
}

.fm-account-icon,
.fm-cart-icon {
  width: 16px;
  height: 16px;
}

@media (min-width: 901px) {
  .fm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .fm-brand-wrap,
  .fm-primary-nav,
  .fm-site-header .fm-primary-nav .menu,
  .fm-site-header .fm-primary-nav .menu > li,
  .fm-header-actions {
    display: contents;
  }

  .fm-account-link,
  .fm-cart-link,
  .fm-language summary {
    align-self: center;
  }

  .fm-account-icon,
  .fm-cart-icon {
    width: 15px;
    height: 15px;
  }

  .fm-account-icon::before {
    top: 0;
    left: 5px;
    width: 4px;
    height: 4px;
    border-width: 1.25px;
  }

  .fm-account-icon::after {
    left: 2px;
    bottom: 0;
    width: 10px;
    height: 6px;
    border-width: 1.25px;
  }

  .fm-cart-icon {
    width: 13px;
    height: 13px;
    border-width: 1.25px;
  }

  .fm-cart-icon::before {
    top: -4px;
    left: 3px;
    width: 5px;
    height: 5px;
    border-width: 1.25px;
  }

  .fm-cart-count {
    top: -7px;
    right: -8px;
    min-width: 13px;
    height: 13px;
    padding: 0 2px;
    font-size: 8px;
  }

  .fm-language-icon {
    width: 15px;
    height: 15px;
  }
}

.fm-home {
  overflow: hidden;
  background: #000;
}

.fm-home-hero {
  height: 560px;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -8%, rgba(8, 112, 158, 0.2), transparent 60%),
    #000;
}

.fm-home-hero-rays,
.fm-home-hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fm-home-hero-rays {
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 600ms ease;
}

.fm-home-hero-rays.is-ready {
  opacity: 0.48;
}

.fm-home-hero-rays canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.fm-home-hero-vignette {
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(0, 0, 0, 0.14) 72%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.1) 62%, #000 100%);
}

.fm-home-hero-copy {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 24px;
  text-align: center;
}

.fm-home-hero-copy h1 {
  margin: 0;
  color: var(--fm-text);
  font-size: clamp(58px, 5.25vw, 82px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.02em;
}

.fm-home-mobile-title-break {
  display: none;
}

.fm-home-hero-copy p {
  margin: 34px 0 0;
  color: rgba(245, 245, 245, 0.88);
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.fm-home-hero-machines {
  width: min(2300px, 100%);
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(6px, 0.6vw, 14px);
  padding: 0 clamp(6px, 0.6vw, 14px);
}

.fm-home-hero-machines a {
  display: block;
  min-width: 0;
}

.fm-home-hero-machines img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 240ms ease, filter 240ms ease;
}

.fm-home-hero-machines a:hover img {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.fm-home-machine-grid {
  --fm-poster-height: 700px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px 0;
  background: #242426;
}

.fm-home-machine-card {
  height: var(--fm-poster-height);
  position: relative;
  overflow: hidden;
  background: #000;
}

.fm-home-machine-copy,
.fm-home-accessory-copy {
  position: absolute;
  z-index: 2;
  top: 62px;
  left: 50%;
  width: min(1080px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.fm-home-machine-logo-frame {
  --fm-home-machine-logo-height: 35px;
  width: min(440px, 72vw);
  height: var(--fm-home-machine-logo-height);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.fm-home-machine-pro4 .fm-home-machine-logo-frame {
	position: relative;
	overflow: visible;
}

.fm-home-machine-logo {
  width: auto !important;
  max-width: 100% !important;
  height: var(--fm-home-machine-logo-height) !important;
  max-height: var(--fm-home-machine-logo-height) !important;
  display: block;
  object-fit: contain;
}

.fm-home-machine-pro4 .fm-home-machine-logo {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto !important;
  height: 70px !important;
  max-height: 70px !important;
  transform: translateX(-50%);
}

.fm-home-label-row {
  width: 270px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.fm-home-label-row > span {
  width: 66.666%;
  height: 1px;
  display: block;
  background: rgba(245, 245, 245, 0.58);
}

.fm-home-label-row > span:first-child {
  justify-self: end;
}

.fm-home-label-row > span:last-child {
  justify-self: start;
}

.fm-home-label-row p {
  width: min(140px, 36vw);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(245, 245, 245, 0.76);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-indent: 0;
  white-space: nowrap;
}

.fm-home-label-row--latin {
  width: min(520px, calc(100vw - 48px));
}

.fm-home-label-row--latin p {
  width: auto;
  display: block;
  text-align: center;
  letter-spacing: 0.06em;
}

.fm-home-label-row--latin > span {
  width: 32px;
}

.fm-home-machine-copy h2,
.fm-home-accessory-copy h2 {
  margin: 26px 0 0;
  color: var(--fm-text);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.fm-optical-title {
  position: relative;
  display: inline-block;
}

.fm-optical-title-punctuation {
  position: absolute;
  left: 100%;
  top: 0;
}

.fm-home-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.fm-home-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--fm-blue);
  border-radius: 999px;
  color: var(--fm-text);
  font-size: 16px;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fm-home-button-primary {
  background: var(--fm-blue);
  color: #fff;
}

.fm-home-button-secondary {
  background: transparent;
  color: var(--fm-blue);
}

.fm-home-button:hover {
  border-color: var(--fm-blue-hover);
  background: var(--fm-blue-hover);
  color: #fff;
}

.fm-home-machine-product {
  width: 100%;
  height: calc(100% - 306px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.fm-home-accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 12px 12px;
  background: #242426;
}

.fm-home-accessory-card {
  height: clamp(460px, 43vw, 560px);
  position: relative;
  overflow: hidden;
  background: #000;
}

.fm-home-accessory-copy {
  top: 54px;
  width: calc(100% - 48px);
}

.fm-home-accessory-eyebrow {
  margin: 0;
  color: var(--fm-text);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.fm-home-accessory-copy .fm-home-label-row {
  margin-top: 8px;
}

.fm-home-accessory-copy h2 {
  margin-top: 22px;
  font-size: clamp(30px, 3.1vw, 48px);
}

.fm-home-accessory-copy .fm-home-actions {
  margin-top: 24px;
}

.fm-home-accessory-product {
  width: 100%;
  height: calc(100% - 292px);
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.fm-home-accessory-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 12px;
  background: #242426;
}

.fm-home-accessory-entry-grid a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 245, 245, 0.18);
  background: #050506;
  color: var(--fm-text);
  font-size: 22px;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease;
}

.fm-home-accessory-entry-grid a:hover {
  border-color: var(--fm-blue);
  color: var(--fm-blue);
}

.fm-site-footer {
  padding: 0 0 28px;
  background: #202023;
}

.fm-service-row,
.fm-footer-grid,
.fm-footer-bottom {
  width: min(1000px, calc(100vw - 48px));
}

.fm-service-row {
  padding: 42px 0 34px;
}

.fm-service-svg {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  fill: none;
  stroke: rgba(245, 245, 245, 0.9);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fm-footer-grid {
  padding: 32px 0 31px;
}

.fm-footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.fm-footer-column h2 {
  margin: 0 0 14px;
}

.fm-footer-brand-logo {
  width: 145px;
  height: 40px;
  display: block;
  margin: -9px 0 11px;
  object-fit: contain;
}

.fm-footer-bottom {
  --fm-footer-line-gap: 10px;
  --fm-social-icon-size: 28px;

  position: relative;
  min-height: 32px;
  padding-top: var(--fm-footer-line-gap);
}

.fm-footer-copyright,
.fm-footer-signature {
  flex: 1;
}

.fm-footer-signature {
  text-align: right;
}

.fm-footer-socials {
  position: absolute;
  right: 0;
  top: calc((var(--fm-social-icon-size) + var(--fm-footer-line-gap)) * -1);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: none;
}

.fm-social-disclosure {
  position: relative;
  width: var(--fm-social-icon-size);
  height: var(--fm-social-icon-size);
}

.fm-social-icon {
  width: var(--fm-social-icon-size);
  height: var(--fm-social-icon-size);
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.66;
  transition: opacity 160ms ease;
}

.fm-social-icon:hover,
.fm-social-icon:focus-visible,
.fm-social-disclosure[data-open="true"] .fm-social-icon {
  opacity: 1;
}

.fm-social-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.fm-social-qr-popover {
  width: 148px;
  position: absolute;
  right: -59px;
  bottom: 40px;
  z-index: 20;
  transform: translateY(8px);
  padding: 12px;
  border: 1px solid var(--fm-line);
  border-radius: 16px;
  background: #f5f5f5;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.fm-social-qr-popover img {
  width: 124px;
  height: 124px;
  display: block;
  border-radius: 11px;
  object-fit: contain;
}

.fm-xiaohongshu-social .fm-social-qr-popover {
  right: 50%;
  transform: translate(50%, 8px);
}

.fm-social-disclosure:hover .fm-social-qr-popover,
.fm-social-disclosure:focus-within .fm-social-qr-popover,
.fm-social-disclosure[data-open="true"] .fm-social-qr-popover {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fm-xiaohongshu-social:hover .fm-social-qr-popover,
.fm-xiaohongshu-social:focus-within .fm-social-qr-popover,
.fm-xiaohongshu-social[data-open="true"] .fm-social-qr-popover {
  transform: translate(50%, 0);
}

@media (max-width: 900px) {
  .fm-header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .fm-header-actions {
    gap: 12px;
  }

  body.fm-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    background: #000;
  }

  .fm-primary-nav {
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    max-height: none;
    display: block;
    padding: 58px 20px 40px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
    z-index: 1001;
  }

  body.admin-bar .fm-primary-nav {
    top: 0;
  }

  .fm-primary-nav[data-open="true"] {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .fm-site-header .fm-primary-nav,
  .fm-site-header .fm-primary-nav > ul,
  .fm-site-header .fm-primary-nav .menu {
    min-height: 0;
    max-height: none;
  }

  .fm-site-header .fm-primary-nav > ul,
  .fm-site-header .fm-primary-nav .menu {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .fm-site-header .fm-primary-nav .menu > li {
    width: 100%;
  }

  .fm-site-header .fm-primary-nav .menu > li > a {
    width: 100%;
    min-height: 46px;
    height: auto;
    justify-content: flex-start;
    border-bottom: 0;
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }

  .fm-menu-toggle {
    z-index: 1003;
  }

  .fm-menu-toggle > span:not(.screen-reader-text) {
    width: 14px;
  }

  .fm-menu-toggle > span:not(.screen-reader-text):first-child {
    transform: translate(-50%, -3px);
  }

  .fm-menu-toggle > span:not(.screen-reader-text):nth-child(2) {
    transform: translate(-50%, 3px);
  }

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

  .fm-language-list {
    top: 44px;
    right: 0;
    left: auto;
    max-width: calc(100vw - 32px);
    z-index: 5;
  }

  .fm-language-list::before {
    display: none;
  }

  .fm-header-actions .fm-account-link {
    display: grid;
  }

  .fm-header-actions .fm-cart-icon {
    width: 13px;
    height: 13px;
  }

  .fm-header-actions .fm-cart-icon::before {
    top: -4px;
    left: 3px;
    width: 5px;
    height: 5px;
  }

  .fm-header-actions .fm-cart-count {
    top: -7px;
    right: -8px;
    min-width: 13px;
    height: 13px;
    padding: 0 2px;
    font-size: 8px;
  }

  .fm-home-hero {
    height: 500px;
  }

  .fm-home-hero-copy h1 {
    font-size: clamp(44px, 8vw, 64px);
  }

  .fm-home-hero-copy p {
    font-size: 19px;
  }

  .fm-footer-grid {
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .fm-home-hero {
    height: 220px;
    display: grid;
    place-items: center;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(8, 112, 158, 0.2), transparent 72%),
      #000;
  }

  .fm-home-hero-rays {
    display: none;
  }

  .fm-home-hero-copy {
    padding: 0 24px;
  }

  .fm-home-hero-copy h1 {
    font-size: clamp(36px, 9.5vw, 52px);
  }

  .fm-home-mobile-title-break {
    display: inline;
  }

  .fm-home-hero-copy p {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .fm-home-hero-machines {
    display: none;
  }

  .fm-home-machine-grid {
    --fm-poster-height: auto;
  }

  .fm-home-machine-card {
    height: auto;
    aspect-ratio: 108 / 125;
  }

  .fm-home-machine-copy,
  .fm-home-accessory-copy {
    top: 6%;
    width: calc(100% - 28px);
  }

  .fm-home-machine-logo-frame {
    --fm-home-machine-logo-height: 22px;
    width: min(280px, 68vw);
  }

  .fm-home-machine-pro4 .fm-home-machine-logo-frame {
    --fm-home-machine-logo-height: 32px;
  }

  .fm-home-machine-pro4 .fm-home-machine-logo {
    position: static;
    height: 32px !important;
    max-height: 32px !important;
    transform: none;
  }

  .fm-home-label-row {
    width: min(180px, 48vw);
    gap: 6px;
    margin-top: 4px;
  }

  .fm-home-label-row p {
    width: min(108px, 34vw);
    font-size: clamp(9px, 2.5vw, 11px);
    letter-spacing: 0;
    text-indent: 0;
  }

  .fm-home-label-row--latin {
    width: min(320px, calc(100vw - 36px));
  }

  .fm-home-label-row--latin p {
    width: auto;
    font-size: clamp(8px, 2.3vw, 10px);
    letter-spacing: 0.04em;
  }

  .fm-home-label-row--latin > span {
    width: 24px;
  }

  .fm-home-machine-copy h2,
  .fm-home-accessory-copy h2 {
    margin-top: 15px;
    font-size: clamp(20px, 5.8vw, 30px);
  }

  .fm-home-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .fm-home-button {
    min-height: 32px;
    padding: 0 15px;
    font-size: 12px;
  }

  .fm-home-machine-product {
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
  }

  .fm-home-accessory-grid {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-left: 0;
  }

  .fm-home-accessory-card {
    height: auto;
    aspect-ratio: 108 / 125;
  }

  .fm-home-accessory-eyebrow {
    font-size: 11px;
  }

  .fm-home-accessory-copy h2 {
    margin-top: 13px;
    font-size: clamp(19px, 5.6vw, 29px);
  }

  .fm-home-accessory-copy .fm-home-actions {
    margin-top: 14px;
  }

  .fm-home-accessory-product {
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
  }

  .fm-home-accessory-entry-grid {
    grid-template-columns: 1fr;
  }

  .fm-home-accessory-entry-grid a {
    min-height: 50px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .fm-header-inner {
    width: min(100% - 20px, 1000px);
  }

  .fm-service-row,
  .fm-footer-grid,
  .fm-footer-bottom {
    width: min(100% - 32px, 1000px);
  }

  .fm-service-row {
    gap: 8px;
    padding: 28px 0 24px;
  }

  .fm-service-svg {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }

  .fm-service-item {
    gap: 5px;
  }

  .fm-service-item strong {
    font-size: 12px;
  }

  .fm-service-item p {
    font-size: 10px;
    line-height: 1.3;
  }

  .fm-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 24px 0 44px;
  }

  .fm-footer-column h2 {
    margin-bottom: 10px;
  }

  .fm-footer-column a {
    margin-bottom: 7px;
    line-height: 1.3;
  }

  .fm-footer-column:nth-child(1),
  .fm-footer-column:nth-child(3) {
    padding-left: 12px;
  }

  .fm-footer-brand-logo {
    width: 110px;
    height: auto;
    margin-top: -5px;
  }

  .fm-footer-bottom {
    min-height: 54px;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding-top: 14px;
    line-height: 1.35;
    text-align: center;
  }

  .fm-footer-signature {
    text-align: center;
  }

  .fm-footer-socials {
    position: absolute;
    top: calc((var(--fm-social-icon-size) + var(--fm-footer-line-gap)) * -1);
    right: auto;
    left: 50%;
    order: initial;
    transform: translateX(-50%);
  }
}

/* Product pages use one sticky local navigation row after the global header scrolls away. */
body.page-template-page-alpha .fm-site-header,
body.page-template-page-pro4 .fm-site-header,
body.page-template-page-gigolo .fm-site-header,
body.page-template-page-tremblr .fm-site-header {
  position: relative;
  top: auto;
}

body.page-template-page-alpha .fm-product-local-nav,
body.page-template-page-pro4 .fm-product-local-nav,
body.page-template-page-gigolo .fm-product-local-nav,
body.page-template-page-tremblr .fm-product-local-nav {
  top: 0;
}

@media (max-width: 900px) {
  .fm-header-actions {
    gap: 0;
  }

  .fm-header-actions .fm-account-link,
  .fm-header-actions .fm-cart-link,
  .fm-language summary,
  .fm-menu-toggle {
    width: 28px;
    min-width: 28px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .fm-brand-wrap {
    margin-left: 4px;
  }
}

/* 0.3.24: GIGOLO and TREMBLR page polish. Keep ALPHA and PRO4 unchanged. */
.fm-product-story-title-mobile {
	display: none;
}

body.page-template-page-gigolo .fm-site-header + .fm-product-page,
body.page-template-page-tremblr .fm-site-header + .fm-product-page {
	margin-top: 0;
	padding-top: 0;
}

body.page-template-page-gigolo .fm-product-local-nav,
body.page-template-page-tremblr .fm-product-local-nav {
	height: 44px;
	min-height: 44px;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
}

body.page-template-page-gigolo .fm-product-local-name,
body.page-template-page-tremblr .fm-product-local-name {
	line-height: 44px;
}

@media (min-width: 781px) {
	.fm-product-pro4 .fm-product-hero-copy {
		width: min(1100px, 92vw);
	}

	.fm-product-pro4 .fm-product-hero h1 {
		white-space: nowrap;
	}
}

.fm-product-gigolo .fm-product-hero-copy {
	padding-top: clamp(34px, 4vh, 54px);
}

.fm-product-gigolo .fm-product-hero-media {
	height: 76%;
	transform: scale(1.28);
	transform-origin: center bottom;
}

.fm-product-tremblr .fm-product-story-copy p {
	max-width: 1120px;
	font-size: clamp(15px, 1.2vw, 19px);
	line-height: 1.55;
	white-space: pre-line;
}

.fm-product-tremblr .fm-product-story:nth-child(-n + 3) .fm-product-story-copy h2 {
	max-width: none;
	font-size: clamp(42px, 5.4vw, 82px);
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.fm-product-tremblr .fm-product-story:nth-child(5) .fm-product-story-media {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.fm-product-tremblr .fm-product-story:nth-child(5) .fm-product-story-media img {
	width: 100vw;
	max-width: none;
	height: auto;
	max-height: none;
	aspect-ratio: auto;
	object-fit: contain;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure {
	width: min(470px, 100%);
	height: auto;
	margin: -22px auto 24px;
	padding: 0 90px 46px 0;
	box-sizing: border-box;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure img {
	position: static;
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	object-fit: contain;
	transform: none;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure figcaption {
	display: block;
	font-size: 15px;
	line-height: 1.35;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure .is-1 {
	top: auto;
	bottom: 0;
	left: calc((100% - 90px) / 2);
	text-align: center;
	transform: translateX(-50%);
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure .is-2,
.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure .is-3 {
	right: 0;
	left: auto;
	width: 74px;
	text-align: left;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure .is-2 {
	top: 16%;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure .is-3 {
	top: 54%;
}

.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-mobile-dimensions {
	display: none;
	width: 100%;
	margin: 0 0 8px;
}

@media (min-width: 781px) and (max-width: 1280px) {
	.fm-product-gigolo .fm-product-story-media {
		width: 90vw;
	}
}

@media (min-width: 641px) and (max-width: 1120px) {
	.fm-xiaohongshu-social .fm-social-qr-popover {
		right: 0;
		transform: translateY(8px);
	}

	.fm-xiaohongshu-social:hover .fm-social-qr-popover,
	.fm-xiaohongshu-social:focus-within .fm-social-qr-popover,
	.fm-xiaohongshu-social[data-open="true"] .fm-social-qr-popover {
		transform: translateY(0);
	}
}

@media (min-width: 901px) and (max-width: 1120px) {
	.fm-language-list {
		right: calc(100% + 8px);
		left: auto;
	}

	.fm-language-list::before {
		right: auto;
		left: 100%;
	}
}

@media (max-width: 780px) {
	body.page-template-page-gigolo .fm-product-local-nav,
	body.page-template-page-tremblr .fm-product-local-nav {
		height: 40px;
		min-height: 40px;
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}

	body.page-template-page-gigolo .fm-product-local-name,
	body.page-template-page-tremblr .fm-product-local-name {
		line-height: 40px;
	}

	.fm-product-gigolo .fm-product-hero {
		padding-bottom: 48px;
	}

	.fm-product-gigolo .fm-product-hero-copy {
		padding-top: 24px;
		padding-bottom: 8px;
	}

	.fm-product-gigolo .fm-product-hero-media {
		height: auto;
		object-position: center;
		transform: translateY(-6px) scale(1.34);
		transform-origin: center bottom;
	}

	.fm-product-gigolo .fm-product-purchase {
		bottom: 6px;
	}

	.fm-product-gigolo .fm-product-story:nth-child(5) .fm-product-story-copy h2 {
		max-width: 100%;
	}

	.fm-product-tremblr .fm-product-hero {
		padding-bottom: 44px;
	}

	.fm-product-tremblr .fm-product-purchase {
		bottom: 6px;
	}

	.fm-product-tremblr .fm-product-story-title-desktop {
		display: none;
	}

	.fm-product-tremblr .fm-product-story-title-mobile {
		display: block;
	}

	.fm-product-tremblr .fm-product-story:nth-child(-n + 3) .fm-product-story-copy h2 {
		max-width: none;
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.16;
		letter-spacing: -0.02em;
		white-space: normal;
	}

	.fm-product-tremblr .fm-product-story-copy p {
		width: min(92vw, 38em);
		font-size: 13px;
		line-height: 1.55;
	}

	.fm-product-tremblr .fm-product-story:nth-child(5) .fm-product-story-media,
	.fm-product-tremblr .fm-product-story:nth-child(5) .fm-product-story-media img {
		width: 100vw;
		max-width: none;
	}

	.fm-product-tremblr .fm-product-story:nth-child(5) .fm-product-story-media img {
		height: auto;
		aspect-ratio: auto;
		object-fit: contain;
	}

	.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure {
		width: min(320px, 100%);
		height: 170px;
		margin: 0 auto 14px;
		padding: 0;
	}

	.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure img {
		position: absolute;
		top: 50%;
		left: 50%;
		width: auto;
		max-width: 92%;
		height: 160px;
		transform: translate(-50%, -50%);
	}

	.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-figure figcaption {
		display: none;
	}

	.fm-product-tremblr .fm-product-specs-dimensions .fm-product-specs-mobile-dimensions {
		display: block;
	}
}

/* 0.3.25: shared product navigation sizing. */
body.page-template-page-alpha .fm-product-local-nav,
body.page-template-page-pro4 .fm-product-local-nav,
body.page-template-page-gigolo .fm-product-local-nav,
body.page-template-page-tremblr .fm-product-local-nav {
	height: 44px;
	min-height: 44px;
}

body.page-template-page-alpha .fm-product-local-links .fm-product-local-buy,
body.page-template-page-pro4 .fm-product-local-links .fm-product-local-buy,
body.page-template-page-gigolo .fm-product-local-links .fm-product-local-buy,
body.page-template-page-tremblr .fm-product-local-links .fm-product-local-buy {
	padding: 5px 12px;
	line-height: 1.2;
}

/* Purchase channels page. */
.fm-channels-page {
	color: #f5f5f5;
	background: #000;
}

.fm-channels-hero {
	min-height: 700px;
	padding: clamp(110px, 11vw, 158px) 24px 0;
	overflow: hidden;
	text-align: center;
	background: radial-gradient(circle at 50% 78%, rgba(18, 160, 220, 0.1), transparent 33%), #000;
}

.fm-channels-hero-copy {
	position: relative;
	z-index: 1;
}

.fm-channels-hero h1 {
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(58px, 8vw, 112px);
	font-weight: 680;
	line-height: 0.95;
	letter-spacing: -0.02em;
}

.fm-channels-hero-copy p {
	max-width: 680px;
	margin: 24px auto 0;
	color: #86868b;
	font-size: clamp(17px, 1.8vw, 22px);
	line-height: 1.5;
}

.fm-channels-hero > img {
	display: block;
	width: min(1512px, 100%);
	height: auto;
	margin: clamp(44px, 6vw, 78px) auto 0;
}

.fm-channels-marketplaces {
	padding: clamp(100px, 12vw, 168px) 24px;
	background: #111113;
}

.fm-channels-heading,
.fm-channel-grid {
	width: min(1180px, 100%);
	margin-right: auto;
	margin-left: auto;
}

.fm-channels-heading h2 {
	max-width: 820px;
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(44px, 6.4vw, 84px);
	font-weight: 650;
	line-height: 0.98;
	letter-spacing: -0.02em;
}

.fm-channels-heading p {
	max-width: 620px;
	margin: 22px 0 0;
	color: #86868b;
	font-size: 17px;
	line-height: 1.55;
}

.fm-channel-grid {
	margin-top: 54px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.fm-channel-card {
	min-height: 320px;
	padding: clamp(30px, 4vw, 52px);
	display: flex;
	align-items: stretch;
	color: #f5f5f5;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 32px;
	background: radial-gradient(circle at 100% 0, rgba(18, 160, 220, 0.13), transparent 42%), #000;
}

.fm-channel-card > div {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.fm-channel-card h3 {
	margin: 0;
	font-size: clamp(26px, 2.5vw, 38px);
	font-weight: 650;
	line-height: 1.04;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.fm-channel-card p {
	max-width: 460px;
	margin: 18px 0 0;
	color: #86868b;
	font-size: 15px;
	line-height: 1.55;
}

.fm-channel-action {
	min-height: 42px;
	margin-top: auto;
	padding: 0 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #f5f5f5;
	border: 1px solid var(--fm-blue);
	border-radius: 999px;
	background: var(--fm-blue);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.fm-channel-action:hover,
.fm-channel-action:focus-visible {
	color: #fff;
	background: var(--fm-blue-hover);
}

.fm-channels-note {
	width: min(1180px, calc(100% - 48px));
	margin: clamp(72px, 8vw, 108px) auto;
	padding: clamp(30px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 28px;
	background: #111113;
}

.fm-channels-note h2 {
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 620;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.fm-channels-note p {
	max-width: 680px;
	margin: 12px 0 0;
	color: #86868b;
	font-size: 15px;
	line-height: 1.55;
}

.fm-channels-note > a {
	flex: 0 0 auto;
	color: var(--fm-blue);
	font-size: 15px;
	font-weight: 550;
	text-decoration: none;
}

.fm-channels-note > a::after {
	content: " ›";
}

@media (max-width: 780px) {
	body.page-template-page-alpha .fm-product-local-nav,
	body.page-template-page-pro4 .fm-product-local-nav,
	body.page-template-page-gigolo .fm-product-local-nav,
	body.page-template-page-tremblr .fm-product-local-nav {
		height: 40px;
		min-height: 40px;
	}

	body.page-template-page-alpha .fm-product-local-links .fm-product-local-buy,
	body.page-template-page-pro4 .fm-product-local-links .fm-product-local-buy,
	body.page-template-page-gigolo .fm-product-local-links .fm-product-local-buy,
	body.page-template-page-tremblr .fm-product-local-links .fm-product-local-buy {
		padding: 4px 10px;
	}

	.fm-channels-hero {
		min-height: 590px;
		padding: 94px 16px 0;
	}

	.fm-channels-hero-copy p {
		margin-top: 18px;
		font-size: 16px;
	}

	.fm-channels-hero > img {
		position: relative;
		left: 50%;
		width: 880px;
		max-width: none;
		margin-top: 52px;
		transform: translateX(-50%);
	}

	.fm-channels-marketplaces {
		padding: 86px 16px;
	}

	.fm-channels-heading p {
		margin-top: 18px;
		font-size: 15px;
	}

	.fm-channel-grid {
		margin-top: 38px;
		grid-template-columns: 1fr;
	}

	.fm-channel-card {
		min-width: 0;
		min-height: 260px;
		padding: 28px;
		border-radius: 24px;
	}

	.fm-channel-card > div {
		min-width: 0;
	}

	.fm-channel-card h3 {
		font-size: clamp(23px, 7vw, 30px);
		white-space: normal;
	}

	.fm-channels-note {
		width: calc(100% - 32px);
		margin: 56px auto;
		padding: 28px;
		align-items: flex-start;
		flex-direction: column;
		border-radius: 24px;
	}
}

/* 0.3.29: Support and about page templates. */
.fm-support-page,
.fm-support-detail-page {
	color: #1d1d1f;
	background: #f5f5f5;
}

.fm-support-hero {
	min-height: 590px;
	padding: clamp(96px, 11vw, 132px) 24px clamp(64px, 7vw, 92px);
	text-align: center;
	background: #f5f5f5;
}

.fm-support-hero h1 {
	margin: 0;
	color: #1d1d1f;
	font-size: clamp(52px, 5.6vw, 80px);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.02em;
}

.fm-support-hero > p {
	max-width: 640px;
	margin: 20px auto 0;
	color: #6e6e73;
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.45;
}

.fm-support-product-picker {
	width: min(760px, 100%);
	margin: clamp(44px, 5vw, 64px) auto 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: end;
	gap: clamp(18px, 3vw, 42px);
}

.fm-support-product-picker a {
	min-width: 0;
	display: grid;
	justify-items: center;
	gap: 12px;
	color: #1d1d1f;
	text-decoration: none;
}

.fm-support-product-image {
	width: 100%;
	height: 104px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-support-product-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	transition: transform 180ms ease;
}

.fm-support-product-picker strong {
	font-size: 15px;
	font-weight: 450;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.fm-support-product-picker a:hover .fm-support-product-image img,
.fm-support-product-picker a:focus-visible .fm-support-product-image img {
	transform: translateY(-4px);
}

.fm-support-product-picker a:focus-visible {
	border-radius: 8px;
	outline: 2px solid #0071e3;
	outline-offset: 8px;
}

.fm-support-grid {
	width: min(960px, calc(100% - 48px));
	margin: 0 auto;
	padding: clamp(36px, 4vw, 56px) 0 clamp(72px, 8vw, 112px);
}

.fm-support-contact-card {
	width: 100%;
	min-height: 280px;
	padding: clamp(28px, 3.2vw, 38px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(120px, 13vw, 135px);
	align-items: end;
	gap: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(29, 29, 31, 0.04);
	border-radius: 24px;
	background: #e8e8ed;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.025);
}

.fm-support-contact-copy {
	min-width: 0;
	height: 100%;
	display: flex;
	align-self: stretch;
	flex-direction: column;
}

.fm-support-contact-copy header {
	max-width: 680px;
	margin-bottom: 26px;
}

.fm-support-contact-copy h2 {
	margin: 0;
	color: #1d1d1f;
	font-size: clamp(30px, 3.1vw, 42px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.fm-support-contact-copy header p {
	margin: 12px 0 0;
	color: #6e6e73;
	font-size: 15px;
	line-height: 1.5;
}

.fm-support-email {
	min-width: 0;
	width: 100%;
	margin-top: auto;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-radius: 16px;
	background: rgba(245, 245, 245, 0.82);
	text-decoration: none;
}

.fm-support-email > span,
.fm-support-wechat figcaption span {
	color: #6e6e73;
	font-size: 12px;
	line-height: 1.4;
}

.fm-support-email strong {
	overflow-wrap: anywhere;
	color: #0071e3;
	font-size: clamp(15px, 1.4vw, 18px);
	font-weight: 600;
	line-height: 1.3;
}

.fm-support-wechat {
	margin: 0;
	padding: 14px;
	display: flex;
	align-self: stretch;
	flex-direction: column;
	border-radius: 20px;
	background: rgba(245, 245, 245, 0.82);
}

.fm-support-wechat img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.fm-support-wechat figcaption {
	margin-top: auto;
	padding-top: 9px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.fm-support-wechat strong {
	color: #1d1d1f;
	font-weight: 600;
}

.fm-support-detail-hero {
	width: min(1080px, calc(100% - 48px));
	min-height: 520px;
	margin: 0 auto;
	padding: clamp(84px, 10vw, 132px) 0 clamp(64px, 8vw, 96px);
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
	align-items: center;
	gap: clamp(34px, 6vw, 78px);
}

.fm-support-back-link {
	color: #0071e3;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none;
}

.fm-support-back-link::before {
	content: "‹";
	margin-right: 5px;
}

.fm-support-detail-hero h1 {
	margin: 24px 0 0;
	color: #1d1d1f;
	font-size: clamp(54px, 7vw, 88px);
	font-weight: 600;
	line-height: 0.96;
	letter-spacing: -0.02em;
}

.fm-support-detail-hero-copy > p {
	margin: 20px 0 0;
	color: #6e6e73;
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.45;
}

.fm-support-detail-hero > img {
	width: 100%;
	height: auto;
	max-height: 380px;
	display: block;
	object-fit: contain;
}

.fm-support-detail-page--product .fm-support-detail-hero {
	width: min(1080px, calc(100% - 48px));
	min-height: 650px;
	padding: clamp(64px, 8vw, 104px) 0 clamp(72px, 8vw, 104px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
	text-align: center;
}

.fm-support-detail-page--product .fm-support-detail-hero-copy {
	display: contents;
}

.fm-support-detail-page--product .fm-support-back-link {
	align-self: flex-start;
	order: 1;
}

.fm-support-detail-page--product .fm-support-detail-hero > img {
	order: 2;
	width: min(780px, 88vw);
	max-height: 500px;
	margin: clamp(28px, 4vw, 48px) auto 0;
}

.fm-support-detail-page--product .fm-support-detail-hero h1 {
	order: 3;
	margin-top: 10px;
	font-size: clamp(44px, 5vw, 64px);
	line-height: 1;
	letter-spacing: -0.02em;
}

.fm-support-detail-page--product .fm-support-detail-hero-copy > p {
	order: 4;
	margin-top: 14px;
}

.fm-support-resources {
	padding: clamp(76px, 9vw, 116px) 24px;
	background: #efeff1;
}

.fm-support-resources > header,
.fm-support-resource-grid {
	width: min(1080px, 100%);
	margin-right: auto;
	margin-left: auto;
}

.fm-support-resources > header h2 {
	margin: 0;
	color: #1d1d1f;
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
}

.fm-support-resources > header p {
	max-width: 620px;
	margin: 18px 0 0;
	color: #6e6e73;
	font-size: 16px;
	line-height: 1.5;
}

.fm-support-resource-grid {
	margin-top: 42px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.fm-support-resource-card {
	min-height: 250px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(29, 29, 31, 0.04);
	border-radius: 24px;
	background: #f5f5f5;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
	text-decoration: none;
}

.fm-support-resource-card > span {
	color: #0071e3;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
}

.fm-support-resource-card h3 {
	margin: 24px 0 0;
	color: #1d1d1f;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.fm-support-resource-card p {
	max-width: 420px;
	margin: 12px 0 0;
	color: #6e6e73;
	font-size: 15px;
	line-height: 1.5;
}

.fm-support-resource-card strong {
	margin-top: auto;
	padding-top: 28px;
	color: #86868b;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
}

.fm-support-resource-card.is-available strong {
	color: #0071e3;
}

.fm-support-resource-list {
	width: min(1080px, 100%);
	margin: 42px auto 0;
	overflow: hidden;
	border: 1px solid rgba(29, 29, 31, 0.08);
	border-radius: 26px;
	background: #f5f5f5;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.fm-support-resource-row {
	min-height: 118px;
	padding: 24px 30px;
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	color: #1d1d1f;
	border-bottom: 1px solid rgba(29, 29, 31, 0.1);
	text-decoration: none;
}

.fm-support-resource-row:last-child {
	border-bottom: 0;
}

.fm-support-resource-row:hover,
.fm-support-resource-row:focus-visible {
	background: #fff;
}

.fm-support-resource-row > span {
	color: #6e6e73;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

.fm-support-resource-row h3 {
	margin: 0;
	color: #1d1d1f;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.fm-support-resource-row p {
	margin: 7px 0 0;
	color: #6e6e73;
	font-size: 14px;
	line-height: 1.4;
}

.fm-support-resource-row strong {
	color: #0071e3;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

.fm-support-resource-row--unavailable strong {
	color: #86868b;
}

.fm-support-resource-row--unavailable:hover {
	background: #f5f5f5;
}

.fm-support-detail-contact {
	padding: clamp(72px, 8vw, 104px) 24px;
	text-align: center;
	background: #f5f5f5;
}

.fm-support-detail-contact p {
	margin: 0;
	color: #6e6e73;
	font-size: 16px;
}

.fm-support-detail-contact a {
	margin-top: 14px;
	display: inline-block;
	color: #0071e3;
	font-size: 18px;
	line-height: 1.3;
	text-decoration: none;
}

.fm-support-missing {
	min-height: 66vh;
	padding: 120px 24px;
	text-align: center;
}

.fm-support-missing h1 {
	margin: 0;
	font-size: clamp(36px, 5vw, 60px);
}

.fm-support-missing a {
	margin-top: 24px;
	display: inline-block;
	color: #0071e3;
	text-decoration: none;
}

.fm-about-page {
	color: #f5f5f5;
	background: #000;
}

.fm-about-manifesto {
	position: relative;
	min-height: calc(100vh - 44px);
	padding: clamp(120px, 13vw, 190px) 24px;
	display: grid;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
}

.fm-about-manifesto::before {
	content: "";
	position: absolute;
	inset: auto 8% -22% 8%;
	height: 68%;
	z-index: -2;
	background: radial-gradient(ellipse at center, rgba(0, 157, 220, 0.12) 0%, rgba(0, 105, 170, 0.045) 34%, transparent 72%);
	pointer-events: none;
}

.fm-about-manifesto-backdrop {
	position: absolute;
	left: 50%;
	bottom: clamp(18px, 3.5vw, 58px);
	width: min(1500px, 96vw);
	height: auto;
	z-index: -1;
	opacity: 0.17;
	transform: translateX(-50%);
	filter: saturate(0.82) brightness(0.76);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 74%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 74%, transparent 100%);
	pointer-events: none;
}

.fm-about-manifesto-inner {
	position: relative;
	width: min(1220px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.9fr);
	align-items: center;
	gap: clamp(64px, 7vw, 104px);
	z-index: 1;
}

.fm-about-manifesto h1 {
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(52px, 5vw, 82px);
	font-weight: 650;
	line-height: 0.98;
	letter-spacing: -0.02em;
}

.fm-about-manifesto-copy {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3.2vw, 48px);
}

.fm-about-manifesto-copy p {
	margin: 0;
	color: #a1a1a6;
	font-size: clamp(20px, 1.65vw, 27px);
	line-height: 1.65;
	letter-spacing: 0.01em;
}

.fm-about-manifesto-copy p:last-child {
	color: #f5f5f5;
}

@media (max-width: 900px) {
	.fm-about-manifesto-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.fm-support-hero {
		min-height: 450px;
		padding: 88px 16px 58px;
	}

	.fm-support-hero h1 {
		font-size: clamp(44px, 13vw, 60px);
	}

	.fm-support-hero > p {
		margin-top: 16px;
		font-size: 16px;
	}

	.fm-support-product-picker {
		margin-top: 38px;
		gap: 10px;
	}

	.fm-support-product-image {
		height: 68px;
	}

	.fm-support-product-picker strong {
		font-size: 12px;
	}

	.fm-support-grid {
		width: calc(100% - 32px);
	}

	.fm-support-contact-card {
		min-height: 0;
		padding: 24px;
		grid-template-columns: 1fr;
		gap: 28px;
		border-radius: 20px;
	}

	.fm-support-email {
		margin-top: 0;
	}

	.fm-support-wechat {
		width: min(120px, 100%);
		justify-self: center;
	}

	.fm-support-detail-hero {
		width: calc(100% - 32px);
		min-height: 0;
		padding: 72px 0 58px;
		grid-template-columns: 1fr;
		gap: 34px;
		text-align: center;
	}

	.fm-support-detail-hero h1 {
		margin-top: 18px;
		font-size: clamp(48px, 17vw, 72px);
	}

	.fm-support-detail-hero-copy > p {
		margin-top: 14px;
		font-size: 17px;
	}

	.fm-support-detail-hero > img {
		width: min(480px, 100%);
		margin: 0 auto;
	}

	.fm-support-detail-page--product .fm-support-detail-hero {
		width: calc(100% - 32px);
		min-height: 0;
		padding: 46px 0 54px;
	}

	.fm-support-detail-page--product .fm-support-detail-hero > img {
		width: min(520px, 112vw);
		margin-top: 20px;
	}

	.fm-support-detail-page--product .fm-support-detail-hero h1 {
		margin-top: 4px;
		font-size: clamp(38px, 12vw, 52px);
	}

	.fm-support-resources {
		padding-right: 16px;
		padding-left: 16px;
	}

	.fm-support-resource-grid {
		margin-top: 32px;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.fm-support-resource-card {
		min-height: 220px;
		padding: 24px;
		border-radius: 20px;
	}

	.fm-support-resource-list {
		margin-top: 28px;
		border-radius: 20px;
	}

	.fm-support-resource-row {
		min-height: 0;
		padding: 21px 20px;
		grid-template-columns: 1fr auto;
		gap: 9px 16px;
	}

	.fm-support-resource-row > span {
		grid-column: 1 / -1;
		font-size: 11px;
	}

	.fm-support-resource-row h3 {
		font-size: 18px;
	}

	.fm-support-resource-row p {
		font-size: 13px;
	}

	.fm-support-resource-row strong {
		align-self: center;
		font-size: 13px;
	}

	.fm-about-manifesto {
		min-height: auto;
		padding: 96px 20px 180px;
	}

	.fm-about-manifesto-inner {
		gap: 54px;
	}

	.fm-about-manifesto h1 {
		font-size: clamp(50px, 16vw, 76px);
	}

	.fm-about-manifesto::before {
		inset: auto -30% -8% -30%;
		height: 42%;
	}

	.fm-about-manifesto-backdrop {
		bottom: 22px;
		width: 780px;
		max-width: none;
		opacity: 0.1;
	}

	.fm-about-manifesto-copy {
		gap: 32px;
	}

	.fm-about-manifesto-copy p {
		font-size: 18px;
		line-height: 1.7;
	}
}
