/* ==========================================================================
   Formal Peptides — Global Design System
   Phase 1 — DONE
   Mobile-first · BEM · CSS Custom Properties
   ========================================================================== */

/* --- Self-hosted Inter --- */
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/inter-medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-semibold.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/inter-bold.woff2') format('woff2');
}

/* --- Design Tokens --- */
:root {
	/* Colors — reference matched */
	--fp-navy-900: #002137;
	--fp-navy-800: #0a2844;
	--fp-navy-700: #0f3558;
	--fp-teal-500: #00A3C4;
	--fp-teal-600: #008fad;
	--fp-teal-400: #2dd4bf;
	--fp-teal-300: #5eead4;
	--fp-gold-400: #d4a853;
	--fp-gold-500: #c9972e;
	--fp-blue-100: #e8f4f8;
	--fp-blue-200: #d1ecf1;
	--fp-blue-300: #b8e0ea;
	--fp-gray-50: #f8fafc;
	--fp-gray-100: #f0f4f8;
	--fp-gray-200: #e2e8f0;
	--fp-gray-300: #cbd5e1;
	--fp-gray-400: #94a3b8;
	--fp-gray-500: #64748b;
	--fp-gray-600: #475569;
	--fp-gray-700: #334155;
	--fp-gray-800: #1e293b;
	--fp-white: #ffffff;
	--fp-red-500: #ef4444;
	--fp-red-600: #dc2626;

	/* Typography */
	--fp-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--fp-font-size-xs: 0.75rem;
	--fp-font-size-sm: 0.875rem;
	--fp-font-size-base: 1rem;
	--fp-font-size-lg: 1.125rem;
	--fp-font-size-xl: 1.25rem;
	--fp-font-size-2xl: 1.5rem;
	--fp-font-size-3xl: 1.875rem;
	--fp-font-size-4xl: 2.25rem;
	--fp-font-size-5xl: 3rem;
	--fp-line-height-tight: 1.2;
	--fp-line-height-normal: 1.6;
	--fp-line-height-relaxed: 1.75;

	/* Spacing */
	--fp-space-1: 0.25rem;
	--fp-space-2: 0.5rem;
	--fp-space-3: 0.75rem;
	--fp-space-4: 1rem;
	--fp-space-5: 1.25rem;
	--fp-space-6: 1.5rem;
	--fp-space-8: 2rem;
	--fp-space-10: 2.5rem;
	--fp-space-12: 3rem;
	--fp-space-16: 4rem;
	--fp-space-20: 5rem;
	--fp-space-24: 6rem;

	/* Layout */
	--fp-container-max: 1320px;
	--fp-container-narrow: 960px;
	--fp-content-width: 90%;
	--fp-content-gutter: 5%;
	--fp-header-height: 68px;
	--fp-header-height-scrolled: 58px;
	--fp-announcement-height: 36px;
	--fp-radius-sm: 4px;
	--fp-radius-md: 8px;
	--fp-radius-lg: 12px;
	--fp-radius-xl: 16px;
	--fp-radius-full: 9999px;

	/* Shadows */
	--fp-shadow-sm: 0 1px 2px rgba(5, 22, 38, 0.06);
	--fp-shadow-md: 0 4px 12px rgba(5, 22, 38, 0.08);
	--fp-shadow-lg: 0 8px 24px rgba(5, 22, 38, 0.12);
	--fp-shadow-card: 0 2px 8px rgba(5, 22, 38, 0.06);

	/* Transitions */
	--fp-transition: 0.2s ease;
	--fp-transition-slow: 0.35s ease;

	/* Breakpoints (reference — use literal values in @media) */
	/* mobile: max 767px | tablet: 768–1024px | desktop: min 1025px */
	/* WooCommerce blocks: max 781px / min 782px (wc-blocks.css only) */
}

/* --- Reset --- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	font-family: var(--fp-font-family);
	font-size: var(--fp-font-size-base);
	line-height: var(--fp-line-height-normal);
	color: var(--fp-gray-800);
	background-color: var(--fp-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.nav-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--fp-teal-600);
	text-decoration: none;
	transition: color var(--fp-transition);
}

a:hover {
	color: var(--fp-teal-500);
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

/* --- Utilities --- */
.container {
	width: var(--fp-content-width);
	max-width: none;
	margin-inline: var(--fp-content-gutter);
	padding-inline: 0;
	box-sizing: border-box;
}

