:root {
	--primary: #d92727;
	--primary-dark: #b42525;
	--primary-dim: rgba(217, 39, 39, 0.1);
	--bg: #0a0a0a;
	--bg-surface: #141414;
	--bg-card: #1c1c1c;
	--bg-elevated: #242424;
	--text: #e8e8e8;
	--text-muted: #888888;
	--border: #2a2a2a;
	--radius: 8px;
	--shadow: 0 2px 8px rgba(0,0,0,0.3);
	--shadow-lg: 0 4px 24px rgba(0,0,0,0.5);
	--container: 1200px;
	--hero-bg: linear-gradient(180deg, #050505 0%, #100808 30%, #0a0a0a 100%);
	--led-frame: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 20%, #0d0d0d 50%, #151515 80%, #333 100%);
	--led-display: #050505;
	--led-brand: rgba(255,255,255,0.1);
	--led-brand-border: rgba(255,255,255,0.03);
	--control-bg: #111;
	--control-option-bg: #1a1a1a;
	--control-border-hover: rgba(217,39,39,0.4);
	--led-frame-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3), 0 0 40px rgba(217,39,39,0.10);
	--led-frame-shadow-50: 0 2px 4px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3), 0 0 70px rgba(217,39,39,0.22), 0 0 120px rgba(217,39,39,0.08);
	--hero-dot-color: rgba(217, 39, 39, 0.07);
	--scan-line-color: rgba(0,0,0,0.12);
	--led-dot-color: rgba(255,255,255,0.03);
	--display-shadow: inset 0 0 20px rgba(0,0,0,0.8), inset 0 0 60px rgba(0,0,0,0.4);
	--led-bevel: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%, rgba(255,255,255,0.03));
	--hero-conic-color: rgba(217, 39, 39, 0.03);
	--overlay-bg: rgba(18, 18, 18, 0.7);
}

[data-theme="light"] {
	--bg: #f2f2f2;
	--bg-surface: #ffffff;
	--bg-card: #ffffff;
	--bg-elevated: #ffffff;
	--text: #1a1a1a;
	--text-muted: #666666;
	--border: #d4d4d4;
	--shadow: 0 2px 8px rgba(0,0,0,0.08);
	--shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
	--hero-bg: linear-gradient(180deg, #e8e0e0 0%, #f0e8e8 30%, #f5f0f0 100%);
	--hero-dot-color: rgba(217, 39, 39, 0.12);
	--hero-conic-color: rgba(217, 39, 39, 0.06);
	--control-bg: #ffffff;
	--control-option-bg: #ffffff;
	--control-border-hover: rgba(217,39,39,0.3);
	--overlay-bg: rgba(255, 255, 255, 0.7);
}

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
}

h1, h2, h3, h4, h5, h6, .section__title, .page-header h1, .hero h1, .cta h2, .product-title, .site-title {
	font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 700;
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 99999;
	background: #0a0a0a;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.preloader-led {
	background: #080808;
	border: 1px solid #222;
	border-radius: 6px;
	padding: 0.6rem 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 0 30px rgba(217,39,39,0.08);
}
.preloader-led-inner {
	overflow: hidden;
	white-space: nowrap;
}
.preloader-text {
	display: inline-block;
	font-family: "Orbitron", "Courier New", monospace;
	font-weight: 900;
	font-size: 1.3rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	color: #ff2020;
	text-shadow:
		0 0 6px rgba(255,32,32,0.8),
		0 0 14px rgba(255,32,32,0.4),
		0 0 28px rgba(255,32,32,0.2);
	animation: preloader-scroll 3s linear infinite;
}
@keyframes preloader-scroll {
	0% { transform: translateX(100%); }
	100% { transform: translateX(-100%); }
}
.preloader-dots {
	display: flex;
	gap: 6px;
}
.preloader-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d92727;
	box-shadow: 0 0 8px rgba(217,39,39,0.6);
	animation: preloader-blink 1.2s ease-in-out infinite;
}
.preloader-dot:nth-child(1) { animation-delay: 0s; }
.preloader-dot:nth-child(2) { animation-delay: 0.15s; }
.preloader-dot:nth-child(3) { animation-delay: 0.3s; }
.preloader-dot:nth-child(4) { animation-delay: 0.45s; }
.preloader-dot:nth-child(5) { animation-delay: 0.6s; }
.preloader-dot:nth-child(6) { animation-delay: 0.75s; }
@keyframes preloader-blink {
	0%, 100% { opacity: 0.15; transform: scale(0.6); }
	50% { opacity: 1; transform: scale(1); }
}


