/* ==========================================================================
   SOLE FOOTWEAR — LUXURY & PERFORMANCE DARK THEME
   Palette: Obsidian, Deep Charcoal, Neon Lime (#e8ff47), Crisp White
   ========================================================================== */

:root {
	--bg-root: #08090c;
	--bg-surface: #0f1117;
	--bg-elevated: #161922;
	--bg-card: #13151e;
	--bg-hover: #1c202d;
	--bg-glass: rgba(15, 17, 23, 0.82);
	--bg-glass-strong: rgba(10, 11, 16, 0.95);

	--fg-primary: #f5f7fc;
	--fg-secondary: #9ea7b8;
	--fg-muted: #626b7d;
	--fg-subtle: #454c5a;

	--accent: #e8ff47;
	--accent-hover: #f3ff80;
	--accent-glow: rgba(232, 255, 71, 0.28);
	--accent-glow-strong: rgba(232, 255, 71, 0.5);
	--accent-dim: rgba(232, 255, 71, 0.12);
	--accent-text: #0b0d0e;

	--cyan-accent: #00f2fe;
	--crimson-accent: #ff4757;
	--gold-accent: #ffd166;
	--emerald-accent: #10b981;

	--border-subtle: rgba(255, 255, 255, 0.07);
	--border-light: rgba(255, 255, 255, 0.12);
	--border-accent: rgba(232, 255, 71, 0.35);

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Playfair Display', Georgia, serif;
	--font-mono: 'Space Grotesk', ui-monospace, SFMono-Regular, monospace;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.7);
	--shadow-neon: 0 0 24px rgba(232, 255, 71, 0.25);

	--ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-root);
	color: var(--fg-primary);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: var(--bg-root);
	color: var(--fg-primary);
	overflow-x: hidden;
	min-height: 100vh;
	line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: var(--bg-root);
}
::-webkit-scrollbar-thumb {
	background: var(--bg-elevated);
	border-radius: 4px;
	border: 2px solid var(--bg-root);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--fg-muted);
}

/* Selection */
::selection {
	background: var(--accent);
	color: var(--accent-text);
}

/* Utility Layout */
.app-container {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main-content {
	flex: 1;
}

.max-w-base {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* Announcement Bar */
.announcement-bar {
	background: #000000;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	padding: 0.5rem 1rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	position: relative;
	z-index: 50;
}
.announcement-bar strong {
	color: var(--accent);
	font-weight: 700;
}
.announcement-tag {
	background: var(--accent-dim);
	color: var(--accent);
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border: 1px solid var(--border-accent);
}

/* Sticky Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bg-glass);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border-subtle);
	transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.logo-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--fg-primary);
	cursor: pointer;
	user-select: none;
}

.logo-brand .brand-text {
	font-family: var(--font-mono);
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.logo-brand .neon-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 10px var(--accent);
	display: inline-block;
}

.nav-links-desktop {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-link {
	color: var(--fg-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
	cursor: pointer;
	position: relative;
	padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
	color: var(--fg-primary);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
	box-shadow: 0 0 8px var(--accent-glow);
}

.sale-pill-header {
	background: var(--crimson-accent);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 10px;
	margin-left: 4px;
	vertical-align: middle;
	letter-spacing: 0.05em;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.icon-btn {
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--fg-primary);
	width: 42px;
	height: 42px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}

.icon-btn:hover {
	background: var(--bg-elevated);
	border-color: var(--border-light);
	color: var(--accent);
	transform: translateY(-1px);
}

.badge-count {
	position: absolute;
	top: -3px;
	right: -3px;
	background: var(--accent);
	color: var(--accent-text);
	font-size: 0.7rem;
	font-weight: 800;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.cart-btn-pill {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	color: var(--fg-primary);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.cart-btn-pill:hover {
	background: var(--bg-elevated);
	border-color: var(--border-accent);
}
.cart-btn-pill .cart-subtotal {
	color: var(--accent);
	font-family: var(--font-mono);
}

.currency-select {
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.4rem 0.6rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	outline: none;
}
.currency-select option {
	background: var(--bg-surface);
	color: var(--fg-primary);
}

/* Mobile Menu Button */
.mobile-toggle {
	display: none;
}

@media (max-width: 960px) {
	.nav-links-desktop {
		display: none;
	}
	.mobile-toggle {
		display: inline-flex;
	}
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 3.5rem 0 5rem;
	overflow: hidden;
	background: radial-gradient(circle at 70% 30%, rgba(232, 255, 71, 0.05) 0%, transparent 60%),
	            radial-gradient(circle at 10% 80%, rgba(0, 242, 254, 0.04) 0%, transparent 50%),
	            var(--bg-root);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.95fr;
	gap: 3.5rem;
	align-items: center;
}

@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--accent-dim);
	border: 1px solid var(--border-accent);
	color: var(--accent);
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.hero-title .highlight-italic {
	font-style: italic;
	color: var(--accent);
	font-family: var(--font-display);
	position: relative;
	display: inline-block;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--fg-secondary);
	line-height: 1.6;
	max-width: 540px;
	margin-bottom: 2rem;
}