.container--narrow {
	width: var(--fp-content-width);
	max-width: none;
	margin-inline: var(--fp-content-gutter);
}

/* WooCommerce cart / checkout — same 90% content band */
.container--wc {
	width: var(--fp-content-width);
	max-width: none;
	margin-inline: var(--fp-content-gutter);
	padding-inline: 0;
	box-sizing: border-box;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--fp-space-2);
	padding: 0.75rem 1.5rem;
	font-size: var(--fp-font-size-sm);
	font-weight: 600;
	line-height: 1;
	border-radius: 10px;
	transition: background-color var(--fp-transition), color var(--fp-transition), border-color var(--fp-transition), transform var(--fp-transition), box-shadow var(--fp-transition);
	white-space: nowrap;
}

.btn--primary {
	background-color: var(--fp-teal-500);
	color: var(--fp-white);
	border: 2px solid var(--fp-teal-500);
}

.btn--primary:hover {
	background-color: var(--fp-teal-600);
	border-color: var(--fp-teal-600);
	color: var(--fp-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 163, 196, 0.35);
}

.btn--outline {
	background-color: transparent;
	color: var(--fp-teal-500);
	border: 2px solid var(--fp-teal-500);
}

.btn--outline:hover {
	background-color: var(--fp-teal-500);
	color: var(--fp-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 163, 196, 0.25);
}

.btn--outline-white {
	background-color: transparent;
	color: var(--fp-white);
	border: 2px solid var(--fp-white);
}

.btn--outline-white:hover {
	background-color: var(--fp-white);
	color: var(--fp-navy-900);
}

.btn--sm {
	padding: 0.5rem 1rem;
	font-size: var(--fp-font-size-xs);
}

.btn--lg {
	padding: 1rem 2rem;
	font-size: var(--fp-font-size-base);
}

.btn--block {
	width: 100%;
}

.btn--glow {
	box-shadow: 0 0 24px rgba(0, 163, 196, 0.35);
}

.btn--glow:hover {
	box-shadow: 0 0 32px rgba(0, 163, 196, 0.5);
}

.btn--pill {
	border-radius: var(--fp-radius-full);
	padding-inline: 1.5rem;
}

.btn--outline-light {
	background: transparent;
	color: var(--fp-white);
	border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--fp-teal-400);
	color: var(--fp-teal-300);
}

.btn .fp-icon { margin-right: 6px; }
.btn .fp-icon:last-child { margin-right: 0; margin-left: 6px; }

/* --- Animated icons (Lucide / Subtle Icons compatible) --- */
.fp-icon { display: inline-block; vertical-align: middle; }

@keyframes fp-orbit {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes fp-glow-pulse {
	0%, 100% { box-shadow: 0 0 0 rgba(0, 163, 196, 0); }
	50% { box-shadow: 0 0 24px rgba(0, 163, 196, 0.25); }
}

@keyframes fp-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

@keyframes fp-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.85; transform: scale(1.06); }
}

@keyframes fp-slide {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(3px); }
}

.fp-icon--float { animation: fp-float 3s ease-in-out infinite; }
.fp-icon--orbit { animation: fp-orbit 4s ease-in-out infinite; }
.fp-icon--float.fp-icon--delay { animation-delay: 0.4s; }
.fp-icon--float.fp-icon--delay2 { animation-delay: 0.8s; }
.fp-icon--float.fp-icon--delay3 { animation-delay: 1.2s; }
.fp-icon--pulse { animation: fp-pulse 2.5s ease-in-out infinite; }
.fp-icon--pulse.fp-icon--delay { animation-delay: 0.3s; }
.fp-icon--pulse.fp-icon--delay2 { animation-delay: 0.6s; }
.fp-icon--pulse.fp-icon--delay3 { animation-delay: 0.9s; }
.fp-icon--slide { animation: fp-slide 1.5s ease-in-out infinite; }