/* TEST - red dot at top-left */
#bg-snake::after {
	content: '';
	position: absolute;
	top: 20px; left: 20px;
	width: 20px; height: 20px;
	background: red;
	border-radius: 50%;
	box-shadow: 0 0 20px red;
}
.snake-dot {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3.5px;
	margin-top: -3.5px;
	background: transparent;
	transition: background 0.12s, box-shadow 0.12s, transform 0.12s;
}
/* TEST - remove after verifying */
#bg-snake::after {
	content: '';
	position: absolute;
	top: 20px; left: 20px;
	width: 20px; height: 20px;
	background: red;
	border-radius: 50%;
	z-index: 999;
	box-shadow: 0 0 20px red;
}
}
.snake-dot.dim {
	background: rgba(217,39,39,0.12);
	box-shadow: 0 0 3px rgba(217,39,39,0.05);
	transform: scale(0.6);
}
.snake-100, .snake-dot.bright { background: #ff1a1a; box-shadow: 0 0 10px #ff1a1a, 0 0 25px rgba(255,26,26,0.5); transform: scale(1.4); }
.snake-95  { background: #ff1a1a; box-shadow: 0 0 9px #ff1a1a, 0 0 20px rgba(255,26,26,0.4); transform: scale(1.35); }
.snake-90  { background: #ff2020; box-shadow: 0 0 8px #ff2020, 0 0 18px rgba(255,32,32,0.35); transform: scale(1.3); }
.snake-85  { background: #ff2626; box-shadow: 0 0 7px #ff2626, 0 0 15px rgba(255,38,38,0.3); transform: scale(1.2); }
.snake-80  { background: #ff2a2a; box-shadow: 0 0 6px #ff2a2a, 0 0 12px rgba(255,42,42,0.25); transform: scale(1.1); }
.snake-75  { background: #d92727; box-shadow: 0 0 5px #d92727, 0 0 10px rgba(217,39,39,0.2); transform: scale(1); }
.snake-70  { background: #d92727; box-shadow: 0 0 4px rgba(217,39,39,0.5), 0 0 8px rgba(217,39,39,0.15); transform: scale(0.9); }
.snake-65  { background: #c92525; transform: scale(0.85); }
.snake-60  { background: #b92525; transform: scale(0.8); }
.snake-55  { background: #a92525; transform: scale(0.75); }
.snake-50  { background: #992525; transform: scale(0.7); }
.snake-45  { background: #892525; transform: scale(0.65); }
.snake-40  { background: #792525; transform: scale(0.6); }
.snake-35  { background: #692525; transform: scale(0.55); }
.snake-30  { background: #592525; transform: scale(0.5); }
.snake-25  { background: #492525; transform: scale(0.45); }
.snake-20  { background: #392525; transform: scale(0.4); }
.snake-15  { background: #292525; transform: scale(0.35); }

/* Lift content above snake background (site-header already has sticky z-index:100) */
.top-bar, #primary, .site-footer, .cta {
	position: relative;
	z-index: 2;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

/* Header */
.site-header {
	background: var(--bg-surface);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}

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

.site-logo {
	height: 55px;
	width: auto;
}

.footer-logo {
	max-width: 180px;
	height: auto;
	margin-bottom: 1rem;
}
.footer-logo--light { display: none; }
[data-theme="light"] .footer-logo { display: none; }
[data-theme="light"] .footer-logo--light { display: inline; }

.main-nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.main-nav a {
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--text);
	transition: color 0.2s;
}

.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--primary); }

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: 0.3s;
}

/* Hero */
.hero {
	background: var(--hero-bg);
	color: var(--text);
	padding: 5rem 0 4rem;
	text-align: center;
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.hero-grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 1px 1px, var(--hero-dot-color) 1px, transparent 0);
	background-size: 40px 40px;
	pointer-events: none;
}

#hero-led-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg at 50% 50%, transparent 0%, var(--hero-conic-color) 25%, transparent 50%);
	animation: hero-rotate 20s linear infinite;
	pointer-events: none;
}

@keyframes hero-rotate {
	to { transform: rotate(360deg); }
}

.hero__content { position: relative; z-index: 1; }

.hero-sub {
	font-size: 1.15rem;
	color: var(--text-muted);
	max-width: 650px;
	margin: 0 auto 2rem;
	font-style: italic;
}

.hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* LED Sign Board - Metallic Frame */
.led-sign {
	background: var(--led-frame);
	border-radius: 0;
	padding: 5px;
	margin: 0 auto 2rem;
	max-width: 780px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--led-frame-shadow);
	animation: led-frame-glow 4s ease-in-out infinite alternate;
}

@keyframes led-frame-glow {
	0% { box-shadow: var(--led-frame-shadow); }
	50% { box-shadow: var(--led-frame-shadow-50); }
	100% { box-shadow: var(--led-frame-shadow); }
}

.led-sign::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 0;
	padding: 1px;
	background: var(--led-bevel);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 3;
}

.led-sign::after {
	content: "";
	position: absolute;
	inset: 5px;
	border-radius: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		var(--scan-line-color) 2px,
		var(--scan-line-color) 4px
	);
	pointer-events: none;
	z-index: 1;
}

.led-dot-overlay {
	position: absolute;
	inset: 5px;
	border-radius: 0;
	background-image:
		radial-gradient(circle at 50% 50%, var(--led-dot-color) 0px, transparent 1px);
	background-size: 4px 4px;
	pointer-events: none;
	z-index: 1;
	animation: led-flicker 0.1s steps(2) infinite;
}

@keyframes led-flicker {
	0% { opacity: 0.3; }
	100% { opacity: 0.5; }
}

.led-sign__inner {
	background: var(--led-display);
	border-radius: 0;
	overflow: hidden;
	white-space: nowrap;
	padding: 0.9rem 1rem;
	position: relative;
	z-index: 0;
	box-shadow: var(--display-shadow);
}

.led-sign-brand {
	text-align: center;
	font-family: "Orbitron", monospace;
	font-size: 0.4rem;
	letter-spacing: 4px;
	color: var(--led-brand);
	padding: 1px 0 0;
	text-transform: uppercase;
	border-top: 1px solid var(--led-brand-border);
	line-height: 1;
	position: relative;
	z-index: 2;
}

.led-scroll {
	display: inline-block;
	font-family: "Orbitron", "Courier New", monospace;
	font-size: 1.6rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 4px;
	animation: led-scroll 20s linear infinite;
	padding: 0.2rem 0;
}

@keyframes led-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(var(--scroll-end, -50%)); }
}

.led-sign:hover .led-scroll.anim-scroll {
	animation-play-state: paused;
}

.led-size-badge {
	position: absolute;
	bottom: 30px;
	right: 12px;
	font-size: 0.65rem;
	font-family: "Orbitron", monospace;
	color: rgba(255,255,255,0.2);
	letter-spacing: 1px;
	pointer-events: none;
	z-index: 2;
	transition: color 0.3s;
}
.led-sign:hover .led-size-badge {
	color: rgba(255,255,255,0.4);
}

/* LED Animation Variants */
.led-scroll.anim-blink {
	animation: led-blink 1.2s ease-in-out infinite;
}
@keyframes led-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.08; }
}

.led-scroll.anim-pulse {
	animation: led-pulse 2s ease-in-out infinite;
}
@keyframes led-pulse {
	0%, 100% { filter: brightness(1); }
	50% { filter: brightness(2.5); }
}

.led-scroll.anim-rainbow {
	animation: led-rainbow 3s linear infinite;
}
@keyframes led-rainbow {
	0% { filter: hue-rotate(0deg); }
	100% { filter: hue-rotate(360deg); }
}

.led-scroll.anim-fade {
	animation: led-fade 3s ease-in-out infinite;
}
@keyframes led-fade {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.08; }
}

.led-scroll.anim-slide {
	animation: led-slide 6s ease-in-out infinite;
}
@keyframes led-slide {
	0% { transform: translateX(100%); opacity: 0; }
	10% { transform: translateX(0); opacity: 1; }
	75% { transform: translateX(0); opacity: 1; }
	90% { transform: translateX(-100%); opacity: 0; }
	100% { transform: translateX(-100%); opacity: 0; }
}

.led-scroll.anim-bounce {
	animation: led-bounce 2s ease-in-out infinite;
}
@keyframes led-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.led-scroll.anim-twinkle {
	animation: led-twinkle 2s ease-in-out infinite;
}
@keyframes led-twinkle {
	0%, 100% { text-shadow: 0 0 4px currentColor, 0 0 8px currentColor; }
	25% { text-shadow: 0 0 12px currentColor, 0 0 24px currentColor, 0 0 36px currentColor; }
	50% { text-shadow: 0 0 2px currentColor, 0 0 4px currentColor; }
	75% { text-shadow: 0 0 8px currentColor, 0 0 16px currentColor, 0 0 24px currentColor; }
}

/* LED Controls */
.led-controls {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: -0.5rem auto 1.5rem;
	max-width: 650px;
}
.led-control {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 140px;
}
.led-control--full {
	flex: 0 0 100%;
	min-width: 0;
}
.led-control label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-muted);
	font-weight: 600;
}
.led-label-fun {
	display: inline-block;
	font-size: 0.55rem;
	letter-spacing: 1px;
	text-transform: lowercase;
	font-weight: 400;
	color: var(--text-muted);
	background: var(--primary-dim);
	border: 1px solid rgba(217,39,39,0.15);
	border-radius: 3px;
	padding: 0 5px;
	margin-left: 6px;
	vertical-align: middle;
}
.led-control select,
.led-control input[type="text"] {
	background: var(--control-bg);
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 0.45rem 0.6rem;
	font-size: 0.8rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.led-control select {
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	padding-right: 26px;
}
.led-control input[type="text"]::placeholder {
	color: var(--text-muted);
}
.led-control select:hover,
.led-control input[type="text"]:hover {
	border-color: var(--control-border-hover);
}
.led-control select:focus,
.led-control input[type="text"]:focus {
	border-color: var(--primary);
	box-shadow: 0 0 8px var(--primary-dim);
}
.led-control select option {
	background: var(--control-option-bg);
	color: var(--text);
}

/* LED Multi-Color Glow Classes */
.cl-red {
	color: #ff2020;
	text-shadow:
		0 0 6px rgba(255, 32, 32, 0.8),
		0 0 14px rgba(255, 32, 32, 0.5),
		0 0 28px rgba(255, 32, 32, 0.3),
		0 0 50px rgba(255, 32, 32, 0.15);
}

.cl-green {
	color: #22ff44;
	text-shadow:
		0 0 6px rgba(34, 255, 68, 0.8),
		0 0 14px rgba(34, 255, 68, 0.5),
		0 0 28px rgba(34, 255, 68, 0.3),
		0 0 50px rgba(34, 255, 68, 0.15);
}

.cl-blue {
	color: #44aaff;
	text-shadow:
		0 0 6px rgba(68, 170, 255, 0.8),
		0 0 14px rgba(68, 170, 255, 0.5),
		0 0 28px rgba(68, 170, 255, 0.3),
		0 0 50px rgba(68, 170, 255, 0.15);
}

.cl-yellow {
	color: #ffdd20;
	text-shadow:
		0 0 6px rgba(255, 221, 32, 0.8),
		0 0 14px rgba(255, 221, 32, 0.5),
		0 0 28px rgba(255, 221, 32, 0.3),
		0 0 50px rgba(255, 221, 32, 0.15);
}

.cl-cyan {
	color: #22ffee;
	text-shadow:
		0 0 6px rgba(34, 255, 238, 0.8),
		0 0 14px rgba(34, 255, 238, 0.5),
		0 0 28px rgba(34, 255, 238, 0.3),
		0 0 50px rgba(34, 255, 238, 0.15);
}

.cl-magenta {
	color: #ff44cc;
	text-shadow:
		0 0 6px rgba(255, 68, 204, 0.8),
		0 0 14px rgba(255, 68, 204, 0.5),
		0 0 28px rgba(255, 68, 204, 0.3),
		0 0 50px rgba(255, 68, 204, 0.15);
}

.cl-white {
	color: #f0f0f0;
	text-shadow:
		0 0 4px rgba(240, 240, 240, 0.5),
		0 0 10px rgba(240, 240, 240, 0.2);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.2s;
	cursor: pointer;
	border: 2px solid transparent;
	text-align: center;
}

.btn--primary {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.btn--primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.btn--outline {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}

.btn--outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Sections */
.section { padding: 4rem 0; }

.section__title {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text);
	font-style: italic;
	letter-spacing: -0.5px;
}

.section:nth-child(even) { background: var(--bg-surface); }

/* Category Cards */
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.category-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.category-card__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	color: var(--primary);
}

.category-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; color: var(--text); }
.category-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-card);
	transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--primary); }