.hero-cta-group {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--accent-text);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.9rem 1.8rem;
	border-radius: var(--radius-full);
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	transition: all 0.25s var(--ease-spring);
	box-shadow: 0 4px 20px var(--accent-glow);
	text-decoration: none;
}

.btn-primary:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px var(--accent-glow-strong);
}

.btn-secondary-outline {
	background: rgba(255, 255, 255, 0.03);
	color: var(--fg-primary);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.9rem 1.8rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-light);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.btn-secondary-outline:hover {
	background: var(--bg-elevated);
	border-color: var(--fg-primary);
	transform: translateY(-2px);
}

.hero-stats-row {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.hero-stat-item .stat-value {
	font-family: var(--font-mono);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--fg-primary);
	line-height: 1;
	margin-bottom: 0.25rem;
}
.hero-stat-item .stat-label {
	font-size: 0.78rem;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Hero Showcase Card */
.hero-visual-card {
	position: relative;
	background: linear-gradient(145deg, var(--bg-surface), var(--bg-card));
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 2rem;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.hero-shoe-stage {
	position: relative;
	width: 100%;
	height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-glow-backdrop {
	position: absolute;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
	filter: blur(40px);
	border-radius: 50%;
	animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
	0% { transform: scale(0.9); opacity: 0.5; }
	100% { transform: scale(1.2); opacity: 0.9; }
}

.hero-shoe-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-md);
	transform: rotate(-4deg) scale(1.02);
	transition: transform 0.6s var(--ease-spring);
	box-shadow: var(--shadow-md);
}

.hero-visual-card:hover .hero-shoe-img {
	transform: rotate(0deg) scale(1.05);
}

.floating-pill-badge {
	position: absolute;
	background: var(--bg-glass-strong);
	border: 1px solid var(--border-light);
	backdrop-filter: blur(12px);
	padding: 0.6rem 1rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 0.6rem;
	box-shadow: var(--shadow-md);
	z-index: 10;
}

.floating-pill-badge.top-badge {
	top: 1.5rem;
	right: 1.5rem;
}

.floating-pill-badge.bottom-badge {
	bottom: 1.5rem;
	left: 1.5rem;
}

/* Trust Bar */
.trust-bar {
	background: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 1.75rem 0;
}

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

@media (max-width: 900px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (max-width: 520px) {
	.trust-grid {
		grid-template-columns: 1fr;
	}
}

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

.trust-icon-box {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	flex-shrink: 0;
}

.trust-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--fg-primary);
	margin-bottom: 0.15rem;
}

.trust-desc {
	font-size: 0.78rem;
	color: var(--fg-muted);
}

/* Categories Section */
.section-padding {
	padding: 5rem 0;
}

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

.section-eyebrow {
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
	display: block;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--fg-primary);
	line-height: 1.15;
}

.section-subtitle {
	color: var(--fg-secondary);
	font-size: 0.95rem;
	max-width: 560px;
	margin-top: 0.4rem;
}

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

@media (max-width: 1024px) {
	.category-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.category-cards-grid {
		grid-template-columns: 1fr;
	}
}

.category-card {
	position: relative;
	height: 320px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--border-subtle);
	transition: all 0.4s var(--ease-spring);
}

.category-card:hover {
	border-color: var(--border-accent);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.category-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-spring);
}

.category-card:hover .category-card-img {
	transform: scale(1.08);
}

.category-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 9, 12, 0.1) 0%, rgba(8, 9, 12, 0.85) 100%);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
	background: linear-gradient(180deg, rgba(8, 9, 12, 0.05) 0%, rgba(8, 9, 12, 0.92) 100%);
}

.category-card-count {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.25rem;
}

.category-card-name {
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.01em;
}

.category-card-action {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--fg-secondary);
	margin-top: 0.5rem;
	transition: color 0.2s ease, transform 0.2s ease;
}