/* --- Star ratings --- */
.fp-stars { display: inline-flex; gap: 2px; margin-bottom: 12px; }
.fp-stars__icon { font-size: 1rem; color: #cbd5e1; transition: color 0.2s ease; }
.fp-stars__icon.is-filled { color: #d4a853; }

/* --- Section Headers --- */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fp-space-4);
	margin-bottom: var(--fp-space-8);
}

.section-header--content {
	width: 70%;
	max-width: 70%;
	margin-inline: auto;
}

@media (max-width: 767px) {
	.section-header--content {
		width: 100%;
		max-width: 100%;
	}
}

.section-header__title {
	font-size: clamp(1.375rem, 2.5vw, 1.875rem);
	font-weight: 700;
	line-height: var(--fp-line-height-tight);
}

/* Gradient headings — site-wide brand accent */
.fp-heading-gradient,
.section-header__title,
.content-page__title,
.auth-card__title,
.fp-page-hero__title,
.qr-block__title,
.stats-band__title,
.reviews-panel__heading,
.product-related__title,
.contact-page__heading {
	background: linear-gradient(135deg, var(--fp-navy-900) 0%, var(--fp-teal-500) 55%, var(--fp-gold-400) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.hero .fp-heading-gradient,
.hero .hero__typewriter,
.stats-band .stats-band__title,
.fp-page-hero__title {
	background: linear-gradient(135deg, #ffffff 0%, var(--fp-teal-300) 45%, var(--fp-gold-400) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.hero__typewriter {
	display: inline;
	white-space: nowrap;
}

/* --- Price Gate --- */
.price-gate {
	font-size: var(--fp-font-size-sm);
	font-weight: 600;
	color: var(--fp-teal-600);
	text-decoration: underline;
}

.price-gate--pending {
	color: var(--fp-gray-500);
	text-decoration: none;
}

/* --- Product Card (shared component) — 3D elevated surface --- */
.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--fp-white);
	border: 1px solid rgba(0, 33, 55, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(0, 33, 55, 0.04),
		0 4px 14px rgba(0, 33, 55, 0.06),
		0 12px 32px rgba(0, 33, 55, 0.05);
	transform: translateY(0) scale(1);
	transition:
		transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.38s ease;
	will-change: transform, box-shadow;
}

.product-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
	z-index: 2;
}

.product-card:hover {
	border-color: rgba(0, 163, 196, 0.28);
	transform: translateY(-8px) scale(1.012);
	box-shadow:
		0 2px 4px rgba(0, 33, 55, 0.04),
		0 10px 28px rgba(0, 33, 55, 0.09),
		0 24px 52px rgba(0, 33, 55, 0.12),
		0 0 0 1px rgba(0, 163, 196, 0.06);
}

.product-card:active {
	transform: translateY(-3px) scale(0.992);
	transition-duration: 0.12s;
	box-shadow:
		0 1px 3px rgba(0, 33, 55, 0.06),
		0 6px 18px rgba(0, 33, 55, 0.08),
		0 14px 32px rgba(0, 33, 55, 0.07);
}

.product-card__image-wrap {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #eef3f8;
}

.product-card:hover .product-card__image-wrap {
	background: #e8f0f6;
}

.product-card__image-wrap img,
.product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__image {
	transform: scale(1.04);
}

.product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 11px;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--fp-white);
	background: var(--fp-teal-500);
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 4px 12px rgba(0, 163, 196, 0.35);
	z-index: 1;
}

.product-card__badge:not(.product-card__badge--soon) {
	display: none;
}

.product-card__badge--soon {
	left: auto;
	right: 12px;
	background: var(--fp-red-500);
}

.product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 18px 14px;
	gap: 6px;
}

.product-card__title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--fp-navy-900);
	line-height: 1.35;
	text-align: center;
}

.product-card__title a {
	color: inherit;
}

.product-card__title a:hover {
	color: var(--fp-teal-500);
}

.product-card__meta {
	font-size: 0.75rem;
	color: var(--fp-gray-500);
	line-height: 1.4;
	text-align: center;
}

.product-card__stock {
	margin: 2px 0 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: #16a34a;
	text-align: center;
}

.product-card__price {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--fp-navy-900);
	margin-top: auto;
	padding-top: 10px;
	text-align: center;
}

.product-card__price .amount,
.product-card__price bdi {
	color: var(--fp-navy-900);
}