.feature-card h3 {
	color: var(--primary);
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Product Badges */
.badge {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	border-radius: 3px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.badge--window { background: rgba(217, 39, 39, 0.15); color: var(--primary); }
.badge--outdoor { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.badge--lightboard { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.badge--pitch { background: rgba(234, 179, 8, 0.15); color: #fbbf24; }

.product-card__badges {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
}

.product-card__body {
	padding: 1rem;
}

.product-card__body h3 {
	font-size: 1rem;
	color: var(--text);
	margin-bottom: 0.3rem;
}

.product-card__price {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}

.product-card__price span { color: var(--primary); font-weight: 600; }

.btn--sm { padding: 0.4rem 1rem; font-size: 0.8rem; }

/* Product Single */
.product-single { padding: 2rem 0; }

.product-single__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.product-main-image {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg-card);
}

.product-main-image img {
	width: 100%;
	height: auto;
	display: block;
}

.product-main-image--placeholder {
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-weight: 600;
}

.product-badges {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.product-title {
	font-size: 1.8rem;
	color: var(--text);
	margin-bottom: 1rem;
}

.product-price {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--border);
}

.product-price span {
	color: var(--primary);
	font-weight: 700;
	font-size: 1.4rem;
}

.product-description { margin-bottom: 1.25rem; }
.product-description p { color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.7; }

.product-features {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	margin-bottom: 1.25rem;
}

.product-features h3 { color: var(--text); font-size: 0.95rem; margin-bottom: 0.75rem; }
.product-features p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.25rem; line-height: 1.6; }

.product-meta {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border);
}

.product-meta__row {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 0.4rem;
}

.product-meta__row strong { color: #ccc; }

.product-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.btn--whatsapp {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn--whatsapp:hover { background: #1da851; border-color: #1da851; }

/* Inquiry Form */
.inquiry-form-wrapper {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-top: 1rem;
}

.inquiry-form-wrapper h3 {
	color: var(--text);
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
}

.inquiry-form-wrapper select {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text);
	font-size: 0.9rem;
	outline: none;
	transition: border-color 0.2s;
	appearance: auto;
}

.inquiry-form-wrapper select:focus { border-color: var(--primary); }

.inquiry-success {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #34d399;
	padding: 1rem;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.inquiry-error {
	background: rgba(217, 39, 39, 0.1);
	border: 1px solid rgba(217, 39, 39, 0.3);
	color: var(--primary);
	padding: 1rem;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.product-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.product-thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bg-elevated);
}

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

.product-thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 1.1rem;
}

.product-info {
	padding: 1.25rem;
}

.product-info h3 {
	font-size: 1.05rem;
	margin-bottom: 1rem;
	color: var(--text);
}

.product-info .btn { width: 100%; }



/* Page Header */
.page-header {
	padding: 3rem 0 2rem;
	text-align: center;
}

.page-header h1 {
	font-size: 2rem;
	color: var(--text);
	font-style: italic;
	letter-spacing: -0.5px;
}

.page-header p { color: var(--text-muted); }

/* CTA Section */
.cta {
	background: var(--bg-surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	text-align: center;
}
.cta__content {
	padding: 3rem 1rem;
}

.cta h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--text);
}

.cta p {
	font-size: 1.15rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
}

/* Footer */
.site-footer {
	background: var(--bg-surface);
	border-top: 1px solid var(--border);
	padding: 3rem 0 0;
	color: var(--text-muted);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	padding-bottom: 2rem;
}

.footer-col h3 {
	color: var(--text);
	font-size: 1.05rem;
	margin-bottom: 1rem;
}

.footer-col p {
	font-size: 0.9rem;
	line-height: 1.7;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul a {
	font-size: 0.9rem;
	color: var(--text-muted);
	transition: color 0.2s;
}

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

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: 1.5rem 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.85rem;
	color: var(--text-muted);
	opacity: 0.6;
}

/* Pagination */
.pagination { text-align: center; margin: 3rem 0; }

.pagination .page-numbers {
	display: inline-block;
	padding: 0.5rem 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin: 0 2px;
	background: var(--bg-card);
	color: var(--text);
}

.pagination .current {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* No Results */
.no-results { text-align: center; padding: 4rem 0; }
.no-results h2 { margin-bottom: 1rem; color: var(--text-muted); }
.no-results p { color: var(--text-muted); margin-bottom: 2rem; }

/* Breadcrumb */
.breadcrumb {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* Entry Content */
.entry-content { padding-bottom: 3rem; }
.entry-content p { margin-bottom: 1rem; color: var(--text-muted); }
.entry-content h2, .entry-content h3 { color: var(--text); margin: 1.5rem 0 1rem; }

/* Top Bar */
.top-bar {
	background: var(--bg-elevated);
	border-bottom: 1px solid var(--border);
	padding: 0.5rem 0;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.top-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.top-bar__left {
	display: flex;
	align-items: center;
}

.top-bar__right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.top-bar__right span::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 0.4rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
}
.top-bar__shipping::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92727' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.top-bar__address::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92727' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.top-bar__phone::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92727' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.top-bar__left { gap: 1.25rem; }
.top-bar__canadian { color: var(--text-muted); }
.top-bar__canadian .maple-icon::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 0.4rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109.35 122.88' fill='%23d92727'%3E%3Cpath d='M55.15,85.62c1.73,11.9-0.93,21.51-8.05,31.37c-1.6,2.21-3.29,3.99-5.25,5.89c-0.01-2.63-1.69-3.76-4.22-4.34C48.04,108.25,52.33,96.9,53.7,85.62h-2.36c-7.79-0.77-16.33,12.35-26.35,15.92c4.77-9.16-0.56-10.4-12.66-6.33c9.05-10.8,9.93-14.79,0-13.35c5.13-3.88,9.9-6.11,14.38-7.02c-9.33-2.97-17.63-7.97-24.64-15.57c13.16-0.48,9.93-9.37-2.05-22.76c15.93,8.01,24.33,9.02,21.73-0.17c4.71,3.18,10.75,9.27,17.11,16.09c-2.45-12.5-4.29-24.34-3.42-33.2C41.63,28.56,48.3,19.12,54.84,0c5.51,17.44,11.43,27.12,18.92,20.08c0.97,7.76-0.07,16.06-2.74,24.81l-0.17,6.67c6.21-6.7,12.31-13.03,17.22-15.44c-3.05,10.09,7.63,6.57,21.28,0.38c-12.92,14.44-13.94,22.06-2.57,22.59c-4.73,7.36-13.07,11.84-22.76,15.23c4.22,1.21,8.44,3.49,12.66,7.02c-8.73-0.72-6.9,5,0.25,14.2c-10.92-3.2-16.49-2.33-13.04,6C70.98,90.74,61.77,85.51,56.13,85.62H55.15L55.15,85.62z'/%3E%3C/svg%3E");
}

.theme-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	gap: 0.4rem;
	margin-left: 1rem;
}
.theme-toggle-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	font-weight: 500;
}
.theme-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.theme-toggle-slider {
	position: relative;
	width: 44px;
	height: 22px;
	background: var(--border);
	border-radius: 12px;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	padding: 0 4px;
}
.theme-toggle input:checked + .theme-toggle-slider { background: var(--primary); }
.theme-toggle-slider::after {
	content: "";
	position: absolute;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--text);
	transition: transform 0.3s;
}
.theme-toggle input:checked + .theme-toggle-slider::after {
	transform: translateX(22px);
}
.theme-icon { display: flex; align-items: center; justify-content: center; z-index: 1; }
.theme-icon svg { width: 12px; height: 12px; display: block; }
.theme-icon--dark { margin-right: auto; color: var(--text-muted); }
.theme-icon--light { margin-left: auto; color: var(--primary); }