.category-card:hover .category-card-action {
	color: var(--accent);
	transform: translateX(4px);
}

/* Catalog Filter Bar */
.filter-toolbar {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.filter-row-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.category-pills {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 2px;
	scrollbar-width: none;
}
.category-pills::-webkit-scrollbar {
	display: none;
}

.pill-filter-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	font-size: 0.82rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.pill-filter-btn:hover {
	color: var(--fg-primary);
	border-color: var(--border-light);
}

.pill-filter-btn.active {
	background: var(--accent);
	color: var(--accent-text);
	border-color: var(--accent);
	font-weight: 700;
	box-shadow: 0 0 12px var(--accent-glow);
}

.filter-controls-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.sort-select {
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	color: var(--fg-primary);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-md);
	cursor: pointer;
	outline: none;
}

.toggle-filters-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	color: var(--fg-primary);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	cursor: pointer;
	transition: all 0.2s ease;
}
.toggle-filters-btn:hover, .toggle-filters-btn.active {
	background: var(--bg-hover);
	border-color: var(--border-light);
	color: var(--accent);
}

/* Secondary Advanced Filters Drawer */
.advanced-filters-panel {
	border-top: 1px solid var(--border-subtle);
	padding-top: 1rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr auto;
	gap: 1.5rem;
	align-items: center;
}

@media (max-width: 900px) {
	.advanced-filters-panel {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 560px) {
	.advanced-filters-panel {
		grid-template-columns: 1fr;
	}
}

.filter-group-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.5rem;
	display: block;
}

.size-chips-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.size-chip {
	width: 34px;
	height: 34px;
	border-radius: var(--radius-sm);
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	font-size: 0.78rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.15s ease;
}
.size-chip:hover {
	border-color: var(--border-light);
	color: var(--fg-primary);
}
.size-chip.active {
	background: var(--accent);
	color: var(--accent-text);
	border-color: var(--accent);
	font-weight: 700;
}

.price-range-container {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.price-range-slider {
	accent-color: var(--accent);
	cursor: pointer;
	width: 100%;
}

.tag-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.tag-chip {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.35rem 0.7rem;
	border-radius: var(--radius-full);
	cursor: pointer;
}
.tag-chip.active {
	background: var(--fg-primary);
	color: var(--bg-root);
	border-color: var(--fg-primary);
	font-weight: 700;
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 860px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

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

/* Product Card */
.product-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s var(--ease-spring);
}

.product-card:hover {
	border-color: var(--border-light);
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.product-image-container {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #0d0f15;
	overflow: hidden;
	cursor: pointer;
}

.product-primary-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease-spring), opacity 0.3s ease;
}

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

.product-badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-sm);
	z-index: 10;
}

.badge-sale {
	background: var(--crimson-accent);
	color: #fff;
}
.badge-new {
	background: var(--accent);
	color: var(--accent-text);
}
.badge-bestseller {
	background: var(--gold-accent);
	color: #0b0d0e;
}
.badge-limited {
	background: #8b5cf6;
	color: #fff;
}
.badge-eco {
	background: var(--emerald-accent);
	color: #fff;
}

.wishlist-btn-card {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg-glass-strong);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.2s ease;
}

.wishlist-btn-card:hover {
	color: var(--crimson-accent);
	transform: scale(1.1);
}

.wishlist-btn-card.in-wishlist {
	color: var(--crimson-accent);
	background: rgba(255, 71, 87, 0.15);
	border-color: rgba(255, 71, 87, 0.4);
}

.quick-add-overlay {
	position: absolute;
	bottom: 0.75rem;
	left: 0.75rem;
	right: 0.75rem;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.25s var(--ease-spring);
	z-index: 10;
}

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

.quick-view-btn {
	width: 100%;
	background: var(--bg-glass-strong);
	color: var(--fg-primary);
	border: 1px solid var(--border-light);
	backdrop-filter: blur(12px);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.6rem;
	border-radius: var(--radius-md);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	transition: all 0.2s ease;
}

.quick-view-btn:hover {
	background: var(--accent);
	color: var(--accent-text);
	border-color: var(--accent);
}

.product-details {
	padding: 1.15rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-category-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.35rem;
}

.product-category-tag {
	font-size: 0.72rem;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	color: var(--gold-accent);
	font-weight: 600;
}

.product-rating .count {
	color: var(--fg-muted);
	font-weight: 400;
	font-size: 0.7rem;
}

