/**
 * Forward March Pro - Main Design System & Global Styles
 * Brand: Forward March Outdoor Apparel
 */

:root {
	/* Color Palette */
	--fm-color-primary: #12211c;         /* Deep Forest Slate */
	--fm-color-primary-light: #1c322b;
	--fm-color-olive: #4A5A3A;           /* Field Olive Drab */
	--fm-color-sand: #C2B59B;            /* Khaki / Stencil Sand */
	--fm-color-parchment: #E7E3D6;       /* Clean Canvas Cream */
	--fm-color-rust: #A14B2A;            /* Heritage Trail Rust */
	--fm-color-accent: #e07a2c;          /* Trail Ochre / Warm Amber */
	--fm-color-accent-hover: #c96518;
	--fm-color-accent-light: #fff4ec;
	--fm-color-dark: #181c1a;            /* Charcoal */
	--fm-color-body: #374151;            /* Slate Text */
	--fm-color-muted: #6b7280;           /* Muted Text */
	--fm-color-border: #e5e7eb;          /* Card & Line Borders */
	--fm-color-bg-light: #f8faf9;        /* Soft Off-White Surface */
	--fm-color-bg-alt: #f1f5f3;
	--fm-color-white: #ffffff;
	--fm-color-gold: #f59e0b;
	--fm-color-green: #10b981;
	--fm-color-danger: #ef4444;

	/* Typography */
	--fm-font-stencil: 'Bebas Neue', 'Outfit', sans-serif;
	--fm-font-display: 'Bebas Neue', 'Outfit', -apple-system, sans-serif;
	--fm-font-technical: 'IBM Plex Sans', 'Inter', sans-serif;
	--fm-font-body: 'IBM Plex Sans', 'Inter', -apple-system, sans-serif;
	--fm-font-editorial: 'Playfair Display', Georgia, serif;
	--fm-font-typewriter: 'Special Elite', monospace;

	/* Layout & Spacing */
	--fm-container-max: 1280px;
	--fm-header-height: 80px;
	--fm-announcement-height: 38px;
	--fm-radius-sm: 6px;
	--fm-radius-md: 12px;
	--fm-radius-lg: 20px;
	--fm-radius-full: 9999px;

	/* Shadows */
	--fm-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--fm-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--fm-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
	--fm-shadow-drawer: -4px 0 25px rgba(0, 0, 0, 0.25);

	/* Transitions */
	--fm-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
 * RESET & BASE STYLES
 * ----------------------------------------------------------- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--fm-font-body);
	color: var(--fm-color-body);
	background-color: var(--fm-color-white);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--fm-font-display);
	color: var(--fm-color-dark);
	font-weight: 700;
	line-height: 1.25;
}

p {
	margin-bottom: 1rem;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--fm-transition);
}

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

ul, ol {
	list-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
}

button {
	cursor: pointer;
	border: none;
	background: none;
}

.fm-container {
	width: 100%;
	max-width: var(--fm-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

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

/* -------------------------------------------------------------
 * BUTTONS & BADGES
 * ----------------------------------------------------------- */
.fm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--fm-font-display);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	padding: 0.8rem 1.6rem;
	border-radius: var(--fm-radius-full);
	transition: var(--fm-transition);
	cursor: pointer;
	text-align: center;
}

.fm-btn-primary {
	background-color: var(--fm-color-accent);
	color: var(--fm-color-white);
	box-shadow: 0 4px 14px rgba(224, 122, 44, 0.35);
}

.fm-btn-primary:hover {
	background-color: var(--fm-color-accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(224, 122, 44, 0.45);
	color: var(--fm-color-white);
}

.fm-btn-secondary {
	background-color: var(--fm-color-primary);
	color: var(--fm-color-white);
}

.fm-btn-secondary:hover {
	background-color: var(--fm-color-primary-light);
	transform: translateY(-2px);
	color: var(--fm-color-white);
}

.fm-btn-ghost {
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--fm-color-white);
	border: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
}

.fm-btn-ghost:hover {
	background-color: rgba(255, 255, 255, 0.3);
	border-color: var(--fm-color-white);
	color: var(--fm-color-white);
}

.fm-btn-white {
	background-color: var(--fm-color-white);
	color: var(--fm-color-dark);
	box-shadow: var(--fm-shadow-md);
}