/* Icons Row */
.icons-row__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.icon-item { padding: 1.5rem; }

.icon-item__icon {
	font-size: 2.5rem;
	color: var(--primary);
	display: block;
	margin-bottom: 0.75rem;
}

.icon-item h4 {
	color: var(--text);
	margin-bottom: 0.5rem;
	font-size: 1.05rem;
}

.icon-item p { color: var(--text-muted); font-size: 0.9rem; }

/* About Page */
.about-content { max-width: 800px; margin: 0 auto 3rem; }

.about-section { margin-bottom: 3rem; }

.about-section h2 {
	color: var(--text);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary);
}

.about-section p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.about-section ul {
	list-style: none;
	margin-bottom: 1rem;
}

.about-section ul li {
	color: var(--text-muted);
	padding: 0.4rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.about-section ul li::before {
	content: "›";
	color: var(--primary);
	font-weight: bold;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.about-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: border-color 0.2s;
}

.about-card:hover { border-color: var(--primary); }

.about-card h3 { color: var(--text); margin-bottom: 0.75rem; }
.about-card p { color: var(--text-muted); font-size: 0.9rem; }

/* FAQ Page */
.faq-list {
	max-width: 800px;
	margin: 0 auto 3rem;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: var(--bg-card);
	border: none;
	padding: 1.25rem;
	color: var(--text);
	font-size: 1rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-elevated); }