.product-card__footer {
	padding: 0 18px 18px;
	margin-top: auto;
}

.product-card__footer .btn {
	width: 100%;
	padding: 11px 16px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	border-radius: 999px;
	transition:
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease;
}

.product-card__footer .btn:active {
	transform: scale(0.97);
}

.product-card__select-btn {
	text-transform: uppercase;
}

.product-card__placeholder-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20%;
	opacity: 0.35;
	box-sizing: border-box;
}

/* --- Product Grid --- */
.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(18px, 2.5vw, 28px);
}

@media (min-width: 640px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (min-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

@media (min-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================================
   Header — full width, white bar, centered nav on desktop
   ========================================================================== */
.announcement-bar {
	width: 100%;
	max-width: 100%;
	background: var(--fp-teal-500);
	color: var(--fp-white);
	text-align: center;
	padding: 10px 16px;
	font-size: var(--fp-font-size-sm);
	font-weight: 500;
}

.announcement-bar p { margin: 0; }

.site-header {
	width: 100%;
	max-width: 100%;
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--fp-gray-200);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 6px 28px rgba(0, 33, 55, 0.1);
	background: rgba(255, 255, 255, 0.99);
}

.site-header.is-scrolled .header__inner {
	height: var(--fp-header-height-scrolled);
}

.site-header.is-scrolled .header__logo-text {
	font-size: 1.2rem;
}

.header__container {
	width: var(--fp-content-width);
	max-width: none;
	margin-inline: var(--fp-content-gutter);
	padding-inline: 0;
	box-sizing: border-box;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--fp-header-height);
	gap: var(--fp-space-6);
	transition: height 0.3s ease;
}

@media (min-width: 1024px) {
	.header__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	.header__logo { justify-self: start; }
	.header__nav { justify-self: center; display: block; }
	.header__actions { justify-self: end; }
}

.header__logo {
	display: flex;
	align-items: center;
	gap: var(--fp-space-2);
	flex-shrink: 0;
	text-decoration: none;
	background: #ffffff;
	border-radius: 8px;
	padding: 4px 10px;
	line-height: 0;
}

.fp-site-logo__img {
	display: block;
	width: auto;
	max-width: min(280px, 42vw);
	height: auto;
	object-fit: contain;
	background: #ffffff !important;
}

.fp-site-logo--header .fp-site-logo__img {
	max-height: 52px;
}

.fp-site-logo--footer .fp-site-logo__img {
	max-height: 44px;
}

.header__logo-text {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--fp-navy-900);
	letter-spacing: -0.02em;
}

.header__logo-text span {
	color: var(--fp-teal-500);
}

.header__nav {
	display: none;
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.header__nav-link {
	font-size: 1rem;
	font-weight: 600;
	color: var(--fp-gray-700);
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.2s ease;
}

.header__nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--fp-teal-500);
	transition: width 0.25s ease;
}

.header__nav-link:hover {
	color: var(--fp-navy-900);
}

.header__nav-link:hover::after {
	width: 100%;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: var(--fp-space-2);
}

.header__icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--fp-navy-900);
	background: var(--fp-gray-50);
	border: 1px solid var(--fp-gray-200);
	border-radius: var(--fp-radius-md);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header__icon-btn:hover {
	background: var(--fp-blue-100);
	border-color: var(--fp-teal-500);
	color: var(--fp-teal-600);
	transform: translateY(-1px);
}

.header__icon-btn .fp-icon {
	display: block;
	stroke-width: 2.25;
}

.header__cart-wrap {
	position: relative;
}

.header__cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	font-size: 11px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	color: var(--fp-white);
	background: var(--fp-teal-500);
	border-radius: var(--fp-radius-full);
	border: 2px solid var(--fp-white);
}

.header__cart-count.is-empty {
	display: none;
}

.header__menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--fp-navy-900);
	background: var(--fp-blue-100);
	border: 1px solid var(--fp-gray-200);
	border-radius: 10px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header__menu-toggle:hover {
	background: var(--fp-teal-500);
	border-color: var(--fp-teal-500);
	color: var(--fp-white);
}

.header__menu-toggle.is-open {
	background: var(--fp-navy-900);
	border-color: var(--fp-navy-900);
	color: var(--fp-white);
}