.fm-btn-white:hover {
	background-color: var(--fm-color-bg-light);
	transform: translateY(-2px);
}

.fm-btn-outline {
	border: 1px solid var(--fm-color-border);
	color: var(--fm-color-dark);
}

.fm-btn-outline:hover {
	border-color: var(--fm-color-dark);
	background-color: var(--fm-color-dark);
	color: var(--fm-color-white);
}

.fm-btn-accent {
	background-color: var(--fm-color-accent);
	color: var(--fm-color-white);
}

.fm-btn-accent:hover {
	background-color: var(--fm-color-accent-hover);
}

.fm-btn-lg {
	padding: 1rem 2.2rem;
	font-size: 1.05rem;
}

.fm-btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}

.fm-btn-block {
	width: 100%;
}

.fm-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-family: var(--fm-font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.65rem;
	border-radius: var(--fm-radius-full);
	text-transform: uppercase;
}

.fm-badge-sale {
	background-color: var(--fm-color-danger);
	color: var(--fm-color-white);
}

.fm-badge-new {
	background-color: var(--fm-color-primary);
	color: var(--fm-color-white);
}

.fm-badge-stock {
	background-color: #ecfdf5;
	color: #065f46;
	font-weight: 600;
}

.fm-badge-accent {
	background-color: rgba(224, 122, 44, 0.15);
	color: var(--fm-color-accent);
	font-weight: 700;
}

.fm-section-tag {
	display: inline-block;
	font-family: var(--fm-font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--fm-color-accent);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.fm-section-title {
	font-size: 2.25rem;
	color: var(--fm-color-dark);
	margin-bottom: 0.75rem;
}

.fm-section-sub {
	color: var(--fm-color-muted);
	font-size: 1.05rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.5rem;
}

/* -------------------------------------------------------------
 * ANNOUNCEMENT BAR
 * ----------------------------------------------------------- */
.fm-announcement-bar {
	background-color: var(--fm-color-primary);
	color: var(--fm-color-white);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 0.55rem 0;
	position: relative;
	z-index: 1001;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-announcement-slider {
	position: relative;
	text-align: center;
	min-height: 1.25rem;
}

.fm-announcement-slide {
	display: none;
	animation: fadeIn 0.4s ease-in-out;
}

.fm-announcement-slide.active {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.fm-pulse-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #34d399;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
	70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
	100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
 * STICKY SITE HEADER
 * ----------------------------------------------------------- */
.fm-site-header {
	background-color: var(--fm-color-white);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--fm-transition);
	border-bottom: 1px solid var(--fm-color-border);
}

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

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

.fm-site-header.is-scrolled {
	box-shadow: var(--fm-shadow-md);
	background-color: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
}

.fm-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--fm-header-height);
	gap: 1.5rem;
}

.fm-site-branding {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.fm-site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	max-height: 52px;
}

.fm-site-branding .custom-logo,
.fm-site-branding img {
	max-height: 52px;
	width: auto;
	max-width: 200px;
	height: auto;
	object-fit: contain;
	display: block;
}

.fm-brand-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.fm-brand-logo-svg {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	border-radius: var(--fm-radius-sm);
	overflow: hidden;
	box-shadow: var(--fm-shadow-sm);
}

.fm-brand-text-block {
	display: flex;
	flex-direction: column;
}

.fm-brand-text {
	font-family: var(--fm-font-stencil);
	font-weight: 900;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	color: var(--fm-color-primary);
	line-height: 1;
}

.fm-brand-tagline {
	font-family: var(--fm-font-technical);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--fm-color-rust);
	margin-top: 0.2rem;
	text-transform: uppercase;
}

/* Navigation Menu */
.fm-main-navigation {
	display: flex;
	align-items: center;
}

.fm-nav-menu {
	display: flex;
	align-items: center;
	gap: 1.8rem;
}

.fm-nav-menu > li {
	position: relative;
}

.fm-nav-menu > li > a {
	font-family: var(--fm-font-display);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--fm-color-dark);
	padding: 0.5rem 0;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.fm-nav-menu > li > a:hover {
	color: var(--fm-color-accent);
}

.fm-dropdown-arrow {
	font-size: 0.75rem;
	transition: var(--fm-transition);
}

.fm-nav-menu > li:hover .fm-dropdown-arrow {
	transform: rotate(180deg);
}