.faq-question::after {
	content: "+";
	font-size: 1.3rem;
	color: var(--primary);
	transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
	content: "−";
}

.faq-answer {
	display: none;
	padding: 0 1.25rem 1.25rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.faq-item.active .faq-answer { display: block; }

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer ul { list-style: none; }
.faq-answer ul li { padding: 0.25rem 0 0.25rem 1.25rem; position: relative; }
.faq-answer ul li::before {
	content: "•";
	color: var(--primary);
	position: absolute;
	left: 0;
}

/* Installation Guide */
.guide-content { max-width: 800px; margin: 0 auto 3rem; }

.guide-step {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: border-color 0.2s;
}

.guide-step:hover { border-color: var(--primary); }

.guide-step__number {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
}

.guide-step__body h2 {
	color: var(--text);
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

.guide-step__body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.guide-support {
	text-align: center;
	padding: 3rem;
	border-top: 1px solid var(--border);
	margin-bottom: 3rem;
}

.guide-support h2 { color: var(--text); margin-bottom: 1rem; }
.guide-support p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Contact Form */
.contact-form { margin-top: 2rem; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text);
	font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text);
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--primary);
}

/* Dropdown Menu */
.main-nav .menu-item-has-children {
	position: relative;
}

.main-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.5rem 0;
	min-width: 200px;
	z-index: 200;
	box-shadow: var(--shadow-lg);
}

