/**
 * Nova Fashion - Core Theme Styles
 *
 * @package Nova_Fashion
 */

/* ==========================================================================
   1. DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
	/* Colors */
	--nf-color-primary: #09090b;
	--nf-color-secondary: #ffffff;
	--nf-color-accent: #7c3aed;
	--nf-color-accent-alt: #06b6d4;
	--nf-color-dark-bg: #07070e;
	--nf-color-surface: #ffffff;
	--nf-color-border: rgba(0, 0, 0, 0.08);
	--nf-color-border-subtle: rgba(139, 92, 246, 0.15);
	--nf-color-grey-50: #f8fafc;
	--nf-color-grey-100: #f1f5f9;
	--nf-color-grey-200: #e2e8f0;
	--nf-color-grey-500: #64748b;
	--nf-color-grey-900: #0f172a;
	--nf-color-text-muted: #64748b;
	--nf-color-success: #10b981;
	--nf-color-warning: #f59e0b;
	--nf-color-danger: #ef4444;

	/* Gradients */
	--nf-gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
	--nf-gradient-accent: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
	--nf-gradient-sale: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
	--nf-gradient-luxury: linear-gradient(135deg, #18113c 0%, #000000 100%);
	--nf-gradient-aurora: linear-gradient(225deg, #7c3aed 0%, #ff007f 50%, #06b6d4 100%);
	--nf-background-gradient: radial-gradient(at 0% 0%, rgba(243, 232, 255, 0.65) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(224, 242, 254, 0.55) 0px, transparent 50%), radial-gradient(at 50% 100%, rgba(254, 243, 199, 0.35) 0px, transparent 50%), #fafaf9;

	/* Header Tokens */
	--nf-header-bg: rgba(255, 255, 255, 0.92);
	--nf-header-border: rgba(139, 92, 246, 0.15);
	--nf-header-shadow: 0 10px 35px -10px rgba(0, 0, 0, 0.07);
	--nf-header-menu-color: #09090b;
	--nf-header-menu-font-size: 0.88rem;
	--nf-announcement-bg: linear-gradient(90deg, #18113c 0%, #312163 35%, #4c1d95 65%, #18113c 100%);
	--nf-announcement-color: #f8fafc;

	/* Border Radius */
	--nf-radius-sm: 8px;
	--nf-radius-md: 16px;
	--nf-radius-lg: 28px;
	--nf-radius-full: 9999px;
	--nf-button-border-radius: 12px;
	--nf-container-width: 1360px;
	--nf-section-padding: 70px;

	/* Shadows */
	--nf-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
	--nf-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
	--nf-shadow-lg: 0 30px 65px rgba(0, 0, 0, 0.12);
	--nf-shadow-glow: 0 0 25px rgba(124, 58, 237, 0.35);
	--nf-shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.06);

	/* Transitions */
	--nf-transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--nf-transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	--nf-transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

	/* Fonts */
	--nf-font-heading: 'Outfit', 'Segoe UI', -apple-system, sans-serif;
	--nf-font-body: 'Inter', 'Segoe UI', -apple-system, sans-serif;
}

/* Dark Mode Master Palette */
body.dark-mode,
body.dark-theme {
	--nf-color-primary: #f8fafc;
	--nf-color-secondary: #09090b;
	--nf-color-dark-bg: #05050a;
	--nf-color-surface: #101222;
	--nf-color-border: rgba(255, 255, 255, 0.1);
	--nf-color-border-subtle: rgba(168, 85, 247, 0.3);
	--nf-color-grey-50: #0a0b16;
	--nf-color-grey-100: #121426;
	--nf-color-grey-200: #1e223d;
	--nf-color-grey-500: #94a3b8;
	--nf-color-grey-900: #f8fafc;
	--nf-color-text-muted: #94a3b8;
	--nf-header-bg: rgba(10, 11, 24, 0.94);
	--nf-header-border: rgba(168, 85, 247, 0.28);
	--nf-header-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.6);
	--nf-header-menu-color: #f8fafc;
	--nf-announcement-bg: linear-gradient(90deg, #090518 0%, #1f143d 50%, #090518 100%);
	--nf-background-gradient: radial-gradient(at 0% 0%, rgba(76, 29, 149, 0.28) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(30, 27, 75, 0.4) 0px, transparent 50%), radial-gradient(at 50% 100%, rgba(15, 23, 42, 0.95) 0px, transparent 50%), #06060c;
	--nf-shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: var(--nf-background-gradient);
	background-attachment: fixed;
	color: var(--nf-color-primary);
	font-family: var(--nf-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nf-font-heading);
	margin-top: 0;
	font-weight: 700;
	color: var(--nf-color-primary);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

/* Grid & Layout */
.nf-container {
	width: 100%;
	max-width: var(--nf-container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.nf-section-padding {
	padding: var(--nf-section-padding) 0;
}

.nf-grid {
	display: grid;
	gap: 30px;
}

.nf-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.nf-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.nf-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.nf-showroom-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	min-height: 550px;
}

/* ==========================================================================
   3. BUTTONS & UI ELEMENTS
   ========================================================================== */
.nf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-family: var(--nf-font-heading);
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: var(--nf-button-border-radius);
	border: 1px solid var(--nf-color-primary);
	background: transparent;
	color: var(--nf-color-primary);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all var(--nf-transition-normal);
}

.nf-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--nf-color-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--nf-transition-normal);
	z-index: -1;
}

.nf-btn:hover {
	color: var(--nf-color-secondary);
}

.nf-btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.nf-btn-gradient {
	border: none;
	background: var(--nf-gradient-primary);
	color: var(--nf-color-secondary);
	box-shadow: var(--nf-shadow-sm);
}

.nf-btn-gradient:hover {
	box-shadow: var(--nf-shadow-glow);
	transform: translateY(-2px);
}

/* ==========================================================================
   4. HEADER & NAV SYSTEM
   ========================================================================== */