/* Sub-menu Dropdown */
.fm-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--fm-color-white);
	min-width: 210px;
	padding: 0.75rem 0;
	border-radius: var(--fm-radius-md);
	box-shadow: var(--fm-shadow-lg);
	border: 1px solid var(--fm-color-border);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--fm-transition);
	z-index: 100;
}

.fm-nav-menu > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fm-nav-menu .sub-menu li a {
	display: block;
	padding: 0.6rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--fm-color-body);
}

.fm-nav-menu .sub-menu li a:hover {
	background-color: var(--fm-color-bg-light);
	color: var(--fm-color-accent);
	padding-left: 1.5rem;
}

/* Header Actions */
.fm-header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.fm-header-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--fm-color-dark);
	transition: var(--fm-transition);
	position: relative;
}

.fm-header-btn:hover {
	background-color: var(--fm-color-bg-light);
	color: var(--fm-color-accent);
}

.fm-cart-trigger {
	width: auto;
	height: auto;
	padding: 0.4rem 0.8rem;
	border-radius: var(--fm-radius-full);
	background-color: var(--fm-color-bg-light);
	border: 1px solid var(--fm-color-border);
	gap: 0.5rem;
}

.fm-cart-trigger:hover {
	background-color: var(--fm-color-primary);
	color: var(--fm-color-white);
	border-color: var(--fm-color-primary);
}

.fm-cart-icon-wrapper {
	position: relative;
	display: inline-flex;
}

.cart-count-badge {
	position: absolute;
	top: -8px;
	right: -10px;
	background-color: var(--fm-color-accent);
	color: var(--fm-color-white);
	font-size: 0.7rem;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.fm-cart-subtotal-header {
	font-family: var(--fm-font-display);
	font-weight: 700;
	font-size: 0.9rem;
}

.fm-mobile-menu-toggle {
	display: none;
	font-size: 1.5rem;
	color: var(--fm-color-dark);
}

/* -------------------------------------------------------------
 * HERO SECTION
 * ----------------------------------------------------------- */
.fm-hero-section {
	position: relative;
	background: linear-gradient(135deg, #111e19 0%, #1e352c 60%, #152620 100%);
	color: var(--fm-color-white);
	padding: 6.5rem 0 5.5rem;
	overflow: hidden;
}

.fm-hero-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(224, 122, 44, 0.15) 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: 0.6;
	pointer-events: none;
}

.fm-hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.fm-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 0.4rem 1rem;
	border-radius: var(--fm-radius-full);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.fm-star-icon {
	color: #fbbf24;
	letter-spacing: 2px;
}

.fm-hero-title {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--fm-color-white);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.fm-hero-title span {
	color: var(--fm-color-accent);
}

.fm-hero-subtitle {
	font-size: 1.2rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2.2rem;
	max-width: 640px;
}

.fm-hero-cta-group {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.fm-hero-highlights {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	flex-wrap: wrap;
}

.fm-hero-hl-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.fm-hl-icon {
	font-size: 1.1rem;
}

/* -------------------------------------------------------------
 * COLLECTIONS SECTION
 * ----------------------------------------------------------- */
.fm-collections-section {
	padding: 5rem 0;
	background-color: var(--fm-color-bg-light);
}

.fm-collections-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.fm-collection-card {
	position: relative;
	border-radius: var(--fm-radius-lg);
	overflow: hidden;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
	color: var(--fm-color-white);
	box-shadow: var(--fm-shadow-md);
	transition: var(--fm-transition);
}

.fm-collection-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--fm-shadow-lg);
}

.fm-collection-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
	z-index: 1;
}

.fm-collection-card:hover .fm-collection-bg {
	transform: scale(1.06);
}

.fm-collection-content {
	position: relative;
	z-index: 2;
}

.fm-collection-count {
	display: inline-block;
	font-family: var(--fm-font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--fm-color-accent);
	margin-bottom: 0.4rem;
}

.fm-collection-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--fm-color-white);
	margin-bottom: 0.5rem;
}

.fm-collection-desc {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------
 * PRODUCTS SECTION & GRID CARDS
 * ----------------------------------------------------------- */
.fm-products-section {
	padding: 5rem 0;
	background-color: var(--fm-color-white);
}

.fm-section-header-flex {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.fm-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--fm-font-display);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--fm-color-accent);
}