.main-nav .sub-menu .sub-menu {
	top: -0.5rem;
	left: 100%;
}

.main-nav .menu-item-has-children:hover > .sub-menu {
	display: block;
}

.main-nav .sub-menu li {
	padding: 0;
}

.main-nav .sub-menu a {
	display: block;
	padding: 0.5rem 1.25rem;
	font-size: 0.88rem;
	color: var(--text-muted);
	transition: background 0.2s, color 0.2s;
}

.main-nav .sub-menu a:hover {
	background: var(--bg-card);
	color: var(--primary);
}

.main-nav .menu-item-has-children > a::after {
	content: "▾";
	font-size: 0.7rem;
	margin-left: 0.4rem;
	display: inline-block;
	vertical-align: middle;
}

.main-nav .sub-menu .menu-item-has-children > a::after {
	content: "▸";
	float: right;
	margin-top: 0.15rem;
}

/* Mega menu style (multi-column) */
.main-nav .menu-item-has-children.mega-menu > .sub-menu {
	display: none;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
	padding: 1rem;
	min-width: 600px;
}

.main-nav .menu-item-has-children.mega-menu:hover > .sub-menu {
	display: grid;
}

.main-nav .menu-item-has-children.mega-menu > .sub-menu > li {
	padding: 0 0.75rem;
	border-right: 1px solid var(--border);
}

