/* FITNEXTT home landing — 20260817 */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body.fn-home {
	font-family: "Nunito", "Segoe UI", sans-serif;
	color: #20282c;
	background: #fff;
	line-height: 1.6;
}

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

.fn-container {
	width: 90%;
	max-width: 1180px;
	margin: 0 auto;
}

/* Header */
.fn-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(8px);
}

.fn-navbar {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.fn-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.fn-logo img {
	width: 170px;
	height: auto;
	display: block;
}

.fn-logo-text {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.fn-logo-text span {
	color: #00b29c;
}

.fn-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.fn-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #18252b;
	border-radius: 2px;
	transition: 0.2s;
}

.fn-nav {
	display: flex;
	gap: 28px;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
}

.fn-nav a:hover {
	color: #00b29c;
}

.fn-navcta {
	background: #00b29c;
	color: #fff !important;
	padding: 11px 18px;
	border-radius: 30px;
}

.fn-navcta:hover {
	background: #089a87;
	color: #fff !important;
}

/* Hero */
.fn-hero {
	min-height: 610px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 80% 20%, #d9f7f2, transparent 28%),
		radial-gradient(circle at 15% 85%, #dff8f1, transparent 28%),
		#f7fafb;
	position: relative;
	overflow: hidden;
}

.fn-hero .fn-content {
	width: 54%;
	padding: 75px 0;
	position: relative;
	z-index: 2;
}

.fn-tag {
	display: inline-block;
	background: #e9faf5;
	color: #16846c;
	padding: 7px 16px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 18px;
}

.fn-hero h1 {
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.03;
	letter-spacing: -1.5px;
	margin-bottom: 22px;
	font-weight: 800;
}

.fn-hero h1 span {
	color: #00b29c;
}

.fn-hero p {
	font-size: 18px;
	color: #5d666a;
	max-width: 650px;
	margin-bottom: 30px;
}

.fn-buttons {
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
}

.fn-btn {
	padding: 14px 24px;
	border-radius: 30px;
	font-weight: 800;
	display: inline-block;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.fn-btn:hover {
	transform: translateY(-2px);
}

.fn-btn-primary {
	background: #00b29c;
	color: #fff;
}

.fn-btn-primary:hover {
	background: #089a87;
	color: #fff;
}

.fn-btn-secondary {
	border: 2px solid #222;
	background: transparent;
}

.fn-btn-ghost {
	border: 2px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.fn-visual {
	position: absolute;
	right: 4%;
	width: 43%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.fn-visualbox {
	width: min(410px, 90%);
	aspect-ratio: 1;
	border-radius: 38px;
	background: linear-gradient(135deg, #00b29c, #0a8f7e);
	transform: rotate(4deg);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fn-float 6s ease-in-out infinite;
}

.fn-visualinner {
	width: 84%;
	height: 84%;
	background: #fff;
	border-radius: 28px;
	transform: rotate(-4deg);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.fn-visualinner strong {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.2;
	font-weight: 800;
	color: #18252b;
}

@keyframes fn-float {
	0%,
	100% {
		transform: rotate(4deg) translateY(0);
	}
	50% {
		transform: rotate(4deg) translateY(-10px);
	}
}

/* Strip */
.fn-strip {
	background: #18252b;
	color: #fff;
	padding: 28px 0;
}

.fn-stripgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.fn-stripitem {
	display: flex;
	gap: 14px;
	align-items: center;
}

.fn-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #00b29c;
	display: grid;
	place-items: center;
	font-size: 18px;
	font-weight: 800;
	flex-shrink: 0;
}

.fn-stripitem h4 {
	font-size: 15px;
}

.fn-stripitem p {
	font-size: 12px;
	color: #bdc8cb;
}

/* Sections */
.fn-section {
	padding: 82px 0;
}

.fn-heading {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 45px;
}

.fn-heading .fn-tag {
	background: none;
	padding: 0;
	color: #00b29c;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.fn-heading h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	line-height: 1.15;
	margin: 5px 0 12px;
	font-weight: 800;
}

.fn-heading p {
	color: #697276;
}

.fn-services {
	background: #f7fafb;
}

.fn-grid3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.fn-card {
	background: #fff;
	border: 1px solid #edf0f1;
	border-radius: 22px;
	padding: 32px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	transition: 0.25s;
}

.fn-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.fn-cardicon {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #fff;
	background: #00b29c;
	width: 60px;
	height: 60px;
	border-radius: 17px;
	display: grid;
	place-items: center;
	margin-bottom: 20px;
}

.fn-card h3 {
	font-size: 21px;
	margin-bottom: 10px;
	font-weight: 800;
}

.fn-card p {
	font-size: 14px;
	color: #687176;
	margin-bottom: 18px;
}

.fn-link {
	color: #00b29c;
	font-weight: 800;
}

.fn-link:hover {
	text-decoration: underline;
}

/* Consult */
.fn-consult {
	background: #fff7f1;
}

.fn-consultgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 65px;
	align-items: center;
}

.fn-consult h2 {
	font-size: clamp(30px, 3.5vw, 43px);
	line-height: 1.12;
	margin-bottom: 15px;
	font-weight: 800;
}

.fn-consult > .fn-consultgrid > div > p {
	color: #697176;
	margin-bottom: 22px;
}

.fn-specialists {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 25px;
}

.fn-specialists div {
	background: #fff;
	border: 1px solid #f0dfd5;
	border-radius: 11px;
	padding: 12px;
	font-size: 14px;
	font-weight: 700;
}

.fn-consultbox {
	background: #18252b;
	color: #fff;
	border-radius: 27px;
	padding: 42px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.fn-consultbox h3 {
	font-size: 29px;
	margin-bottom: 12px;
	font-weight: 800;
}

.fn-consultbox p {
	color: #c4ced1;
	margin-bottom: 12px;
}

.fn-consultbox .fn-btn {
	width: 100%;
	text-align: center;
	margin-top: 8px;
}

/* Steps */
.fn-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.fn-step {
	text-align: center;
}

.fn-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #00b29c;
	color: #fff;
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
	font-weight: 900;
	font-size: 18px;
}

.fn-step h4 {
	margin-bottom: 6px;
	font-weight: 800;
}

.fn-step p {
	font-size: 13px;
	color: #737b7e;
}

/* Products */
.fn-products {
	background: #f7fafb;
}

.fn-productgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.fn-product {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
}

.fn-product:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.fn-photo {
	height: 185px;
	background: linear-gradient(135deg, #edf5f5, #00b29c);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.fn-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fn-photo-label {
	font-size: 15px;
	font-weight: 800;
	color: #fff;
	text-align: center;
	padding: 16px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.fn-prodtext {
	padding: 19px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.fn-prodtext h3 {
	font-size: 18px;
	margin-bottom: 6px;
	font-weight: 800;
}

.fn-prodtext p {
	font-size: 13px;
	color: #737b7e;
	margin-bottom: 12px;
	flex: 1;
}

.fn-products-more {
	text-align: center;
	margin-top: 28px;
}

/* Audience */
.fn-audience {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.fn-aud {
	min-height: 190px;
	padding: 25px;
	border-radius: 20px;
	color: #fff;
	background: #18252b;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: transform 0.2s;
}

.fn-aud:hover {
	transform: translateY(-4px);
}

.fn-aud:nth-child(2) {
	background: #00b29c;
}

.fn-aud:nth-child(3) {
	background: #16846c;
}

.fn-aud:nth-child(4) {
	background: #2b6e9b;
}

.fn-aud h3 {
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: 800;
}

.fn-aud p {
	font-size: 13px;
	opacity: 0.88;
}

/* Why */
.fn-why {
	background: #fff;
}

.fn-whygrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.fn-why h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	line-height: 1.15;
	margin: 7px 0 15px;
	font-weight: 800;
}

.fn-whylead {
	color: #697176;
}

.fn-whylist {
	display: grid;
	gap: 18px;
}

.fn-whyitem {
	display: flex;
	gap: 15px;
}

.fn-check {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #e9faf5;
	color: #16846c;
	display: grid;
	place-items: center;
	font-weight: 900;
	flex-shrink: 0;
}

.fn-whyitem h4 {
	margin-bottom: 3px;
	font-weight: 800;
}

.fn-whyitem p {
	font-size: 13px;
	color: #747c80;
}

/* CTA */
.fn-cta {
	background: linear-gradient(135deg, #18252b, #2b4149);
	color: #fff;
	text-align: center;
	padding: 88px 0;
}

.fn-cta h2 {
	font-size: clamp(30px, 3.5vw, 43px);
	line-height: 1.15;
	margin-bottom: 14px;
	font-weight: 800;
}

.fn-cta p {
	color: #c5ced1;
	max-width: 650px;
	margin: 0 auto 25px;
}

/* Contact */
.fn-contact {
	background: #f7fafb;
}

.fn-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 40px;
	align-items: start;
}

.fn-contact-info h3 {
	font-size: 28px;
	margin-bottom: 12px;
	font-weight: 800;
}

.fn-contact-info p {
	color: #697176;
	margin-bottom: 18px;
}

.fn-contact-info a {
	display: block;
	font-weight: 700;
	margin: 8px 0;
	color: #00b29c;
}

.fn-contact-info a:hover {
	text-decoration: underline;
}

.fn-flash {
	padding: 12px 16px;
	border-radius: 12px;
	margin-bottom: 16px;
	font-size: 14px;
	background: #e9faf5;
	color: #16846c;
	border: 1px solid #b8ebe0;
}

.fn-form {
	background: #fff;
	border: 1px solid #edf0f1;
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	display: grid;
	gap: 12px;
}

.fn-form input,
.fn-form textarea {
	width: 100%;
	border: 1px solid #e1e6e8;
	border-radius: 12px;
	padding: 12px 14px;
	font: inherit;
	color: #20282c;
	background: #fff;
}

.fn-form textarea {
	min-height: 120px;
	resize: vertical;
}

.fn-form input:focus,
.fn-form textarea:focus {
	outline: 2px solid rgba(0, 178, 156, 0.35);
	border-color: #00b29c;
}

.fn-form .fn-btn {
	border: 0;
	cursor: pointer;
	justify-self: start;
}

.fn-social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.fn-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: #e9faf5;
	color: #16846c;
	font-size: 13px;
	font-weight: 800;
}

.fn-social a:hover {
	background: #00b29c;
	color: #fff;
}

/* Footer */
.fn-footer {
	background: #10191d;
	color: #fff;
	padding: 55px 0 20px;
}

.fn-footergrid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr;
	gap: 35px;
	margin-bottom: 35px;
}

.fn-footer p,
.fn-footer a {
	color: #98a5a9;
	font-size: 13px;
}

.fn-footer h4 {
	margin-bottom: 13px;
	font-weight: 800;
}

.fn-footer a {
	display: block;
	margin: 7px 0;
}

.fn-footer a:hover {
	color: #00b29c;
}

.fn-footer .fn-logo img {
	width: 150px;
	filter: brightness(0) invert(1);
}

.fn-bottom {
	border-top: 1px solid #293438;
	padding-top: 18px;
	color: #718084;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.fn-bottom a {
	display: inline;
	margin: 0 4px;
	color: #718084;
}

.fn-bottom a:hover {
	color: #00b29c;
}

/* Responsive */
@media (max-width: 980px) {
	.fn-nav-toggle {
		display: inline-flex;
	}

	.fn-nav {
		display: none;
		position: absolute;
		top: 76px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px 5%;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
		border-top: 1px solid #eef2f3;
	}

	.fn-nav.is-open {
		display: flex;
	}

	.fn-nav a {
		padding: 12px 4px;
		border-bottom: 1px solid #f0f3f4;
	}

	.fn-navcta {
		text-align: center;
		margin: 8px 0 4px;
	}

	.fn-hero .fn-content {
		width: 100%;
	}

	.fn-visual {
		opacity: 0.12;
		width: 100%;
		right: 0;
	}

	.fn-grid3,
	.fn-consultgrid,
	.fn-whygrid,
	.fn-contact-grid {
		grid-template-columns: 1fr;
	}

	.fn-productgrid {
		grid-template-columns: 1fr 1fr;
	}

	.fn-audience {
		grid-template-columns: 1fr 1fr;
	}

	.fn-steps {
		grid-template-columns: 1fr 1fr;
	}

	.fn-stripgrid {
		grid-template-columns: 1fr;
	}

	.fn-footergrid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.fn-heading h2,
	.fn-why h2,
	.fn-consult h2,
	.fn-cta h2 {
		font-size: 32px;
	}

	.fn-productgrid,
	.fn-audience,
	.fn-steps,
	.fn-specialists,
	.fn-footergrid {
		grid-template-columns: 1fr;
	}

	.fn-hero {
		min-height: 560px;
	}

	.fn-section {
		padding: 64px 0;
	}
}

/* ——— Product page ——— */
body.fn-product-page .fn-hero-product {
	min-height: 520px;
	padding: 48px 0 56px;
	align-items: stretch;
}

body.fn-product-page .fn-hero-product .fn-container {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
	width: 90%;
	max-width: 1180px;
	position: relative;
	z-index: 2;
}

.fn-hero-product .fn-content {
	width: 100%;
	padding: 20px 0;
}

.fn-hero-product h1 {
	font-size: clamp(32px, 4.5vw, 52px);
	line-height: 1.05;
	letter-spacing: -1.2px;
	margin-bottom: 16px;
	font-weight: 800;
}

.fn-hero-product h1 span {
	color: #00b29c;
}

.fn-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	color: #697276;
	margin-bottom: 16px;
}

.fn-breadcrumb a:hover {
	color: #00b29c;
}

.fn-breadcrumb-sep {
	opacity: 0.45;
}

.fn-hero-media {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	background: #e8f4f2;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
	aspect-ratio: 16 / 10;
	min-height: 260px;
}

.fn-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fn-hero-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.fn-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.fn-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.fn-hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 3;
}

.fn-hero-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	padding: 0;
}

.fn-hero-dot.is-active {
	background: #00b29c;
	box-shadow: 0 0 0 2px #fff;
}

.fn-about-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: start;
}

.fn-about-copy h2 {
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.15;
	margin: 6px 0 14px;
	font-weight: 800;
}

.fn-about-copy .fn-lead {
	color: #697176;
	margin-bottom: 18px;
}

.fn-about-copy h4 {
	font-size: 18px;
	margin: 22px 0 8px;
	font-weight: 800;
	color: #18252b;
}

.fn-about-copy p {
	color: #5d666a;
	margin-bottom: 12px;
}

.fn-about-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.fn-about-mosaic figure {
	margin: 0;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 1;
	background: #edf5f5;
}

.fn-about-mosaic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fn-about-mosaic figure:first-child {
	grid-row: span 2;
	aspect-ratio: auto;
	min-height: 100%;
}

.fn-detail-stack {
	display: grid;
	gap: 22px;
}

.fn-detail-block {
	background: #fff;
	border: 1px solid #edf0f1;
	border-radius: 22px;
	padding: 28px 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.fn-detail-block h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 14px;
	color: #18252b;
}

.fn-detail-block h4,
.fn-detail-block h6 {
	font-size: 16px;
	font-weight: 800;
	margin: 14px 0 6px;
	color: #00b29c;
}

.fn-detail-block p {
	font-size: 14px;
	color: #687176;
	margin-bottom: 8px;
}

.fn-detail-block ul {
	margin: 0 0 8px 18px;
	color: #687176;
	font-size: 14px;
}

.fn-detail-block li {
	margin-bottom: 6px;
}

.fn-benefit-headed {
	padding: 10px 0;
	border-bottom: 1px solid #f0f3f4;
}

.fn-benefit-headed:last-child {
	border-bottom: 0;
}

.fn-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.fn-gallery-grid a {
	display: block;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #edf5f5;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s;
}

.fn-gallery-grid a:hover {
	transform: translateY(-4px);
}

.fn-gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fn-related-list {
	display: grid;
	gap: 18px;
}

.fn-related-card {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 24px;
	align-items: center;
	background: #fff;
	border: 1px solid #edf0f1;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s, box-shadow 0.2s;
}

.fn-related-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.fn-related-media {
	height: 180px;
	background: linear-gradient(135deg, #edf5f5, #00b29c);
}

.fn-related-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fn-related-body {
	padding: 22px 24px 22px 0;
}

.fn-related-body h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 8px;
}

.fn-related-body p {
	font-size: 14px;
	color: #687176;
	margin-bottom: 8px;
}

.fn-related-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0 14px;
	padding: 0;
	list-style: none;
}

.fn-related-benefits li {
	background: #e9faf5;
	color: #16846c;
	font-size: 12px;
	font-weight: 800;
	padding: 6px 10px;
	border-radius: 999px;
}

/* Lightbox */
.fn-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(16, 25, 29, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.fn-lightbox.is-open {
	display: flex;
}

.fn-lightbox img {
	max-width: min(1100px, 92vw);
	max-height: 86vh;
	border-radius: 12px;
	object-fit: contain;
}

.fn-lightbox-close {
	position: absolute;
	top: 18px;
	right: 22px;
	border: 0;
	background: #fff;
	color: #18252b;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 980px) {
	body.fn-product-page .fn-hero-product .fn-container,
	.fn-about-grid,
	.fn-related-card {
		grid-template-columns: 1fr;
	}

	.fn-related-body {
		padding: 0 20px 20px;
	}

	.fn-related-media {
		height: 220px;
	}

	.fn-gallery-grid {
		grid-template-columns: 1fr 1fr;
	}

	.fn-about-mosaic figure:first-child {
		grid-row: auto;
		aspect-ratio: 1;
	}
}

@media (max-width: 600px) {
	.fn-gallery-grid {
		grid-template-columns: 1fr;
	}
}