.nf-header-wrap {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nf-announcement-bar {
	background: var(--nf-announcement-bg);
	color: var(--nf-announcement-color);
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 10px 24px;
	position: relative;
	border-bottom: 1px solid rgba(168, 85, 247, 0.22);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.nf-announcement-bar a {
	color: #fbbf24;
	text-decoration: underline;
	font-weight: 800;
	margin-left: 6px;
}

.nf-navbar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 10px clamp(12px, 2vw, 32px) !important;
	gap: clamp(8px, 1.2vw, 18px) !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	position: relative !important;
	background: var(--nf-header-bg);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid var(--nf-header-border);
	box-shadow: var(--nf-header-shadow);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nf-glass-header {
	background: var(--nf-header-bg) !important;
	backdrop-filter: blur(28px) saturate(190%) !important;
	-webkit-backdrop-filter: blur(28px) saturate(190%) !important;
	border-bottom: 1px solid var(--nf-header-border) !important;
}

.nf-navbar.is-sticky {
	padding: 8px clamp(12px, 2vw, 32px) !important;
	box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.15);
}

.nf-logo-section {
	flex-shrink: 0;
	margin-right: 4px;
}

.nf-logo {
	font-family: var(--nf-font-heading);
	font-size: clamp(1.2rem, 1.5vw, 1.48rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--nf-color-primary) 0%, var(--nf-color-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: transform 0.25s ease;
}

body.dark-mode .nf-logo,
body.dark-theme .nf-logo {
	background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nf-logo:hover {
	transform: scale(1.02);
}

.nf-desktop-navigation {
	position: static !important;
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

/* Main Navigation Menu */
.nf-nav-menu {
	display: flex !important;
	align-items: center !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	gap: clamp(8px, 1.1vw, 16px) !important;
	flex-wrap: nowrap !important;
}

.nf-nav-item {
	position: relative;
}

.nf-nav-link {
	font-family: var(--nf-font-heading);
	font-weight: 600;
	font-size: clamp(0.74rem, 0.83vw, 0.86rem);
	color: var(--nf-header-menu-color);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 6px 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap !important;
	position: relative;
	transition: color 0.2s ease;
}

.nf-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2.5px;
	border-radius: 4px;
	background: var(--nf-gradient-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--nf-transition-normal);
}

.nf-nav-link:hover {
	color: var(--nf-color-accent);
}

.nf-nav-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nf-nav-link-sale {
	color: #ef4444 !important;
	font-weight: 700;
}

/* Mega Menu Structure & Styling */
.nf-has-mega-menu {
	position: static !important;
}

.nf-mega-menu {
	position: absolute !important;
	top: calc(100% + 2px) !important;
	left: 50% !important;
	transform: translateX(-50%) translateY(12px) !important;
	width: 980px !important;
	max-width: calc(100vw - 48px) !important;
	box-sizing: border-box !important;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 18px;
	box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	padding: 28px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
	z-index: 99999 !important;
	text-align: left !important;
}

body.dark-mode .nf-mega-menu,
body.dark-theme .nf-mega-menu {
	background: rgba(15, 23, 42, 0.98);
	border-color: rgba(139, 92, 246, 0.35);
	box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.nf-nav-item:hover .nf-mega-menu {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: all !important;
	transform: translateX(-50%) translateY(0) !important;
}

.nf-mega-menu-features {
	width: 680px !important;
	max-width: calc(100vw - 48px) !important;
}

.nf-mega-features-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 24px !important;
}

/* Standard Dropdown Submenus */
.nf-nav-item .sub-menu,
ul.sub-menu {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	min-width: 240px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 14px;
	padding: 10px 0;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 99999 !important;
	text-align: left !important;
	margin: 0;
}

body.dark-mode .nf-nav-item .sub-menu,
body.dark-mode ul.sub-menu,
body.dark-theme .nf-nav-item .sub-menu,
body.dark-theme ul.sub-menu {
	background: rgba(15, 23, 42, 0.98);
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.nf-nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nf-nav-item .sub-menu li {
	text-align: left !important;
	list-style: none;
}

.nf-nav-item .sub-menu li a {
	display: block;
	padding: 8px 20px;
	color: var(--nf-color-text, #334155);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	text-align: left !important;
	transition: all 0.2s ease;
}

.nf-nav-item .sub-menu li a:hover {
	color: var(--nf-color-accent, #7c3aed);
	background: rgba(124, 58, 237, 0.08);
	padding-left: 24px;
}

body.dark-mode .nf-nav-item .sub-menu li a,
body.dark-theme .nf-nav-item .sub-menu li a {
	color: #cbd5e1;
}

body.dark-mode .nf-nav-item .sub-menu li a:hover,
body.dark-theme .nf-nav-item .sub-menu li a:hover {
	color: #c084fc;
	background: rgba(168, 85, 247, 0.15);
}

/* Ensure All Submenu & Mega Menu Text Elements are Left Aligned */
.nf-mega-menu-col,
.nf-mega-col-title,
.nf-mega-links,
.nf-mega-links li,
.nf-grid-category-group,
.nf-grid-category-group h6,
.nf-grid-category-group a,
.nf-mega-header-bar,
.nf-mega-title-badge,
.nf-mega-subtitle {
	text-align: left !important;
}

.nf-mega-menu-apparel {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1.3fr;
	gap: 24px;
}

.nf-mega-col-title {
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b21a8;
	margin: 0 0 14px 0;
	padding-bottom: 8px;
	border-bottom: 2px solid rgba(139, 92, 246, 0.15);
	display: flex;
	align-items: center;
	gap: 6px;
	text-align: left !important;
}

body.dark-theme .nf-mega-col-title {
	color: #c084fc;
	border-bottom-color: rgba(192, 132, 252, 0.2);
}

.nf-mega-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nf-mega-links li a {
	font-size: 0.88rem;
	font-weight: 600;
	color: #334155;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	justify-content: flex-start !important;
	padding: 5px 0;
	text-align: left !important;
	width: 100% !important;
	transition: all 0.2s ease;
}

.nf-mega-links li a .nf-menu-link-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-align: left;
}

.nf-mega-links li a .nf-link-badge {
	margin-left: auto !important;
	flex-shrink: 0 !important;
}

body.dark-theme .nf-mega-links li a {
	color: #cbd5e1;
}

.nf-mega-links li a:hover {
	color: #8b5cf6;
	transform: translateX(4px);
}

body.dark-theme .nf-mega-links li a:hover {
	color: #a78bfa;
}

/* Category & Nav Badges */
.nf-link-badge {
	font-size: 0.65rem;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 4px;
	background: #ede9fe;
	color: #6b21a8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

body.dark-theme .nf-link-badge {
	background: rgba(139, 92, 246, 0.25);
	color: #c084fc;
}

.nf-menu-badge-hot {
	font-size: 0.6rem;
	font-weight: 900;
	padding: 2px 5px;
	border-radius: 4px;
	background: linear-gradient(135deg, #ef4444, #f97316);
	color: #fff;
	margin-left: 4px;
	vertical-align: middle;
	letter-spacing: 0.05em;
}

.nf-menu-badge-new {
	font-size: 0.6rem;
	font-weight: 900;
	padding: 2px 5px;
	border-radius: 4px;
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	color: #fff;
	margin-left: 4px;
	vertical-align: middle;
	letter-spacing: 0.05em;
}

.nf-menu-badge-sale {
	font-size: 0.65rem;
	font-weight: 900;
	padding: 2px 6px;
	border-radius: 4px;
	background: #ef4444;
	color: #fff;
	margin-left: 4px;
	vertical-align: middle;
}

.nf-chevron-icon {
	display: inline-flex;
	align-items: center;
	margin-left: 3px;
	transition: transform 0.2s ease;
}

.nf-nav-item:hover .nf-chevron-icon {
	transform: rotate(180deg);
}

/* Mega Menu Promo Card */
.nf-mega-promo-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	min-height: 220px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.nf-mega-promo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.nf-mega-promo-card:hover img {
	transform: scale(1.05);
}

.nf-promo-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 16px;
	background: linear-gradient(0deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.4) 70%, transparent 100%);
	color: #fff;
	box-sizing: border-box;
}

.nf-promo-tag {
	font-size: 0.65rem;
	font-weight: 900;
	color: #a78bfa;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 4px;
}

.nf-promo-overlay h5 {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 10px 0;
	color: #fff;
	line-height: 1.2;
}

.nf-btn-promo {
	font-size: 0.75rem;
	font-weight: 800;
	color: #fff;
	background: #8b5cf6;
	padding: 6px 12px;
	border-radius: 6px;
	display: inline-block;
	transition: background 0.2s ease;
}

.nf-btn-promo:hover {
	background: #7c3aed;
}

/* 20 Apparel Full Directory Grid */
.nf-mega-menu-full-grid {
	width: 1050px;
	max-width: 96vw;
}

.nf-mega-header-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.nf-mega-title-badge {
	font-size: 0.75rem;
	font-weight: 900;
	background: linear-gradient(135deg, #8b5cf6, #06b6d4);
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
	letter-spacing: 0.05em;
}

.nf-mega-subtitle {
	font-size: 0.85rem;
	color: #64748b;
	font-weight: 600;
}

body.dark-theme .nf-mega-subtitle {
	color: #94a3b8;
}

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

.nf-grid-category-group h6 {
	font-size: 0.85rem;
	font-weight: 800;
	color: #6b21a8;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

body.dark-theme .nf-grid-category-group h6 {
	color: #c084fc;
}

.nf-grid-category-group a {
	display: block;
	font-size: 0.84rem;
	font-weight: 600;
	color: #334155;
	padding: 5px 0;
	border-bottom: 1px solid rgba(0,0,0,0.03);
	transition: all 0.2s ease;
}

body.dark-theme .nf-grid-category-group a {
	color: #cbd5e1;
	border-bottom-color: rgba(255,255,255,0.03);
}

.nf-grid-category-group a:hover {
	color: #8b5cf6;
	padding-left: 6px;
}

body.dark-theme .nf-grid-category-group a:hover {
	color: #a78bfa;
}

/* Icons / Actions block */
.nf-header-actions {
	display: flex !important;
	align-items: center !important;
	gap: clamp(5px, 0.7vw, 10px) !important;
	flex-shrink: 0 !important;
}

.nf-action-btn {
	background: rgba(0, 0, 0, 0.04);
	border: 1px solid var(--nf-color-border);
	color: var(--nf-color-primary);
	cursor: pointer;
	width: clamp(34px, 2.6vw, 38px) !important;
	height: clamp(34px, 2.6vw, 38px) !important;
	border-radius: 50%;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	position: relative;
	backdrop-filter: blur(10px);
	flex-shrink: 0 !important;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode .nf-action-btn,
body.dark-theme .nf-action-btn {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
	color: #f8fafc;
}

.nf-action-btn:hover {
	background: var(--nf-color-accent);
	color: #ffffff;
	border-color: var(--nf-color-accent);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.45);
}

body.dark-mode .nf-action-btn:hover,
body.dark-theme .nf-action-btn:hover {
	background: #8b5cf6;
	border-color: #8b5cf6;
	color: #ffffff;
}

.nf-action-btn svg {
	width: 16px;
	height: 16px;
	stroke-width: 2;
}

.nf-badge-count {
	position: absolute;
	top: -4px;
	right: -4px;
	background: linear-gradient(135deg, #ec4899, #ef4444);
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 800;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
	border: 1.5px solid var(--nf-color-surface);
}

/* ==========================================================================
   5. HERO BANNER SYSTEM
   ========================================================================== */
.nf-hero-section {
	height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #000;
	overflow: hidden;
	color: var(--nf-color-secondary);
}

.nf-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.nf-hero-bg img,
.nf-hero-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nf-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
	z-index: 2;
}

.nf-hero-content {
	position: relative;
	z-index: 3;
	padding-left: 80px;
	max-width: 700px;
}

.nf-hero-eyebrow {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 20px;
	display: block;
	animation: fadeInUp 0.8s ease forwards;
}

.nf-hero-heading {
	font-size: clamp(2.5rem, 8vw, 5.5rem);
	line-height: 0.95;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: 800;
	animation: fadeInUp 1s ease forwards;
}

.nf-hero-desc {
	font-size: 1.1rem;
	margin-bottom: 40px;
	opacity: 0.8;
	line-height: 1.5;
	animation: fadeInUp 1.2s ease forwards;
}

.nf-hero-ctas {
	display: flex;
	gap: 20px;
	animation: fadeInUp 1.4s ease forwards;
}

/* ==========================================================================
   6. FOOTER DESIGN
   ========================================================================== */
.nf-footer {
	background: #0f172a;
	color: #f8fafc;
	padding-top: 70px;
}

body.dark-theme .nf-footer {
	background: #070414;
	color: #f8fafc;
}

.nf-footer-newsletter-box {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 50px;
	padding: 40px 30px;
	background: rgba(30, 41, 59, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

body.dark-theme .nf-footer-newsletter-box {
	background: rgba(24, 19, 46, 0.9);
	border-color: rgba(139, 92, 246, 0.3);
}

.nf-newsletter-tag {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #a78bfa;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 8px;
}

.nf-newsletter-heading {
	color: #ffffff !important;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 900;
	letter-spacing: -0.01em;
	margin: 0 0 12px 0;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nf-newsletter-subtext {
	color: #cbd5e1 !important;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 auto 25px;
	max-width: 520px;
}

.nf-newsletter-form-modern {
	max-width: 520px;
	margin: 0 auto;
}

.nf-newsletter-input-group {
	display: flex;
	background: #0f172a;
	border: 1.5px solid rgba(139, 92, 246, 0.4);
	border-radius: 40px;
	padding: 5px 6px 5px 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: border-color 0.2s ease;
}

.nf-newsletter-input-group:focus-within {
	border-color: #a78bfa;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.nf-newsletter-input-field {
	flex: 1;
	background: transparent;
	border: none;
	color: #ffffff !important;
	font-size: 0.95rem;
	outline: none;
}

.nf-newsletter-input-field::placeholder {
	color: #94a3b8;
}

.nf-newsletter-submit-btn {
	background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
	color: #ffffff;
	border: none;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
}

.nf-newsletter-submit-btn:hover {
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
	transform: translateX(2px);
}

.nf-footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(4, 1fr);
	gap: 40px;
	padding-bottom: 60px;
}

.nf-footer {
	background: #fbfbfb;
	color: #11130E;
	border-top: 1px solid #eaeaea;
	padding: 80px 0 0;
	margin-top: 80px;
}

body.dark-mode .nf-footer {
	background: #0b0916;
	color: #e5e3db;
	border-color: rgba(255, 255, 255, 0.05);
}

.nf-footer-col h4 {
	color: inherit;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.nf-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nf-footer-col ul li {
	margin-bottom: 12px;
}

.nf-footer-col ul a {
	font-size: 0.9rem;
	color: #666;
	text-decoration: none;
	transition: color var(--nf-transition-fast);
}

.nf-footer-col ul a:hover {
	color: var(--nf-color-accent);
}

body.dark-mode .nf-footer-col ul a {
	color: #aaa;
}

body.dark-mode .nf-footer-col ul a:hover {
	color: #fff;
}

.nf-footer-bottom {
	padding: 30px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
}

body.dark-mode .nf-footer-bottom {
	border-top-color: rgba(255, 255, 255, 0.05);
}

.nf-footer-links {
	display: flex;
	gap: 20px;
}

/* ==========================================================================
   7. KEYFRAMES & UTILITY ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0px); }
}

.nf-animate-float {
	animation: float 4s ease-in-out infinite;
}

/* Standard Native Pointer Cursor for interactive elements */
a, button, .nf-btn, .nf-action-btn, .nf-card-action-btn, .nf-swatch-item, select {
	cursor: pointer;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
	.nf-navbar { padding: 20px; }
	.nf-mega-menu { width: calc(100vw - 40px); }
	.nf-footer-grid { grid-template-columns: repeat(3, 1fr); }
	.nf-hero-content { padding-left: 40px; }
}

@media (max-width: 768px) {
	.nf-footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.nf-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
	.nf-hero-content { padding: 0 20px; }
	
	/* Mobile Header Optimization */
	.nf-navbar .nf-user-account-btn,
	.nf-navbar .nf-wishlist-trigger,
	.nf-navbar .nf-dark-mode-toggle {
		display: none !important;
	}
	.nf-navbar {
		padding: 12px 20px;
		margin: 10px 15px !important;
	}
	.nf-logo {
		font-size: 1.25rem;
	}
	.nf-header-actions {
		gap: 12px;
	}

	/* Mobile Menu Container Drawer */
	.nf-mobile-menu-container {
		position: fixed;
		top: 0;
		left: 0;
		width: 320px;
		height: 100vh;
		z-index: 1000;
		padding: 30px;
		display: flex;
		flex-direction: column;
		gap: 30px;
		transform: translateX(-100%);
		transition: transform var(--nf-transition-normal);
		box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
	}
	.nf-mobile-menu-container.is-open {
		transform: translateX(0);
	}
	.nf-mobile-menu-close {
		align-self: flex-end;
		cursor: pointer;
		font-size: 1.25rem;
		transition: transform var(--nf-transition-fast);
	}
	.nf-mobile-menu-close:hover {
		transform: rotate(90deg);
	}
	.nf-mobile-navigation {
		flex: 1;
		overflow-y: auto;
	}
	.nf-mobile-navigation ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.nf-mobile-navigation li {
		margin-bottom: 15px;
		position: relative;
	}
	.nf-mobile-navigation li a {
		font-family: var(--nf-font-heading);
		font-size: 1.2rem;
		font-weight: 700;
		text-transform: uppercase;
		display: block;
	}
	.nf-mobile-submenu-toggle {
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-weight: 700;
		font-size: 1.2rem;
		color: var(--nf-color-accent);
	}
	.nf-mobile-navigation .sub-menu {
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--nf-transition-normal);
		padding-left: 15px;
		border-left: 1px dashed var(--nf-color-grey-200);
		margin-top: 10px;
	}
	body.dark-mode .nf-mobile-navigation .sub-menu {
		border-left-color: rgba(255, 255, 255, 0.1);
	}
	.nf-mobile-navigation .sub-menu li {
		margin-bottom: 8px;
	}
	.nf-mobile-navigation .sub-menu li a {
		font-size: 0.95rem;
		font-weight: 500;
		color: var(--nf-color-grey-500);
	}
	.nf-mobile-actions {
		display: flex;
		align-items: center;
		gap: 15px;
		padding-top: 20px;
		border-top: 1px solid rgba(0,0,0,0.06);
	}
	body.dark-mode .nf-mobile-actions {
		border-top-color: rgba(255, 255, 255, 0.05);
	}
	.nf-mobile-actions .nf-dark-mode-toggle {
		background: rgba(0, 0, 0, 0.04);
		border: 1px solid rgba(0, 0, 0, 0.05);
		padding: 10px;
		border-radius: 50%;
		cursor: pointer;
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	body.dark-mode .nf-mobile-actions .nf-dark-mode-toggle {
		background: rgba(255, 255, 255, 0.05);
		border-color: rgba(255, 255, 255, 0.1);
	}
	.nf-showroom-grid {
		grid-template-columns: 1fr !important;
		min-height: auto !important;
	}
}

/* ==========================================================================
   HOMEPAGE INTERACTIVE COLLAPSIBLE LEFT-SIDEBAR CATALOG
   ========================================================================== */
.nf-home-catalog-section {
	padding: 70px 0 100px;
	background: #fafafa;
}

body.dark-theme .nf-home-catalog-section {
	background: #090615;
}

.nf-container-fluid {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 25px;
}

/* Catalog Top Header Bar */
.nf-catalog-header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1.5px solid #e2e8f0;
	flex-wrap: wrap;
	gap: 20px;
}

body.dark-theme .nf-catalog-header-bar {
	border-bottom-color: #1e183a;
}

.nf-catalog-header-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nf-btn-toggle-sidebar {
	background: #0f172a;
	color: #ffffff;
	border: none;
	padding: 10px 18px;
	border-radius: 12px;
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

body.dark-theme .nf-btn-toggle-sidebar {
	background: #8b5cf6;
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.nf-btn-toggle-sidebar:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.nf-toggle-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.nf-active-filter-badge {
	background: #ef4444;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 10px;
}

.nf-catalog-eyebrow {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #8b5cf6;
	text-transform: uppercase;
	display: block;
	margin-bottom: 2px;
}

.nf-catalog-main-title {
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	letter-spacing: -0.01em;
}

body.dark-theme .nf-catalog-main-title {
	color: #f8fafc;
}

.nf-catalog-header-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nf-live-catalog-count {
	font-size: 0.85rem;
	font-weight: 600;
	color: #64748b;
}

body.dark-theme .nf-live-catalog-count {
	color: #94a3b8;
}

.nf-custom-select {
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	color: #1e293b;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

body.dark-theme .nf-custom-select {
	background: #181335;
	border-color: #2e2659;
	color: #f8fafc;
}

/* Active Chips Bar */
.nf-active-chips-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
	flex-wrap: wrap;
	background: #ffffff;
	padding: 12px 18px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

body.dark-theme .nf-active-chips-bar {
	background: #110d24;
	border-color: #1e183a;
}

.nf-chips-label {
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #64748b;
}

body.dark-theme .nf-chips-label {
	color: #94a3b8;
}

.nf-chips-container {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.nf-filter-chip {
	background: #f1f5f9;
	border: 1px solid #cbd5e1;
	color: #1e293b;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

body.dark-theme .nf-filter-chip {
	background: #1e183a;
	border-color: #3b2d6b;
	color: #f8fafc;
}

.nf-filter-chip:hover {
	background: #fee2e2;
	border-color: #fca5a5;
	color: #dc2626;
}

.nf-chip-x {
	font-size: 0.75rem;
	opacity: 0.7;
}

.nf-btn-clear-all-chips {
	background: transparent;
	border: none;
	color: #ef4444;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: underline;
	cursor: pointer;
	margin-left: 6px;
}

/* 2-Column Catalog Layout */
.nf-catalog-layout-wrapper {
	display: grid;
	grid-template-columns: 310px 1fr;
	gap: 35px;
	align-items: start;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nf-catalog-layout-wrapper.is-sidebar-collapsed {
	grid-template-columns: 0px 1fr;
	gap: 0px;
}

/* Left Filter Sidebar */
.nf-filter-sidebar {
	width: 320px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: visible;
}

.nf-catalog-layout-wrapper.is-sidebar-collapsed .nf-filter-sidebar {
	width: 0px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.nf-sidebar-inner-card {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid var(--nf-color-border-subtle);
	border-radius: 20px;
	padding: 26px;
	box-shadow: var(--nf-shadow-card);
	position: sticky;
	top: 90px;
	min-height: calc(100vh - 120px);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.dark-mode .nf-sidebar-inner-card,
body.dark-theme .nf-sidebar-inner-card {
	background: rgba(16, 18, 36, 0.94);
	border-color: rgba(168, 85, 247, 0.28);
	box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6);
}

.nf-sidebar-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1.5px solid var(--nf-color-border);
	margin-bottom: 10px;
}

body.dark-mode .nf-sidebar-head,
body.dark-theme .nf-sidebar-head {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nf-sidebar-title-flex {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nf-sidebar-icon {
	font-size: 1.3rem;
}

.nf-sidebar-head h3 {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
}

body.dark-theme .nf-sidebar-head h3 {
	color: #f8fafc;
}

.nf-btn-reset-sidebar {
	background: #fee2e2;
	color: #b91c1c;
	border: none;
	font-size: 0.76rem;
	font-weight: 800;
	padding: 5px 10px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nf-btn-reset-sidebar:hover {
	background: #ef4444;
	color: #ffffff;
}

.nf-btn-close-sidebar-mobile {
	display: none;
	background: #f1f5f9;
	border: none;
	font-size: 1rem;
	padding: 4px 8px;
	border-radius: 6px;
	cursor: pointer;
}

.nf-sidebar-scroll-body {
	flex-grow: 1;
	overflow-y: auto;
	padding-right: 6px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nf-sidebar-scroll-body::-webkit-scrollbar {
	width: 5px;
}
.nf-sidebar-scroll-body::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

/* Accordion Filter Block */
.nf-filter-accordion-block {
	border-bottom: 1px solid var(--nf-color-border);
	padding-bottom: 16px;
}

body.dark-mode .nf-filter-accordion-block,
body.dark-theme .nf-filter-accordion-block {
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nf-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 8px 0;
	user-select: none;
}

.nf-filter-group-title {
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--nf-color-primary);
}

body.dark-mode .nf-filter-group-title,
body.dark-theme .nf-filter-group-title {
	color: #f8fafc;
}

.nf-accordion-arrow {
	font-size: 0.9rem;
	color: var(--nf-color-text-muted);
	transition: transform 0.2s ease;
}

.nf-filter-accordion-block.is-open .nf-accordion-arrow {
	transform: rotate(180deg);
}

.nf-accordion-content {
	display: none;
	padding-top: 12px;
}

.nf-filter-accordion-block.is-open .nf-accordion-content {
	display: block;
}

/* Gender Pills */
.nf-gender-filter-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nf-gender-pill {
	background: var(--nf-color-grey-50);
	border: 1.5px solid var(--nf-color-border);
	color: var(--nf-color-primary);
	font-size: 0.84rem;
	font-weight: 700;
	padding: 10px 14px;
	border-radius: 10px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s ease;
}

body.dark-mode .nf-gender-pill,
body.dark-theme .nf-gender-pill {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
}

.nf-gender-pill:hover {
	border-color: var(--nf-color-accent);
	color: var(--nf-color-accent);
	transform: translateX(3px);
}

.nf-gender-pill.is-active {
	background: var(--nf-gradient-primary);
	border-color: var(--nf-color-accent);
	color: #ffffff !important;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

/* Category Vertical List & Search */
.nf-cat-search-box {
	margin-bottom: 12px;
}

.nf-cat-search-box input {
	width: 100%;
	padding: 9px 14px;
	border-radius: 10px;
	border: 1.5px solid var(--nf-color-border);
	background: var(--nf-color-grey-50);
	color: var(--nf-color-primary);
	font-size: 0.84rem;
	outline: none;
	transition: all 0.2s ease;
}

.nf-cat-search-box input:focus {
	border-color: var(--nf-color-accent);
	background: var(--nf-color-surface);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

body.dark-mode .nf-cat-search-box input,
body.dark-theme .nf-cat-search-box input {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.12);
	color: #f8fafc;
}

.nf-category-vertical-list {
	max-height: 320px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 6px;
}

.nf-category-vertical-list::-webkit-scrollbar {
	width: 5px;
}
.nf-category-vertical-list::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

.nf-cat-item-btn {
	background: transparent;
	border: none;
	color: var(--nf-color-text-muted);
	font-size: 0.84rem;
	font-weight: 600;
	padding: 8px 10px;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	transition: all 0.2s ease;
}

body.dark-mode .nf-cat-item-btn,
body.dark-theme .nf-cat-item-btn {
	color: #94a3b8;
}

.nf-cat-item-btn:hover {
	background: var(--nf-color-grey-100);
	color: var(--nf-color-accent);
	padding-left: 14px;
}

body.dark-mode .nf-cat-item-btn:hover,
body.dark-theme .nf-cat-item-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #c084fc;
}

.nf-cat-item-btn.is-active {
	background: #ede9fe;
	color: #6d28d9;
	font-weight: 700;
}

body.dark-mode .nf-cat-item-btn.is-active,
body.dark-theme .nf-cat-item-btn.is-active {
	background: rgba(139, 92, 246, 0.25);
	color: #c084fc;
}

.nf-cat-count-badge {
	background: rgba(0, 0, 0, 0.06);
	font-size: 0.72rem;
	padding: 2px 8px;
	border-radius: 12px;
	font-weight: 700;
}

body.dark-mode .nf-cat-count-badge,
body.dark-theme .nf-cat-count-badge {
	background: rgba(255, 255, 255, 0.12);
}

/* Color Swatches Grid */
.nf-color-swatches-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.nf-color-filter-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2.5px solid transparent;
	cursor: pointer;
	transition: all 0.2s ease;
	margin: 0 auto;
}

.nf-color-filter-dot:hover,
.nf-color-filter-dot.is-active {
	transform: scale(1.2);
	box-shadow: 0 0 0 2.5px #8b5cf6;
}

/* Size Boxes */
.nf-size-boxes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.nf-size-filter-btn {
	padding: 8px 6px;
	font-size: 0.82rem;
	font-weight: 700;
	background: var(--nf-color-grey-50);
	border: 1.5px solid var(--nf-color-border);
	border-radius: 8px;
	color: var(--nf-color-primary);
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
}

body.dark-mode .nf-size-filter-btn,
body.dark-theme .nf-size-filter-btn {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
}

.nf-size-filter-btn:hover {
	border-color: var(--nf-color-accent);
	color: var(--nf-color-accent);
	transform: translateY(-1px);
}

.nf-size-filter-btn.is-active {
	background: var(--nf-color-accent);
	border-color: var(--nf-color-accent);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

/* Material & Price Pills */
.nf-material-pills-wrap,
.nf-price-filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nf-mat-filter-btn,
.nf-price-filter-btn {
	padding: 7px 12px;
	font-size: 0.78rem;
	font-weight: 600;
	background: var(--nf-color-grey-50);
	border: 1.5px solid var(--nf-color-border);
	border-radius: 8px;
	color: var(--nf-color-primary);
	cursor: pointer;
	transition: all 0.2s ease;
}

body.dark-mode .nf-mat-filter-btn,
body.dark-mode .nf-price-filter-btn,
body.dark-theme .nf-mat-filter-btn,
body.dark-theme .nf-price-filter-btn {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
}

.nf-mat-filter-btn:hover,
.nf-price-filter-btn:hover {
	border-color: var(--nf-color-accent);
	color: var(--nf-color-accent);
	transform: translateY(-1px);
}

.nf-mat-filter-btn.is-active,
.nf-price-filter-btn.is-active {
	background: #ede9fe;
	border-color: var(--nf-color-accent);
	color: #6b21a8;
	font-weight: 700;
}

body.dark-mode .nf-mat-filter-btn.is-active,
body.dark-mode .nf-price-filter-btn.is-active,
body.dark-theme .nf-mat-filter-btn.is-active,
body.dark-theme .nf-price-filter-btn.is-active {
	background: rgba(139, 92, 246, 0.25);
	color: #c084fc;
}

/* Product Catalog Grid */
.nf-catalog-main-content {
	flex-grow: 1;
	min-width: 0;
}

.nf-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	transition: all 0.3s ease;
}

.nf-catalog-layout-wrapper.is-sidebar-collapsed .nf-catalog-grid {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
	.nf-catalog-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.nf-catalog-layout-wrapper.is-sidebar-collapsed .nf-catalog-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 900px) {
	.nf-catalog-layout-wrapper {
		grid-template-columns: 1fr !important;
	}
	.nf-filter-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 320px !important;
		height: 100vh;
		z-index: 99999;
		background: var(--nf-color-surface);
		box-shadow: 0 0 40px rgba(0,0,0,0.3);
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}
	body.dark-mode .nf-filter-sidebar,
	body.dark-theme .nf-filter-sidebar {
		background: #110d24;
	}
	.nf-catalog-layout-wrapper:not(.is-sidebar-collapsed) .nf-filter-sidebar {
		transform: translateX(0);
	}
	.nf-btn-close-sidebar-mobile {
		display: block !important;
	}
	.nf-catalog-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 580px) {
	.nf-catalog-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Product Card */
.nf-product-card-item {
	background: var(--nf-color-surface);
	border: 1px solid var(--nf-color-border);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: var(--nf-shadow-card);
}

body.dark-mode .nf-product-card-item,
body.dark-theme .nf-product-card-item {
	background: rgba(18, 20, 38, 0.96);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
}

.nf-product-card-item:hover {
	transform: translateY(-5px);
	border-color: var(--nf-color-border-subtle);
	box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.22);
}

body.dark-mode .nf-product-card-item:hover,
body.dark-theme .nf-product-card-item:hover {
	border-color: rgba(168, 85, 247, 0.4);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.nf-card-media-wrapper {
	position: relative;
	aspect-ratio: 3/4;
	background: var(--nf-color-grey-50);
	overflow: hidden;
}

body.dark-mode .nf-card-media-wrapper,
body.dark-theme .nf-card-media-wrapper {
	background: #121426;
}

.nf-card-img-link {
	display: block;
	width: 100%;
	height: 100%;
}

.nf-card-img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.nf-product-card-item:hover .nf-card-img-link img {
	transform: scale(1.06);
}

.nf-card-floating-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	justify-content: space-between;
	z-index: 5;
}

.nf-badge-chip-sm {
	font-size: 0.68rem;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.nf-chip-new {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #ffffff;
}

.nf-chip-trending {
	background: linear-gradient(135deg, #f97316, #ef4444);
	color: #ffffff;
}

.nf-chip-exclusive {
	background: #0f172a;
	color: #ffffff;
}

.nf-chip-discount {
	background: #ef4444;
	color: #ffffff;
	margin-left: auto;
}

.nf-card-hover-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	opacity: 0;
	transform: translateX(10px);
	transition: all 0.25s ease;
	z-index: 6;
}

.nf-product-card-item:hover .nf-card-hover-actions {
	opacity: 1;
	transform: translateX(0);
}

.nf-action-icon-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.9rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.2s ease;
}

body.dark-mode .nf-action-icon-btn,
body.dark-theme .nf-action-icon-btn {
	background: rgba(15, 23, 42, 0.9);
	color: #f8fafc;
	border-color: rgba(255, 255, 255, 0.12);
}

.nf-action-icon-btn:hover {
	background: var(--nf-color-accent);
	color: #ffffff;
	transform: scale(1.1);
}

.nf-card-quick-sizes {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 6px 0;
	transform: translateY(100%);
	transition: transform 0.25s ease;
	z-index: 5;
}

.nf-product-card-item:hover .nf-card-quick-sizes {
	transform: translateY(0);
}

.nf-card-details {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.nf-card-meta-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.nf-card-cat-label {
	font-size: 0.74rem;
	font-weight: 700;
	color: var(--nf-color-accent);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nf-card-rating {
	font-size: 0.76rem;
	font-weight: 700;
	color: #f59e0b;
	display: flex;
	align-items: center;
	gap: 3px;
}

.nf-card-product-title {
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 10px 0;
}

.nf-card-product-title a {
	color: var(--nf-color-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

body.dark-mode .nf-card-product-title a,
body.dark-theme .nf-card-product-title a {
	color: #f8fafc;
}

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

.nf-card-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--nf-color-border);
}

body.dark-mode .nf-card-footer-row,
body.dark-theme .nf-card-footer-row {
	border-top-color: rgba(255, 255, 255, 0.06);
}

.nf-card-pricing-block {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.nf-card-pricing-block .nf-price-current {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--nf-color-primary);
}

body.dark-mode .nf-card-pricing-block .nf-price-current,
body.dark-theme .nf-card-pricing-block .nf-price-current {
	color: #f8fafc;
}

.nf-card-pricing-block .nf-price-del {
	font-size: 0.82rem;
	color: var(--nf-color-text-muted);
}

.nf-btn-card-bag {
	background: var(--nf-color-primary) !important;
	color: var(--nf-color-secondary) !important;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	padding: 8px 14px !important;
	border-radius: 10px !important;
	text-decoration: none !important;
	border: none !important;
	transition: all 0.2s ease !important;
}

body.dark-mode .nf-btn-card-bag,
body.dark-theme .nf-btn-card-bag {
	background: var(--nf-color-accent) !important;
	color: #ffffff !important;
}

.nf-btn-card-bag:hover {
	background: var(--nf-color-accent) !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

/* Zero Results Box */
.nf-no-results-box {
	text-align: center;
	padding: 60px 20px;
	background: var(--nf-color-surface);
	border-radius: 16px;
	border: 1px solid var(--nf-color-border);
}

body.dark-mode .nf-no-results-box,
body.dark-theme .nf-no-results-box {
	background: #110d24;
	border-color: #272147;
}

.nf-empty-icon {
	font-size: 3rem;
	margin-bottom: 15px;
}

.nf-no-results-box h3 {
	font-size: 1.3rem;
	font-weight: 800;
	margin: 0 0 10px 0;
	color: var(--nf-color-primary);
}

.nf-no-results-box p {
	color: var(--nf-color-text-muted);
	margin-bottom: 20px;
}

/* ==========================================================================
   6. LUXURY FOOTER SYSTEM & NEWSLETTER
   ========================================================================== */
.nf-footer {
	background: linear-gradient(180deg, #0d0b1a 0%, #030008 100%);
	color: #f8fafc;
	padding: 70px 0 0 0;
	border-top: 1px solid rgba(139, 92, 246, 0.2);
	position: relative;
	overflow: hidden;
}

.nf-footer-newsletter-box {
	background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
	border: 1px solid rgba(168, 85, 247, 0.3);
	border-radius: 24px;
	padding: 48px;
	text-align: center;
	margin-bottom: 60px;
	box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(16px);
}

.nf-newsletter-tag {
	display: inline-block;
	background: linear-gradient(135deg, #a855f7, #ec4899);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.nf-newsletter-heading {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 12px 0;
	letter-spacing: -0.02em;
}

.nf-newsletter-subtext {
	color: #cbd5e1;
	font-size: 1.05rem;
	max-width: 580px;
	margin: 0 auto 28px auto;
}

.nf-newsletter-form-modern {
	max-width: 520px;
	margin: 0 auto;
}

.nf-newsletter-input-group {
	display: flex;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	padding: 6px;
	backdrop-filter: blur(10px);
	transition: all 0.25s ease;
}

.nf-newsletter-input-group:focus-within {
	border-color: #a855f7;
	box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
	background: rgba(255, 255, 255, 0.12);
}

.nf-newsletter-input-field {
	flex-grow: 1;
	background: transparent;
	border: none;
	padding: 12px 18px;
	color: #ffffff;
	font-size: 0.95rem;
	outline: none;
}

.nf-newsletter-input-field::placeholder {
	color: #94a3b8;
}

.nf-newsletter-submit-btn {
	background: linear-gradient(135deg, #7c3aed, #ec4899);
	color: #ffffff;
	border: none;
	padding: 12px 26px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.nf-newsletter-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.nf-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
}

.nf-footer-col h4 {
	color: #ffffff !important;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.nf-footer-col p {
	color: #cbd5e1 !important;
}

.nf-footer-col a {
	color: #94a3b8 !important;
	transition: all 0.2s ease;
}

.nf-footer-col a:hover {
	color: #c084fc !important;
	padding-left: 4px;
}

.nf-footer-bottom {
	border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.nf-footer-copyright p {
	color: #94a3b8 !important;
}

.nf-footer-links a {
	color: #94a3b8 !important;
}

.nf-footer-links a:hover {
	color: #ffffff !important;
}

/* ==========================================================================
   Page Headers & Spacing Optimization
   ========================================================================== */
.site-main {
	padding: 36px 0 60px !important;
}

.nf-page-entry-header,
.entry-header {
	text-align: center;
	margin-bottom: 24px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.entry-title,
.page-title {
	font-family: var(--nf-font-heading);
	font-size: clamp(1.35rem, 2.2vw, 1.7rem) !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--nf-color-text, #0f172a);
	line-height: 1.25 !important;
}

body.dark-mode .entry-title,
body.dark-mode .page-title,
body.dark-theme .entry-title,
body.dark-theme .page-title {
	color: #f8fafc;
}

/* ==========================================================================
   Responsive Header Breakpoints & Anti-Truncation Rules
   ========================================================================== */
@media (max-width: 1366px) {
	.nf-nav-menu {
		gap: 12px !important;
	}
	.nf-nav-link {
		font-size: 0.78rem !important;
		letter-spacing: 0.02em !important;
	}
	.nf-menu-badge-hot,
	.nf-menu-badge-new,
	.nf-menu-badge-sale {
		padding: 1px 4px !important;
		font-size: 0.55rem !important;
	}
}

@media (max-width: 1160px) {
	.nf-desktop-navigation {
		display: none !important;
	}
	.nf-mobile-menu-trigger {
		display: inline-flex !important;
	}
	.nf-navbar {
		padding: 10px 16px !important;
	}
}

/* ==========================================================================
   Comprehensive Public Page Responsiveness & UI Polish
   ========================================================================== */

/* 1. Hero Mobile Responsiveness */
@media (max-width: 480px) {
	.nf-hero-ctas {
		flex-direction: column !important;
		width: 100% !important;
		gap: 12px !important;
	}
	.nf-hero-ctas .nf-btn {
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
		padding: 13px 20px !important;
	}
	.nf-hero-heading {
		font-size: clamp(2rem, 8vw, 2.6rem) !important;
	}
}

/* 2. Showroom Mobile Scale Bounds */
@media (max-width: 580px) {
	.nf-showroom-grid .nf-animate-float {
		width: min(260px, 80vw) !important;
		margin: 20px auto !important;
	}
	.nf-showroom-grid > div:first-child {
		padding: 40px 15px !important;
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
	}
}

/* 3. Search Overlay Mobile Responsiveness */
.nf-search-overlay-inner {
	max-width: min(820px, 92vw) !important;
}
@media (max-width: 600px) {
	.nf-search-container {
		padding: 20px 12px !important;
	}
	.nf-search-input-wrap input {
		font-size: 1rem !important;
		padding: 14px 44px 14px 18px !important;
	}
	.nf-popular-tags {
		font-size: 0.8rem !important;
		line-height: 1.8 !important;
	}
}

/* 4. Filter Drawer Safe Sizing on Compact Screens */
.nf-filter-drawer {
	width: min(360px, 88vw) !important;
}

/* 5. Touch Friendly Scrollbars & Category Tabs */
.nf-faq-category-nav {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	padding-bottom: 4px;
}
.nf-faq-category-nav::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}