.header__menu-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.header__menu-icon--close {
	position: absolute;
	opacity: 0;
	transform: rotate(-90deg) scale(0.6);
}

.header__menu-toggle.is-open .header__menu-icon--open {
	opacity: 0;
	transform: rotate(90deg) scale(0.6);
}

.header__menu-toggle.is-open .header__menu-icon--close {
	opacity: 1;
	transform: rotate(0) scale(1);
}

.header__mobile-nav {
	display: block;
	position: fixed;
	inset: 0;
	top: calc(var(--fp-header-height) + var(--fp-announcement-height));
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(16px);
	z-index: 199;
	padding: var(--fp-space-6);
	overflow-y: auto;
	transform: translateY(-8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.header__mobile-nav.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: var(--fp-space-1);
}

.header__mobile-nav-link {
	display: block;
	padding: var(--fp-space-4);
	font-size: var(--fp-font-size-lg);
	font-weight: 600;
	color: var(--fp-navy-900);
	border-bottom: 1px solid var(--fp-gray-100);
}

@media (min-width: 1024px) {
	.header__nav {
		display: block;
	}

	.header__menu-toggle {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.header__menu-toggle {
		display: flex;
	}
}

/* ==========================================================================
   Footer — Phase 1 DONE
   ========================================================================== */
.site-footer {
	width: 100%;
	max-width: 100%;
	position: relative;
	background: var(--fp-navy-900);
	color: var(--fp-gray-300);
	padding-top: var(--fp-space-12);
	margin-top: var(--fp-space-16);
}

.footer__container {
	width: var(--fp-content-width);
	max-width: none;
	margin-inline: var(--fp-content-gutter);
	padding: 0 0 var(--fp-space-8);
	box-sizing: border-box;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fp-space-10);
	padding-bottom: var(--fp-space-10);
	align-items: start;
}

.footer__brand-logo {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
	margin-bottom: var(--fp-space-4);
	background: #ffffff;
	border-radius: 8px;
	padding: 6px 12px;
}

.footer__brand-desc {
	font-size: var(--fp-font-size-sm);
	line-height: var(--fp-line-height-relaxed);
	max-width: 320px;
}

.footer__heading {
	font-size: var(--fp-font-size-sm);
	font-weight: 700;
	color: var(--fp-white);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--fp-space-4);
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: var(--fp-space-3);
}

.footer__link {
	font-size: var(--fp-font-size-sm);
	color: var(--fp-gray-400);
	transition: color var(--fp-transition);
}

.footer__link:hover {
	color: var(--fp-teal-400);
}

.footer__newsletter-text {
	font-size: var(--fp-font-size-sm);
	margin-bottom: var(--fp-space-4);
	line-height: var(--fp-line-height-relaxed);
}

.footer__newsletter-form {
	display: flex;
	gap: var(--fp-space-2);
}

.footer__newsletter-input {
	flex: 1;
	padding: 0.75rem 1rem;
	font-size: var(--fp-font-size-sm);
	color: var(--fp-navy-900);
	background: var(--fp-white);
	border: none;
	border-radius: var(--fp-radius-md);
}

.footer__newsletter-input::placeholder {
	color: var(--fp-gray-400);
}

.footer__newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: var(--fp-space-2);
}

.footer__disclaimer-wrap {
	padding: var(--fp-space-6) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--fp-space-6);
}

.footer__disclaimer {
	width: 100%;
	max-width: none;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.6875rem;
	text-align: center;
	margin: 0;
}

.footer__bottom {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fp-space-4);
	align-items: center;
	padding: var(--fp-space-4) 0 var(--fp-space-6);
	font-size: var(--fp-font-size-xs);
	color: var(--fp-gray-500);
	text-align: center;
}

.footer__copyright {
	margin: 0;
}

.footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--fp-space-4);
}

.footer__bottom-link {
	color: var(--fp-gray-500);
}

.footer__bottom-link:hover {
	color: var(--fp-teal-400);
}

.footer__payments {
	display: flex;
	gap: var(--fp-space-3);
	opacity: 0.6;
}

.footer__payment-icon {
	font-size: var(--fp-font-size-xs);
	font-weight: 600;
	color: var(--fp-gray-400);
	padding: var(--fp-space-1) var(--fp-space-2);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--fp-radius-sm);
}