.fm-link-arrow:hover {
	color: var(--fm-color-accent-hover);
	transform: translateX(4px);
}

.fm-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.8rem;
	margin-bottom: 3.5rem;
}

.fm-product-card {
	background-color: var(--fm-color-white);
	border: 1px solid var(--fm-color-border);
	border-radius: var(--fm-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--fm-transition);
	position: relative;
}

.fm-product-card:hover {
	border-color: rgba(224, 122, 44, 0.35);
	box-shadow: var(--fm-shadow-lg);
	transform: translateY(-4px);
}

.fm-card-media-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	background-color: var(--fm-color-bg-light);
	overflow: hidden;
}

.fm-card-image-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.fm-product-img-primary,
.fm-product-img-secondary {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--fm-transition);
}

.fm-product-img-secondary {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.fm-product-card:hover .fm-product-img-secondary {
	opacity: 1;
}

.fm-product-card:hover .fm-product-img-primary {
	transform: scale(1.04);
}

.fm-card-media-wrapper .fm-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 3;
}

.fm-card-quick-actions {
	position: absolute;
	bottom: 0.75rem;
	left: 0.75rem;
	right: 0.75rem;
	z-index: 3;
	opacity: 0;
	transform: translateY(10px);
	transition: var(--fm-transition);
}

.fm-product-card:hover .fm-card-quick-actions {
	opacity: 1;
	transform: translateY(0);
}

.fm-card-btn {
	width: 100%;
	box-shadow: var(--fm-shadow-md);
}

.fm-card-details {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.fm-card-rating {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.8rem;
	margin-bottom: 0.4rem;
}

.fm-stars {
	color: var(--fm-color-gold);
}

.fm-rating-count {
	color: var(--fm-color-muted);
	font-size: 0.75rem;
}

.fm-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.6rem;
}

.fm-card-title a:hover {
	color: var(--fm-color-accent);
}

.fm-card-price-row {
	margin-top: auto;
	margin-bottom: 0.75rem;
}

.fm-card-price {
	font-family: var(--fm-font-display);
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--fm-color-dark);
}

.fm-card-swatch-preview {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--fm-color-border);
}

.fm-color-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.fm-sizes-label {
	margin-left: auto;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--fm-color-muted);
}

.fm-center-btn-wrapper {
	text-align: center;
}

/* -------------------------------------------------------------
 * BRAND STORY SECTION
 * ----------------------------------------------------------- */
.fm-story-section {
	padding: 5.5rem 0;
	background-color: var(--fm-color-bg-light);
}

.fm-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.fm-story-media {
	position: relative;
}

.fm-story-img-main {
	aspect-ratio: 4 / 3;
	border-radius: var(--fm-radius-lg);
	box-shadow: var(--fm-shadow-lg);
}

.fm-story-stat-card {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	background-color: var(--fm-color-white);
	border: 1px solid var(--fm-color-border);
	padding: 1.5rem 2rem;
	border-radius: var(--fm-radius-md);
	box-shadow: var(--fm-shadow-lg);
	display: flex;
	flex-direction: column;
	max-width: 240px;
}

.fm-stat-num {
	font-family: var(--fm-font-display);
	font-size: 2.25rem;
	font-weight: 900;
	color: var(--fm-color-accent);
	line-height: 1;
}

.fm-stat-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fm-color-dark);
	margin-top: 0.3rem;
}

.fm-story-title {
	font-size: 2.3rem;
	margin-bottom: 1.25rem;
}

.fm-story-p {
	font-size: 1.05rem;
	color: var(--fm-color-body);
	margin-bottom: 1.25rem;
	line-height: 1.7;
}