.product-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--fg-primary);
	margin-bottom: 0.4rem;
	line-height: 1.3;
	cursor: pointer;
	transition: color 0.2s ease;
}

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

.product-color-swatches {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.85rem;
}

.swatch-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-footer-row {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border-subtle);
}

.product-price-box {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.product-price {
	font-family: var(--font-mono);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fg-primary);
}

.product-original-price {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--fg-muted);
	text-decoration: line-through;
}

.add-bag-btn-mini {
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	color: var(--fg-primary);
	padding: 0.45rem 0.8rem;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	transition: all 0.2s ease;
}

.add-bag-btn-mini:hover {
	background: var(--accent);
	color: var(--accent-text);
	border-color: var(--accent);
	transform: translateY(-1px);
}

/* Lookbook Lifestyle Gallery with Hotspots */
.lookbook-section {
	background: #050608;
	position: relative;
}

.lookbook-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.5rem;
}

@media (max-width: 900px) {
	.lookbook-grid {
		grid-template-columns: 1fr;
	}
}

.lookbook-card {
	position: relative;
	height: 480px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
}

.lookbook-card.card-large {
	height: 480px;
}

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

.lookbook-overlay-tag {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	background: var(--bg-glass-strong);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border-light);
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	max-width: 320px;
}

.lookbook-hotspot {
	position: absolute;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--accent-text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 0 0 6px rgba(232, 255, 71, 0.3);
	animation: hotspotPulse 2.5s infinite;
	z-index: 15;
}

@keyframes hotspotPulse {
	0% { box-shadow: 0 0 0 0 rgba(232, 255, 71, 0.6); }
	70% { box-shadow: 0 0 0 14px rgba(232, 255, 71, 0); }
	100% { box-shadow: 0 0 0 0 rgba(232, 255, 71, 0); }
}

.hotspot-popover {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--bg-surface);
	border: 1px solid var(--border-accent);
	padding: 0.75rem;
	border-radius: var(--radius-md);
	width: 200px;
	box-shadow: var(--shadow-lg);
	display: none;
	z-index: 20;
}

.lookbook-hotspot:hover .hotspot-popover {
	display: block;
}

/* Promo Banner Section */
.promo-banner {
	background: linear-gradient(135deg, #11141c 0%, #191f2c 50%, #0d1017 100%);
	border: 1px solid var(--border-accent);
	border-radius: var(--radius-lg);
	padding: 3.5rem 2.5rem;
	position: relative;
	overflow: hidden;
	margin: 3rem auto;
}

.promo-glow {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
	filter: blur(50px);
}

.promo-content {
	position: relative;
	z-index: 10;
	max-width: 620px;
}

/* Testimonials Carousel */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 900px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

.testimonial-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-quote {
	font-size: 1rem;
	color: var(--fg-primary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--accent);
}

/* About / Stats Banner */
.stats-banner-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 3rem 2rem;
	text-align: center;
}

@media (max-width: 900px) {
	.stats-banner-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.stats-big-number {
	font-family: var(--font-mono);
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter-box {
	background: radial-gradient(circle at 50% 50%, rgba(232, 255, 71, 0.08) 0%, transparent 80%),
	            var(--bg-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 4rem 2rem;
	text-align: center;
	max-width: 780px;
	margin: 0 auto;
}

.newsletter-form {
	display: flex;
	gap: 0.75rem;
	max-width: 500px;
	margin: 1.5rem auto 0;
}

@media (max-width: 540px) {
	.newsletter-form {
		flex-direction: column;
	}
}

.input-styled {
	flex: 1;
	background: var(--bg-elevated);
	border: 1px solid var(--border-light);
	color: var(--fg-primary);
	font-size: 0.9rem;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius-full);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-styled:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-dim);
}

/* Drawer Component (Cart & Wishlist) */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
	z-index: 200;
	animation: fadeIn 0.2s ease forwards;
}

.drawer-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 440px;
	background: var(--bg-surface);
	border-left: 1px solid var(--border-light);
	z-index: 210;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-lg);
	animation: slideInRight 0.3s var(--ease-spring) forwards;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInRight {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

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

.drawer-title {
	font-size: 1.2rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.drawer-footer {
	padding: 1.25rem 1.5rem;
	border-top: 1px solid var(--border-subtle);
	background: var(--bg-card);
}

/* Cart Item Card */
.cart-item-card {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 1rem;
	align-items: center;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-subtle);
}

.cart-item-thumb {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-md);
	object-fit: cover;
	background: #000;
}