@media (min-width: 1025px) {
	.footer__grid {
		grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
		gap: var(--fp-space-8);
	}

	.footer__bottom {
		grid-template-columns: 1fr auto auto;
		text-align: left;
	}

	.footer__bottom-links,
	.footer__payments {
		justify-self: end;
	}
}

/* Footer — futuristic enhancements */
.site-footer {
	overflow: hidden;
}

.footer__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 60% 40% at 20% 0%, rgba(0, 163, 196, 0.18) 0%, transparent 60%),
		radial-gradient(ellipse 50% 35% at 80% 100%, rgba(212, 168, 83, 0.08) 0%, transparent 55%);
	animation: fp-footer-glow 8s ease-in-out infinite alternate;
}

@keyframes fp-footer-glow {
	0% { opacity: 0.7; transform: scale(1); }
	100% { opacity: 1; transform: scale(1.02); }
}

.footer__brand-logo {
	display: inline-block;
	text-decoration: none;
	transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.footer__brand-logo:hover {
	transform: translateY(-2px);
	text-shadow: 0 0 24px rgba(0, 163, 196, 0.35);
}

.footer__social {
	display: flex;
	gap: var(--fp-space-3);
	margin-top: var(--fp-space-5);
}

.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--fp-white);
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer__social-link:hover {
	transform: translateY(-3px);
	background: rgba(0, 163, 196, 0.25);
	border-color: var(--fp-teal-400);
	box-shadow: 0 8px 24px rgba(0, 163, 196, 0.25);
	color: var(--fp-white);
}

.footer__heading {
	position: relative;
	padding-bottom: var(--fp-space-2);
}

.footer__heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, var(--fp-teal-400), transparent);
	border-radius: 2px;
}

.footer__link {
	display: inline-block;
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer__link:hover {
	transform: translateX(4px);
}

.footer__newsletter-btn {
	flex-shrink: 0;
	padding: 0.75rem 1.25rem;
	font-size: var(--fp-font-size-sm);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--fp-navy-900);
	background: linear-gradient(135deg, var(--fp-white) 0%, #e8f4f8 100%);
	border: none;
	border-radius: var(--fp-radius-md);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer__newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 163, 196, 0.35);
}

.footer__newsletter-input:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 163, 196, 0.35);
}

/* Moving brand marquee */
.footer-marquee {
	position: relative;
	width: 100%;
	flex-shrink: 0;
	padding: 0;
	overflow: hidden;
	background: transparent;
	border: none;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.footer-marquee::before {
	display: none;
}

.footer-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: fp-marquee-scroll 60s linear infinite;
	will-change: transform;
}

.footer-marquee__word {
	font-size: clamp(1.75rem, 4.5vw, 3.25rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	background: linear-gradient(135deg, var(--fp-white) 0%, var(--fp-teal-300) 50%, var(--fp-teal-400) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
	filter: drop-shadow(0 0 30px rgba(0, 163, 196, 0.2));
}

.footer-marquee__dot {
	display: inline-block;
	margin: 0 clamp(20px, 4vw, 48px);
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: var(--fp-teal-400);
	opacity: 0.6;
	animation: fp-marquee-pulse 2s ease-in-out infinite;
}

@keyframes fp-marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes fp-marquee-pulse {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.2); }
}

.footer__container--bottom {
	padding-top: var(--fp-space-4);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (min-width: 1024px) {
	.section-header__title {
		font-size: var(--fp-font-size-3xl);
	}
}

/* --- Accordion (shared: Home, FAQ) --- */
.accordion {
	display: flex;
	flex-direction: column;
	gap: var(--fp-space-3);
}

.accordion--animated .accordion__item {
	border: 1px solid var(--fp-gray-200);
	border-radius: 12px;
	overflow: hidden;
	background: var(--fp-white);
	transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.accordion--animated .accordion__item.is-active {
	border-color: var(--fp-navy-900);
	box-shadow: 0 10px 36px rgba(0, 33, 55, 0.1);
}

.accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.125rem 1.375rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-align: left;
	color: var(--fp-navy-900) !important;
	background: var(--fp-gray-50);
	border: none;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.accordion__question {
	flex: 1;
	padding-right: 12px;
	color: inherit;
}

.accordion__item.is-active .accordion__trigger {
	background: var(--fp-navy-900);
	color: var(--fp-white) !important;
}

.accordion__icon {
	position: relative;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(0, 163, 196, 0.12);
	transition: transform 0.25s ease, background 0.25s ease;
}

.accordion__item.is-active .accordion__icon {
	background: rgba(255, 255, 255, 0.15);
}

.accordion__icon::before,
.accordion__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion__icon::before { width: 12px; height: 2px; }
.accordion__icon::after { width: 2px; height: 12px; }

.accordion__item.is-active .accordion__icon::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.accordion--animated .accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--fp-white);
}