.fm-story-quote {
	font-family: var(--fm-font-editorial);
	font-size: 1.15rem;
	color: var(--fm-color-rust);
	border-left: 3px solid var(--fm-color-rust);
	padding-left: 1.25rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.fm-story-features {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	margin-bottom: 2.5rem;
}

.fm-feature-row {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.fm-feature-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	background-color: var(--fm-color-accent-light);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-feature-row h4 {
	font-size: 1.05rem;
	margin-bottom: 0.2rem;
}

.fm-feature-row p {
	font-size: 0.9rem;
	color: var(--fm-color-muted);
	margin-bottom: 0;
}

/* -------------------------------------------------------------
 * BRAND ETHOS CREED BANNER
 * ----------------------------------------------------------- */
.fm-ethos-banner {
	background: linear-gradient(135deg, #1A1A1A 0%, #253328 100%);
	color: var(--fm-color-parchment);
	padding: 5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
}

.fm-ethos-badge {
	display: inline-block;
	font-family: var(--fm-font-stencil);
	font-size: 0.9rem;
	letter-spacing: 0.18em;
	color: var(--fm-color-sand);
	margin-bottom: 1rem;
}

.fm-ethos-heading {
	font-family: var(--fm-font-stencil);
	font-size: 3.2rem;
	letter-spacing: 0.05em;
	color: var(--fm-color-white);
	max-width: 900px;
	margin: 0 auto 1rem;
	line-height: 1.1;
}

.fm-ethos-sub {
	font-family: var(--fm-font-technical);
	font-size: 1.15rem;
	color: var(--fm-color-parchment);
	max-width: 650px;
	margin: 0 auto 1.5rem;
	opacity: 0.9;
}

.fm-ethos-origin {
	font-family: var(--fm-font-typewriter);
	font-size: 0.85rem;
	color: var(--fm-color-sand);
	letter-spacing: 0.08em;
}

.fm-footer-brand-text {
	display: flex;
	flex-direction: column;
}

.fm-footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.fm-footer-origin {
	font-family: var(--fm-font-typewriter);
	font-size: 0.8rem;
	color: var(--fm-color-sand);
	margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------
 * CUSTOMER REVIEWS
 * ----------------------------------------------------------- */
.fm-reviews-section {
	padding: 5rem 0;
	background-color: var(--fm-color-white);
}

.fm-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.fm-review-card {
	background-color: var(--fm-color-bg-light);
	border: 1px solid var(--fm-color-border);
	border-radius: var(--fm-radius-md);
	padding: 2rem;
	display: flex;
	flex-direction: column;
}

.fm-review-stars {
	color: var(--fm-color-gold);
	letter-spacing: 2px;
	margin-bottom: 0.8rem;
}

.fm-review-title {
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

.fm-review-body {
	font-size: 0.95rem;
	color: var(--fm-color-body);
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.fm-reviewer-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.fm-reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--fm-color-primary);
	color: var(--fm-color-white);
	font-family: var(--fm-font-display);
	font-weight: 700;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-verified-badge {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--fm-color-green);
}

/* -------------------------------------------------------------
 * COMMUNITY UGC GALLERY
 * ----------------------------------------------------------- */
.fm-community-section {
	padding: 4.5rem 0 5.5rem;
	background-color: var(--fm-color-bg-light);
}

.fm-community-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.fm-community-item {
	aspect-ratio: 1 / 1;
	border-radius: var(--fm-radius-md);
	box-shadow: var(--fm-shadow-sm);
	transition: var(--fm-transition);
}

.fm-community-item:hover {
	transform: scale(1.03);
	box-shadow: var(--fm-shadow-md);
}

/* -------------------------------------------------------------
 * TRUST BAR & NEWSLETTER CARD
 * ----------------------------------------------------------- */
.fm-trust-bar {
	background-color: var(--fm-color-primary);
	color: var(--fm-color-white);
	padding: 3.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.fm-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.fm-trust-icon {
	color: var(--fm-color-accent);
	flex-shrink: 0;
}

.fm-trust-text h4 {
	color: var(--fm-color-white);
	font-size: 1.05rem;
	margin-bottom: 0.2rem;
}

.fm-trust-text p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
	margin-bottom: 0;
}

/* Newsletter Section */
.fm-newsletter-section {
	padding: 4.5rem 0;
	background-color: var(--fm-color-white);
}

.fm-newsletter-card {
	background: linear-gradient(135deg, #182822 0%, #111d18 100%);
	border-radius: var(--fm-radius-lg);
	padding: 4rem 3rem;
	color: var(--fm-color-white);
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--fm-shadow-lg);
}

.fm-newsletter-content {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.fm-newsletter-title {
	color: var(--fm-color-white);
	font-size: 2.25rem;
	margin: 0.8rem 0;
}

.fm-newsletter-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

.fm-newsletter-form {
	margin-bottom: 1rem;
}

.fm-form-group {
	display: flex;
	gap: 0.75rem;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.fm-form-input {
	flex-grow: 1;
	padding: 0.9rem 1.4rem;
	border-radius: var(--fm-radius-full);
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	color: var(--fm-color-white);
	font-size: 0.95rem;
}

.fm-form-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.fm-newsletter-privacy {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

/* -------------------------------------------------------------
 * FOOTER
 * ----------------------------------------------------------- */
.fm-site-footer {
	background-color: var(--fm-color-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 5rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fm-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.fm-footer-logo .fm-brand-text {
	color: var(--fm-color-white);
}

.fm-footer-tagline {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 1rem 0 1.5rem;
	max-width: 320px;
}

.fm-footer-socials {
	display: flex;
	gap: 0.6rem;
	align-items: center;
}

.fm-social-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--fm-color-parchment);
	transition: var(--fm-transition);
}

.fm-social-icon-btn:hover {
	background-color: var(--fm-color-accent);
	border-color: var(--fm-color-accent);
	color: var(--fm-color-white);
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(224, 122, 44, 0.3);
}

.fm-footer-heading {
	color: var(--fm-color-white);
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
}

.fm-footer-links li {
	margin-bottom: 0.65rem;
}

.fm-footer-links a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
}

.fm-footer-links a:hover {
	color: var(--fm-color-accent);
	padding-left: 4px;
}

.fm-security-desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.2rem;
	line-height: 1.5;
}

.fm-payment-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.fm-payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	transition: var(--fm-transition);
}

.fm-payment-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.fm-payment-badge svg {
	display: block;
}

.fm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.fm-legal-links a {
	color: rgba(255, 255, 255, 0.65);
}

.fm-legal-links a:hover {
	color: var(--fm-color-white);
}

.fm-divider {
	margin: 0 0.5rem;
	color: rgba(255, 255, 255, 0.3);
}

/* -------------------------------------------------------------
 * SLIDE-OUT MOBILE NAV, CART DRAWER & SEARCH MODAL
 * ----------------------------------------------------------- */
/* Mobile Off-Canvas Navigation Drawer */
.fm-mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	visibility: hidden;
	transition: visibility 0.3s ease;
}

.fm-mobile-nav.is-open {
	visibility: visible;
}

.fm-mobile-nav-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fm-mobile-nav.is-open .fm-mobile-nav-backdrop {
	opacity: 1;
}

.fm-mobile-nav-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 340px;
	height: 100%;
	background-color: var(--fm-color-white);
	box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 2;
}

.fm-mobile-nav.is-open .fm-mobile-nav-panel {
	transform: translateX(0);
}

.fm-mobile-nav-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--fm-color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fm-mobile-nav-close {
	color: var(--fm-color-dark);
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	border-radius: 50%;
	transition: var(--fm-transition);
}

.fm-mobile-nav-close:hover {
	background-color: var(--fm-color-bg-light);
	color: var(--fm-color-accent);
}

.fm-mobile-nav-body {
	flex-grow: 1;
	overflow-y: auto;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.fm-mobile-menu {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.fm-mobile-menu li a {
	display: block;
	padding: 0.75rem 0.5rem;
	font-family: var(--fm-font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--fm-color-dark);
	border-radius: var(--fm-radius-sm);
	transition: var(--fm-transition);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.fm-mobile-menu li a:hover {
	color: var(--fm-color-accent);
	background-color: var(--fm-color-bg-light);
	padding-left: 0.85rem;
}

.fm-mobile-nav-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--fm-color-border);
}

.fm-mobile-contact {
	font-size: 0.85rem;
	margin-bottom: 1rem;
	color: var(--fm-color-muted);
}

.fm-mobile-contact p {
	margin-bottom: 0.25rem;
}

.fm-mobile-contact strong {
	color: var(--fm-color-dark);
	display: block;
}

.fm-mobile-contact a {
	color: var(--fm-color-accent);
	font-weight: 600;
}

.fm-mobile-badges {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--fm-color-primary);
}

/* Slide-Out Cart Drawer */
.fm-cart-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	visibility: hidden;
	transition: visibility 0.3s ease;
}

.fm-cart-drawer.is-open {
	visibility: visible;
}

.fm-cart-drawer-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fm-cart-drawer.is-open .fm-cart-drawer-backdrop {
	opacity: 1;
}

.fm-cart-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 440px;
	height: 100%;
	background-color: var(--fm-color-white);
	box-shadow: var(--fm-shadow-drawer);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 2;
}