.cart-item-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.cart-item-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--fg-primary);
}

.cart-item-meta {
	font-size: 0.78rem;
	color: var(--fg-muted);
}

.cart-item-price {
	font-family: var(--font-mono);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--accent);
}

.qty-stepper {
	display: inline-flex;
	align-items: center;
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-full);
	padding: 2px 6px;
	gap: 0.5rem;
	margin-top: 0.4rem;
}

.qty-btn {
	background: transparent;
	border: none;
	color: var(--fg-primary);
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1rem;
}
.qty-btn:hover {
	color: var(--accent);
}
.qty-num {
	font-size: 0.82rem;
	font-weight: 700;
	min-width: 16px;
	text-align: center;
}

/* Shipping Progress Bar in Cart */
.shipping-progress-box {
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	font-size: 0.8rem;
}

.shipping-bar-track {
	width: 100%;
	height: 6px;
	background: var(--bg-card);
	border-radius: 3px;
	overflow: hidden;
	margin-top: 0.5rem;
}

.shipping-bar-fill {
	height: 100%;
	background: var(--accent);
	border-radius: 3px;
	transition: width 0.3s ease;
}

/* Modals (Product Detail, Checkout, Contact) */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fadeIn 0.2s ease;
}

.modal-content {
	background: var(--bg-surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: var(--shadow-lg);
	animation: scaleUp 0.25s var(--ease-spring);
}

@keyframes scaleUp {
	from { transform: scale(0.95); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	color: var(--fg-primary);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.2s ease;
}
.modal-close-btn:hover {
	background: var(--bg-hover);
	color: var(--accent);
}

/* Product Detail Modal Grid */
.product-modal-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 2rem;
	padding: 2rem;
}

@media (max-width: 768px) {
	.product-modal-grid {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}
}

.modal-gallery {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.modal-main-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-md);
	object-fit: cover;
	background: #090b10;
	border: 1px solid var(--border-subtle);
}

.modal-thumb-row {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
}

.modal-thumb {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-sm);
	object-fit: cover;
	cursor: pointer;
	border: 2px solid transparent;
	opacity: 0.6;
	transition: all 0.2s ease;
}
.modal-thumb:hover, .modal-thumb.active {
	border-color: var(--accent);
	opacity: 1;
}

/* Live Search Modal / Overlay */
.search-modal-content {
	max-width: 650px;
	background: var(--bg-surface);
	border: 1px solid var(--border-accent);
	border-radius: var(--radius-lg);
	overflow: hidden;
	width: 100%;
}

.search-input-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.search-field-large {
	background: transparent;
	border: none;
	color: var(--fg-primary);
	font-size: 1.2rem;
	font-weight: 600;
	outline: none;
	width: 100%;
}

.search-results-list {
	max-height: 400px;
	overflow-y: auto;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Toast Notifications Container */
.toast-container {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	pointer-events: none;
}

.toast-item {
	pointer-events: auto;
	background: var(--bg-glass-strong);
	border: 1px solid var(--border-accent);
	backdrop-filter: blur(16px);
	padding: 0.9rem 1.25rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 280px;
	animation: slideInUp 0.3s var(--ease-spring);
}

@keyframes slideInUp {
	from { transform: translateY(100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.toast-icon {
	color: var(--accent);
	font-size: 1.2rem;
}

/* Footer */
.site-footer {
	background: #040507;
	border-top: 1px solid var(--border-subtle);
	padding: 4.5rem 0 2.5rem;
	color: var(--fg-secondary);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 3.5rem;
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 520px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

.footer-column-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--fg-primary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.25rem;
}

.footer-links-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link {
	color: var(--fg-muted);
	text-decoration: none;
	font-size: 0.88rem;
	transition: color 0.2s ease;
	cursor: pointer;
}
.footer-link:hover {
	color: var(--accent);
}

.social-icons-row {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.social-link-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--bg-elevated);
	border: 1px solid var(--border-subtle);
	color: var(--fg-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s ease;
}
.social-link-btn:hover {
	background: var(--accent);
	color: var(--accent-text);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid var(--border-subtle);
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--fg-muted);
	flex-wrap: wrap;
	gap: 1rem;
}

/* Helper Badge / Pill */
.glow-tag {
	background: var(--accent-dim);
	color: var(--accent);
	border: 1px solid var(--border-accent);
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-full);
	font-size: 0.7rem;
	font-weight: 700;
}