.accordion--animated .accordion__item.is-active .accordion__panel {
	grid-template-rows: 1fr;
}

.accordion--animated .accordion__panel-inner {
	overflow: hidden;
	padding: 0 1.375rem;
	transition: padding 0.28s ease;
}

.accordion--animated .accordion__item.is-active .accordion__panel-inner {
	padding: 0.25rem 1.375rem 1.25rem;
}

.accordion--animated .accordion__panel-inner p {
	font-size: var(--fp-font-size-sm);
	color: var(--fp-gray-600);
	line-height: var(--fp-line-height-relaxed);
	margin: 0 0 0.75rem;
}

.accordion--animated .accordion__panel-inner p:last-child {
	margin-bottom: 0;
}

/* Pill-style accordion (Modern Aminos) */
.accordion--pill {
	gap: 10px;
}

.accordion--pill .accordion__item {
	border: none;
	border-radius: 0;
	overflow: visible;
	background: transparent;
	box-shadow: none;
}

.accordion--pill .accordion__item.is-active {
	border: none;
	box-shadow: none;
}

.accordion--pill .accordion__trigger {
	border-radius: var(--fp-radius-full);
	background: #eef4f9;
	color: var(--fp-navy-900) !important;
	border: 1px solid rgba(0, 33, 55, 0.06);
	padding: 1rem 1.375rem;
}

.accordion--pill .accordion__item.is-active .accordion__trigger {
	background: var(--fp-navy-900);
	color: var(--fp-white) !important;
	border-color: var(--fp-navy-900);
	border-radius: 14px 14px 0 0;
}

.accordion--pill .accordion__item:not(.is-active) .accordion__trigger:hover {
	background: #e3edf6;
}

.accordion--pill .accordion__icon {
	background: rgba(0, 163, 196, 0.15);
	color: var(--fp-navy-900);
}

.accordion--pill .accordion__item.is-active .accordion__icon {
	background: rgba(255, 255, 255, 0.18);
	color: var(--fp-white);
}

.accordion--pill .accordion__panel {
	border: 1px solid var(--fp-gray-200);
	border-top: none;
	border-radius: 0 0 14px 14px;
	overflow: hidden;
}

.accordion--pill .accordion__item.is-active .accordion__panel-inner {
	padding: 1rem 1.375rem 1.25rem;
}

.section-header--center {
	justify-content: center;
	text-align: center;
}

/* --- Content pages (About, FAQ, Contact, Blog) --- */
.content-page {
	padding: var(--fp-space-12) 0 var(--fp-space-20);
}

.content-page__title {
	font-size: var(--fp-font-size-3xl);
	font-weight: 700;
	color: var(--fp-navy-900);
	margin-bottom: var(--fp-space-4);
}

.content-page__lead {
	font-size: var(--fp-font-size-lg);
	color: var(--fp-gray-600);
	margin-bottom: var(--fp-space-8);
	line-height: var(--fp-line-height-relaxed);
}

.content-page__body {
	font-size: var(--fp-font-size-base);
	color: var(--fp-gray-600);
	line-height: var(--fp-line-height-relaxed);
}

.content-page__body p { margin-bottom: var(--fp-space-4); }

.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--fp-space-8);
}

.blog-card {
	border: 1px solid var(--fp-gray-200);
	border-radius: var(--fp-radius-lg);
	overflow: hidden;
}