.fm-cart-drawer.is-open .fm-cart-drawer-panel {
	transform: translateX(0);
}

.fm-cart-drawer-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--fm-color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fm-cart-drawer-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.fm-cart-drawer-title h3 {
	font-size: 1.25rem;
}

.fm-free-shipping-bar {
	background-color: var(--fm-color-bg-light);
	padding: 0.85rem 1.5rem;
	border-bottom: 1px solid var(--fm-color-border);
	font-size: 0.85rem;
}

.fm-shipping-text {
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--fm-color-dark);
}

.fm-shipping-progress-track {
	width: 100%;
	height: 6px;
	background-color: var(--fm-color-border);
	border-radius: var(--fm-radius-full);
	overflow: hidden;
}

.fm-shipping-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--fm-color-accent), #10b981);
	transition: width 0.4s ease;
}

.fm-cart-drawer-content {
	flex-grow: 1;
	overflow-y: auto;
	padding: 1.5rem;
}

.fm-cart-drawer-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--fm-color-border);
	background-color: var(--fm-color-bg-light);
}

.fm-drawer-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--fm-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fm-color-dark);
	margin-bottom: 0.25rem;
}

.fm-drawer-tax-note {
	font-size: 0.75rem;
	color: var(--fm-color-muted);
	margin-bottom: 1.25rem;
}