.main-nav .menu-item-has-children.mega-menu > .sub-menu > li:last-child {
	border-right: none;
}

.main-nav .menu-item-has-children.mega-menu > .sub-menu > li > a {
	font-weight: 600;
	color: var(--text);
	padding: 0.5rem 0.75rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.main-nav .menu-item-has-children.mega-menu > .sub-menu .sub-menu {
	position: static;
	display: block;
	border: none;
	box-shadow: none;
	padding: 0;
	background: none;
	min-width: auto;
}

.main-nav .menu-item-has-children.mega-menu > .sub-menu .sub-menu a {
	padding: 0.35rem 0.75rem;
	font-size: 0.82rem;
}

/* Scroll Reveal Animations */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}
.reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}
.reveal-scale {
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
	opacity: 1;
	transform: scale(1);
}

/* Stagger delays for grid items */
.reveal-stagger-1 { transition-delay: 0s; }
.reveal-stagger-2 { transition-delay: 0.1s; }
.reveal-stagger-3 { transition-delay: 0.2s; }
.reveal-stagger-4 { transition-delay: 0.3s; }
.reveal-stagger-5 { transition-delay: 0.4s; }
.reveal-stagger-6 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
	.hero h1 { font-size: 2rem; }
	.hero p { font-size: 1rem; }
	.led-sign { max-width: 100%; width: 100%; border-radius: 0; padding: 3px; }
	.led-sign::after { inset: 3px; }
	.led-dot-overlay { inset: 3px; }
	.led-scroll { font-size: 1rem; letter-spacing: 2px; }
	.led-controls { flex-direction: column; gap: 0.5rem; max-width: 100%; margin-left: auto; margin-right: auto; }
	.led-control { min-width: 0; }
	.led-control--full { order: -1; }
	.led-control select,
	.led-control input[type="text"] { padding: 0.6rem 0.7rem; font-size: 0.9rem; }
	.led-sign-brand { font-size: 0.3rem; letter-spacing: 2px; padding: 1px 0 0; }
	.led-size-badge { font-size: 0.5rem; bottom: 22px; right: 8px; }
	.section__title { font-size: 1.6rem; }
	.product-single__grid { grid-template-columns: 1fr; }
	.menu-toggle { display: flex; }
	.main-nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--bg-surface);
		border-bottom: 1px solid var(--border);
		padding: 1rem;
		z-index: 200;
	}
	.main-nav.active { display: block; }
	.main-nav ul { flex-direction: column; gap: 0; }
	.main-nav li { width: 100%; }
	.main-nav a {
		display: block;
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--border);
	}
	.main-nav .sub-menu {
		display: none;
		position: static;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background: var(--bg-card);
		padding: 0;
		min-width: auto;
		margin-top: 0;
	}
	.main-nav .sub-menu.open {
		display: block;
	}
	.main-nav .menu-item-has-children > a::after {
		float: right;
		margin-top: 0.2rem;
	}
	.main-nav .sub-menu a {
		padding: 0.6rem 1rem;
		border-bottom: 1px solid var(--border);
		padding-left: 1.5rem;
	}
	.main-nav .sub-menu .sub-menu a {
		padding-left: 2.5rem;
	}
	.main-nav .menu-item-has-children.mega-menu > .sub-menu {
		grid-template-columns: 1fr;
		min-width: auto;
	}
	.main-nav .menu-item-has-children.mega-menu > .sub-menu > li {
		border-right: none;
	}
	.top-bar { padding: 0.3rem 0; }
	.top-bar__inner { flex-direction: column; gap: 0.2rem; align-items: center; }
	.top-bar__left { justify-content: center; }
	.top-bar__right { justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
	.top-bar__left span, .top-bar__right span { font-size: 0.75rem; white-space: nowrap; }
	.top-bar__shipping, .top-bar__address { display: none; }
}

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
.screen-reader-text:focus {
	position: fixed;
	top: 0; left: 0;
	width: auto; height: auto;
	padding: 1rem 2rem;
	background: var(--bg);
	color: var(--text);
	z-index: 100000;
	clip: auto;
	font-size: 1rem;
	text-decoration: underline;
}

.breadcrumbs {
	padding: 1rem 0;
	font-size: 0.85rem;
	color: var(--text-muted);
}
.breadcrumbs a {
	color: var(--primary);
	text-decoration: none;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumb-current {
	color: var(--text);
}

.related-products {
	margin-top: 4rem;
}

.not-found-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.contact-page-wrap {
	position: relative;
	min-height: 60vh;
}
#contact-led-bg {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}
.contact-page-wrap .container {
	position: relative;
	z-index: 1;
}
.contact-content {
	max-width: 700px;
	margin: 0 auto 3rem;
	background: var(--overlay-bg);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border);
}