.blog-card__body { padding: var(--fp-space-6); }
.blog-card__date { font-size: var(--fp-font-size-xs); color: var(--fp-gray-400); }
.blog-card__title { font-size: var(--fp-font-size-xl); font-weight: 700; margin: var(--fp-space-2) 0; }
.blog-card__title a { color: var(--fp-navy-900); }
.blog-card__excerpt { font-size: var(--fp-font-size-sm); color: var(--fp-gray-600); }

@media (min-width: 768px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Particle background — disabled site-wide --- */
.fp-particles {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* --- Full-width overrides (Hello Elementor / parent theme) --- */
.page-header,
.entry-title,
.site-footer .footer-inner,
.site-footer:not(.dynamic-footer),
.site-header .header-inner,
.site-header:not(.dynamic-header),
body:not([class*=elementor-page-]) .site-main,
.site-footer,
.site-header {
	max-width: 100% !important;
	width: 100%;
}

.header__container,
.footer__container {
	width: var(--fp-content-width);
	max-width: none;
	margin-inline: var(--fp-content-gutter);
}

/* --- Footer dynamics --- */
.footer__link,
.footer__bottom-link {
	transition: color 0.25s ease, transform 0.25s ease;
	display: inline-block;
}

.footer__link:hover,
.footer__bottom-link:hover {
	color: var(--fp-teal-400);
	transform: translateX(3px);
}

.footer__brand-logo {
	transition: text-shadow 0.3s ease;
}

.footer__brand-logo:hover {
	text-shadow: 0 0 24px rgba(0, 163, 196, 0.35);
}

.footer__payment-icon {
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer__payment-icon:hover {
	transform: translateY(-2px);
	opacity: 1;
}

/* --- Shared WC / inner pages (Modern Aminos style) --- */
.fp-page-hero {
	background: var(--fp-navy-900);
	color: var(--fp-white);
	padding: clamp(48px, 7vw, 72px) 0;
	text-align: center;
}

.fp-page-hero__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.fp-page-hero__subtitle {
	font-size: var(--fp-font-size-sm);
	color: var(--fp-gold-400);
	font-style: italic;
	max-width: 640px;
	margin: 0 auto;
}

.fp-wc-page {
	margin: 0;
	padding: 0;
}

.fp-wc-page__body {
	padding: var(--fp-space-10) 0 var(--fp-space-16);
}

.fp-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--fp-space-6);
}

.fp-sidebar__card {
	background: var(--fp-white);
	border-radius: var(--fp-radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(0, 33, 55, 0.08);
	border: 1px solid var(--fp-gray-200);
}

.fp-sidebar__header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: var(--fp-teal-500);
	color: var(--fp-white);
	font-weight: 700;
	font-size: var(--fp-font-size-sm);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.fp-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-sidebar__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 18px;
	font-size: var(--fp-font-size-sm);
	font-weight: 600;
	color: var(--fp-navy-900);
	border: none;
	background: transparent;
	border-bottom: 1px solid var(--fp-gray-100);
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.fp-sidebar__link:last-child {
	border-bottom: none;
}

.fp-sidebar__link:hover,
.fp-sidebar__link.is-active {
	background: rgba(0, 163, 196, 0.1);
	color: var(--fp-teal-600);
}

.fp-sidebar__help {
	background: var(--fp-navy-900);
	color: rgba(255, 255, 255, 0.85);
	border-radius: var(--fp-radius-lg);
	padding: var(--fp-space-6);
	box-shadow: 0 8px 24px rgba(0, 33, 55, 0.15);
}

.fp-sidebar__help-title {
	font-size: var(--fp-font-size-base);
	font-weight: 700;
	color: var(--fp-white);
	margin-bottom: var(--fp-space-2);
}

.fp-sidebar__help p {
	font-size: var(--fp-font-size-sm);
	margin-bottom: var(--fp-space-3);
	opacity: 0.85;
}

.fp-sidebar__help-link {
	font-size: var(--fp-font-size-sm);
	color: var(--fp-teal-400);
	word-break: break-all;
}

.fp-card {
	background: var(--fp-white);
	border-radius: var(--fp-radius-lg);
	border: 1px solid var(--fp-gray-200);
	box-shadow: 0 12px 40px rgba(0, 33, 55, 0.08);
}

/* Hello Elementor / WP layout reset */
body:not([class*=elementor-page-]) .site-main,
#main.site-main {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