.fm-drawer-actions {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
}

.fm-drawer-guarantee {
	text-align: center;
	font-size: 0.75rem;
	color: var(--fm-color-muted);
}

/* Search Modal Overlay */
.fm-search-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	visibility: hidden;
	transition: visibility 0.25s ease;
}

.fm-search-modal.is-open {
	visibility: visible;
}

.fm-search-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(18, 33, 28, 0.9);
	backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.fm-search-modal.is-open .fm-search-modal-backdrop {
	opacity: 1;
}

.fm-search-modal-container {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 6rem auto 0;
	padding: 0 1.5rem;
}

.fm-search-modal-close {
	position: absolute;
	top: -3.5rem;
	right: 1.5rem;
	color: var(--fm-color-white);
	font-size: 1.5rem;
}

.fm-search-modal-title {
	color: var(--fm-color-white);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.fm-search-form {
	position: relative;
	margin-bottom: 1.5rem;
}

.fm-search-field {
	width: 100%;
	padding: 1.25rem 3.5rem 1.25rem 1.5rem;
	font-size: 1.15rem;
	border-radius: var(--fm-radius-full);
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: var(--fm-color-white);
	color: var(--fm-color-dark);
	box-shadow: var(--fm-shadow-lg);
}

.fm-search-submit-btn {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--fm-color-dark);
	font-size: 1.2rem;
}

.fm-popular-searches {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
}

.fm-popular-searches a {
	background: rgba(255, 255, 255, 0.15);
	padding: 0.25rem 0.75rem;
	border-radius: var(--fm-radius-full);
	color: var(--fm-color-white);
}

.fm-popular-searches a:hover {
	background: var(--fm-color-accent);
}

/* Mobile Bottom Bar */
.fm-mobile-bottom-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--fm-color-white);
	border-top: 1px solid var(--fm-color-border);
	z-index: 999;
	padding: 0.5rem 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
	justify-content: space-around;
}

.fm-bottom-bar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--fm-color-muted);
}

.fm-bottom-bar-item.active,
.fm-bottom-bar-item:hover {
	color: var(--fm-color-accent);
}

.fm-bottom-bar-icon {
	font-size: 1.2rem;
	position: relative;
}

/* -------------------------------------------------------------
 * ABOUT DISPATCH & FOUNDER STORY PAGE
 * ----------------------------------------------------------- */
.fm-about-hero {
	background: linear-gradient(135deg, #1A1A1A 0%, #1c322b 60%, #12211c 100%);
	color: var(--fm-color-parchment);
	padding: 5rem 0 4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-about-title {
	font-family: var(--fm-font-stencil);
	font-size: 3.5rem;
	letter-spacing: 0.05em;
	color: var(--fm-color-white);
	margin-bottom: 0.75rem;
}

.fm-about-subtitle {
	font-family: var(--fm-font-technical);
	font-size: 1.25rem;
	color: var(--fm-color-sand);
	max-width: 680px;
	margin: 0 auto 1.25rem;
}

.fm-about-meta {
	font-family: var(--fm-font-typewriter);
	font-size: 0.85rem;
	color: var(--fm-color-parchment);
	opacity: 0.8;
}

.fm-about-body-section {
	padding: 4.5rem 0;
	background-color: var(--fm-color-bg-light);
}

.fm-about-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: flex-start;
}

.fm-about-card {
	background-color: var(--fm-color-white);
	border: 1px solid var(--fm-color-border);
	border-radius: var(--fm-radius-lg);
	padding: 2.5rem;
	box-shadow: var(--fm-shadow-md);
	margin-bottom: 2.5rem;
}

.fm-about-section-heading {
	font-size: 2.2rem;
	margin-bottom: 1.25rem;
	color: var(--fm-color-dark);
}

.fm-lead-text {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--fm-color-primary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.fm-about-card p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--fm-color-body);
	margin-bottom: 1.25rem;
}

.fm-about-quote {
	font-family: var(--fm-font-editorial);
	font-size: 1.3rem;
	font-style: italic;
	color: var(--fm-color-rust);
	border-left: 4px solid var(--fm-color-rust);
	padding: 1rem 0 1rem 1.5rem;
	margin: 2rem 0;
	background-color: var(--fm-color-bg-light);
	border-radius: 0 var(--fm-radius-md) var(--fm-radius-md) 0;
}

.fm-about-subheading {
	font-size: 1.6rem;
	margin: 2rem 0 1rem;
	color: var(--fm-color-dark);
}

.fm-about-values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.fm-val-card {
	background-color: var(--fm-color-white);
	border: 1px solid var(--fm-color-border);
	border-radius: var(--fm-radius-md);
	padding: 1.75rem;
	box-shadow: var(--fm-shadow-sm);
}

.fm-val-icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.fm-val-card h4 {
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.fm-val-card p {
	font-size: 0.9rem;
	color: var(--fm-color-muted);
	margin-bottom: 0;
	line-height: 1.5;
}

.fm-about-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: sticky;
	top: 100px;
}

.fm-sidebar-widget {
	background-color: var(--fm-color-white);
	border: 1px solid var(--fm-color-border);
	border-radius: var(--fm-radius-lg);
	padding: 2rem;
	box-shadow: var(--fm-shadow-md);
}

.fm-founder-profile-card {
	text-align: center;
}

.fm-founder-avatar-wrap {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1.25rem;
	border: 3px solid var(--fm-color-sand);
	box-shadow: var(--fm-shadow-sm);
}

.fm-founder-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fm-founder-name {
	font-size: 1.4rem;
	margin-bottom: 0.2rem;
}

.fm-founder-role {
	font-size: 0.85rem;
	color: var(--fm-color-muted);
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.fm-founder-badges {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.fm-founder-bio {
	font-family: var(--fm-font-editorial);
	font-size: 0.95rem;
	font-style: italic;
	color: var(--fm-color-body);
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.fm-guarantee-widget h4 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
	color: var(--fm-color-primary);
}

.fm-guarantee-widget p {
	font-size: 0.88rem;
	color: var(--fm-color-muted);
	margin-bottom: 0;
	line-height: 1.5;
}

/* -------------------------------------------------------------
 * RESPONSIVE BREAKPOINTS
 * ----------------------------------------------------------- */
@media (max-width: 1024px) {
	.fm-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.fm-collections-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.fm-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.fm-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hidden-mobile {
		display: none !important;
	}
	.fm-main-navigation {
		display: none;
	}
	.fm-mobile-menu-toggle {
		display: block;
	}
	.fm-hero-title {
		font-size: 2.5rem;
	}
	.fm-hero-section {
		padding: 4rem 0 3.5rem;
	}
	.fm-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.fm-collections-grid {
		grid-template-columns: 1fr;
	}
	.fm-story-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.fm-reviews-grid {
		grid-template-columns: 1fr;
	}
	.fm-community-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.fm-trust-grid {
		grid-template-columns: 1fr;
	}
	.fm-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.fm-mobile-bottom-bar {
		display: flex;
	}
	body {
		padding-bottom: 60px;
	}
	.fm-cart-drawer-panel {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.fm-products-grid {
		grid-template-columns: 1fr;
	}
}
