/*
Theme Name: LumiOS
Theme URI: https://lumiosled.com
Author: LumiOS LED
Author URI: https://lumiosled.com
Description: LumiOS — Professional stage lighting & LED products. Black and gold cinematic WordPress theme with full WooCommerce support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: lumios
*/

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --bg:            #000000;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --bg-hover:      rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(255,255,255,0.18);
  --border-h:      rgba(255,255,255,0.18);

  --txt:           #ffffff;
  --text-primary:  #ffffff;
  --text-body:     rgba(255,255,255,0.62);
  --body:          rgba(255,255,255,0.62);
  --text-muted:    rgba(255,255,255,0.38);
  --muted:         rgba(255,255,255,0.38);
  --text-label:    rgba(255,255,255,0.44);
  --label:         rgba(255,255,255,0.44);

  --cyan:          #D4A800;
  --green:         #4ade80;
  --orange:        #fb923c;
  --purple:        #a78bfa;
  --gold:          #D4A800;

  --font:          'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --radius:        10px;
  --radius-sm:     6px;
  --r:             10px;

  --grad-hero: linear-gradient(to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.88) 36%,
    rgba(0,0,0,0.22) 50%,
    transparent 60%,
    rgba(0,0,0,0.28) 100%);

  --grad: linear-gradient(to top,rgba(0,0,0,.97) 0%,rgba(0,0,0,.88) 36%,rgba(0,0,0,.22) 50%,transparent 60%,rgba(0,0,0,.28) 100%);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY SCALE ──────────────────────────────────────────────────────── */
.lumi-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-label);
}
.lumi-eyebrow.cyan  { color: var(--cyan); }
.lumi-eyebrow.green { color: var(--green); }
.lumi-eyebrow.orange { color: var(--orange); }

.lumi-h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text-primary);
}
.lumi-h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.lumi-h3 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lumi-h4 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.015em;
}
.lumi-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.65;
}
.lumi-body-sm {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── LAYOUT HELPERS ────────────────────────────────────────────────────────── */
.lumi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.lumi-container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.lumi-section { padding: 100px 0; }
.lumi-section-sm { padding: 60px 0; }

.inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.divider { height: 1px; background: var(--border); }
.bg-alt { background: rgba(255,255,255,.015); }

/* ─── HEADER / NAV ──────────────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
header.scrolled { background: rgba(0,0,0,0.96); }

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-text { font-size: 16px; font-weight: 300; letter-spacing: -0.01em; display: none; }
.logo-text b { color: var(--gold); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0 16px;
  height: 72px;
  line-height: 72px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .active a,
.nav-links li.current-menu-item > a { color: #fff; }

/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.nav-links .dropdown:hover ul { display: block; }
.nav-links .dropdown ul a {
  height: auto;
  line-height: 1;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.nav-links .dropdown ul a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* WP nav menu sub-menu support */
.nav-links li { position: relative; }
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.nav-links li:hover .sub-menu { display: block; }
.nav-links .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  height: auto;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}
.nav-links .sub-menu li a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger button — hidden on desktop, shown on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo { margin-bottom: 20px; }
.footer-brand-logo img { height: 68px; width: auto; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-note { font-size: 12px; color: var(--muted); }

/* Simple footer variant */
footer.simple { padding: 40px 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
footer img { height: 60px; width: auto; opacity: 0.75; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.lumi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
}
.lumi-btn-primary { background: var(--cyan); color: #000; }
.lumi-btn-primary:hover { background: #e0b800; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,168,0,0.28); }
.lumi-btn-ghost { background: transparent; color: #fff; border: 1px solid var(--border-hover); }
.lumi-btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
.lumi-btn-sm { padding: 9px 20px; font-size: 13px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  font-family: var(--font);
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: #e0b800; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,168,0,0.35); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.35); }

/* ─── CARDS ─────────────────────────────────────────────────────────────────── */
.lumi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.lumi-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* ─── SPEC BOX ──────────────────────────────────────────────────────────────── */
.lumi-spec-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
  min-width: 110px;
}
.lumi-spec-box .value {
  font-size: 36px;
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.lumi-spec-box .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
}

/* ─── CALLOUT ROW ───────────────────────────────────────────────────────────── */
.lumi-callout {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lumi-callout:last-child { border-bottom: none; }
.lumi-callout .callout-label { font-size: 14px; font-weight: 500; color: #fff; letter-spacing: -0.01em; }
.lumi-callout .callout-detail { font-size: 13px; color: var(--text-muted); }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.lumi-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.lumi-hero-bg { position: absolute; inset: 0; background: #0a0a0a; }
.lumi-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.lumi-hero-grad { position: absolute; inset: 0; background: var(--grad-hero); }
.lumi-hero-content { position: relative; z-index: 10; }

/* Homepage hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding-bottom: 120px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: #000; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; filter: brightness(0.62) saturate(0.75); transform: scale(1.03); }
.hero-tint { position: absolute; inset: 0; background: rgba(212,168,0,.06); mix-blend-mode: screen; pointer-events: none; }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1.0) 0%, rgba(0,0,0,0.92) 22%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.18) 58%, rgba(0,0,0,0.35) 100%); }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(0,0,0,0.72) 100%); pointer-events: none; }
.hero-light { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 900px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(212,168,0,.07) 0%, transparent 65%); pointer-events: none; }
.hero-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--label); margin-bottom: 20px; }
.eyebrow .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: 10px; vertical-align: middle; }
.hero h1 { font-size: clamp(52px,8vw,96px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,.55); max-width: 520px; line-height: 1.6; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; margin-top: 56px; background: rgba(0,0,0,.45); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 0; width: fit-content; overflow: hidden; }
.stat-item { padding: 22px 36px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 32px; font-weight: 200; letter-spacing: -.02em; color: #fff; margin-bottom: 4px; }
.stat-value span { color: var(--gold); }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--label); }

/* ─── PRODUCT GRID ──────────────────────────────────────────────────────────── */
.lumi-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 18px; }
.prod-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all .25s; position: relative; }
.prod-card:hover { background: var(--bg-hover); border-color: rgba(255,255,255,.2); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.prod-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.badge-new { background: rgba(212,168,0,.15); color: var(--gold); border: 1px solid rgba(212,168,0,.25); }
.badge-pro { background: rgba(74,222,128,.12); color: var(--green); border: 1px solid rgba(74,222,128,.2); }
.prod-img { aspect-ratio: 4/3; background: rgba(255,255,255,.025); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-body { padding: 18px 20px 20px; }
.prod-series { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.sc { color: var(--gold); } .sg { color: var(--green); } .so { color: var(--orange); } .sp { color: var(--purple); }
.prod-name { font-size: 16px; font-weight: 300; letter-spacing: -.01em; margin-bottom: 6px; }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.prod-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.prod-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.prod-tag { font-size: 10px; padding: 3px 8px; border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.38); }
.prod-arrow { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; transition: all .2s; }
.prod-card:hover .prod-arrow { background: var(--gold); border-color: var(--gold); color: #000; }
.prod-chips { display: flex; gap: 4px; }
.chip { font-size: 10px; padding: 3px 8px; border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06); color: var(--muted); }
.arrow-btn { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; transition: all .2s; }
.prod-card:hover .arrow-btn { background: var(--gold); border-color: var(--gold); color: #000; }
.prod-price { font-size: 14px; color: var(--gold); font-weight: 400; }
.count-line { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.count-line b { color: #fff; font-weight: 400; }

/* Product photo helpers */
.prod-photo { width: 100%; height: 100%; object-fit: contain; display: block; background: #0a0a0a; padding: 16px; }
.prod-photo-cover { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.75) saturate(0.85); }
.mock-placeholder { width: 80px; height: 50px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 4px; }

/* ─── CATEGORY CARDS ────────────────────────────────────────────────────────── */
.lumi-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lumi-cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid var(--border); }
.lumi-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, opacity 0.3s; opacity: 0.55; }
.lumi-cat-card:hover img { transform: scale(1.06); opacity: 0.7; }
.lumi-cat-card .cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%); }
.lumi-cat-card .cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.lumi-cat-card .cat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.lumi-cat-card .cat-title { font-size: 22px; font-weight: 200; letter-spacing: -0.02em; color: #fff; }
.lumi-cat-card .cat-arrow { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.2s; }
.lumi-cat-card:hover .cat-arrow { background: var(--cyan); color: #000; border-color: var(--cyan); }

/* Homepage cat grid */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cat-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid var(--border); transition: transform .3s,box-shadow .3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.cat-bg { position: absolute; inset: 0; }
.cat-bg.v1 { background: linear-gradient(135deg,#0a1a2e 0%,#060d18 100%); }
.cat-bg.v2 { background: linear-gradient(135deg,#0a0e1a 0%,#050810 100%); }
.cat-bg.v3 { background: linear-gradient(135deg,#1a0a0e 0%,#0e0508 100%); }
.cat-bg::after { content: ''; position: absolute; inset: 0; opacity: .35; }
.cat-bg.v1::after { background: radial-gradient(ellipse at 60% 40%,rgba(212,168,0,.2) 0%,transparent 60%); }
.cat-bg.v2::after { background: radial-gradient(ellipse at 60% 40%,rgba(74,222,128,.15) 0%,transparent 60%); }
.cat-bg.v3::after { background: radial-gradient(ellipse at 60% 40%,rgba(251,146,60,.15) 0%,transparent 60%); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.92) 0%,transparent 55%); }
.cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.cat-label { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 6px; }
.cat-label.c { color: var(--gold); } .cat-label.g { color: var(--green); } .cat-label.o { color: var(--orange); }
.cat-title { font-size: 22px; font-weight: 200; letter-spacing: -.02em; margin-bottom: 6px; }
.cat-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
.cat-arrow { position: absolute; top: 18px; right: 18px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .2s; }
.cat-card:hover .cat-arrow { background: var(--gold); border-color: var(--gold); color: #000; }

/* ─── FEAT GRID ─────────────────────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.feat-item { background: rgba(255,255,255,.03); padding: 40px 32px; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background .3s; display: block; text-decoration: none; color: inherit; }
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(255,255,255,.06); }
.feat-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.feat-item.c1::before { background: var(--gold); }
.feat-item.c2::before { background: var(--green); }
.feat-item.c3::before { background: var(--orange); }
.feat-icon { width: 40px; height: 40px; border-radius: 8px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feat-icon.i1 { background: rgba(212,168,0,.1); }
.feat-icon.i2 { background: rgba(74,222,128,.1); }
.feat-icon.i3 { background: rgba(251,146,60,.1); }
.feat-item h3 { font-size: 20px; font-weight: 300; letter-spacing: -.015em; margin-bottom: 12px; }
.feat-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.feat-arrow { margin-top: 20px; font-size: 18px; color: var(--gold); opacity: 0; transition: opacity .2s, transform .2s; transform: translateX(-4px); }
.feat-item:hover .feat-arrow { opacity: 1; transform: translateX(0); }

/* ─── SECTION HEADERS ───────────────────────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--label); margin-bottom: 12px; }
.section-title { font-size: clamp(36px,5vw,60px); font-weight: 200; letter-spacing: -.025em; line-height: 1.05; }
.section-sub { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.5); max-width: 480px; line-height: 1.7; }

/* ─── SPEC BAND ─────────────────────────────────────────────────────────────── */
.spec-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; background: rgba(255,255,255,.02); }
.spec-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.spec-box { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 20px; text-align: center; min-width: 120px; flex: 1; }
.spec-val { font-size: 38px; font-weight: 200; letter-spacing: -.02em; line-height: 1; margin-bottom: 6px; }
.spec-val.c { color: var(--gold); } .spec-val.g { color: var(--green); } .spec-val.o { color: var(--orange); }
.spec-lbl { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.38); }

/* ─── ABOUT SPLIT ───────────────────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { aspect-ratio: 1; border-radius: var(--r); background: rgba(255,255,255,.03); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 50%,rgba(212,168,0,.07) 0%,transparent 60%); }
.about-lines { display: flex; flex-direction: column; gap: 18px; width: 100%; padding: 40px; }
.aline { height: 1px; background: linear-gradient(to right,rgba(212,168,0,.4),transparent); }
.aline:nth-child(2) { background: linear-gradient(to right,rgba(74,222,128,.3),transparent); margin-left: 30px; }
.aline:nth-child(3) { background: linear-gradient(to right,rgba(251,146,60,.3),transparent); margin-left: 60px; }
.aline:nth-child(4) { background: linear-gradient(to right,rgba(212,168,0,.2),transparent); margin-left: 20px; }
.about-copy .eyebrow-label { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--label); margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(36px,4.5vw,52px); font-weight: 200; letter-spacing: -.025em; line-height: 1.08; margin-bottom: 24px; }
.about-copy p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 18px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag { padding: 6px 14px; border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid var(--border); font-size: 12px; color: rgba(255,255,255,.55); }

/* ─── VIDEO CARDS ───────────────────────────────────────────────────────────── */
.video-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent; }
.video-row::-webkit-scrollbar { height: 4px; }
.video-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.video-card { flex: 0 0 300px; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; cursor: pointer; border: 1px solid var(--border); position: relative; transition: border-color .25s,transform .25s; }
.video-card:hover { border-color: rgba(255,255,255,.22); transform: translateY(-3px); }
.video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card .vc-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.12) 100%); z-index: 1; }
.video-card .vc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; }
.video-card .vc-label { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.video-card .vc-title { font-size: 16px; font-weight: 300; letter-spacing: -.01em; margin-bottom: 4px; }
.video-card .vc-sub { font-size: 12px; color: rgba(255,255,255,.45); }
.video-card .vc-play { position: absolute; top: 16px; right: 16px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; transition: background .2s,border-color .2s; }
.video-card:hover .vc-play { background: var(--gold); border-color: var(--gold); color: #000; }

/* ─── FACTORY GRID ──────────────────────────────────────────────────────────── */
.factory-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.factory-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid var(--border); transition: transform .3s,border-color .3s; }
.factory-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.2); }
.factory-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55) saturate(0.8); transition: filter .4s,transform .5s; }
.factory-card:hover img { filter: brightness(0.7) saturate(0.9); transform: scale(1.03); }
.factory-card .fc-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.9) 0%,transparent 55%); }
.factory-card .fc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 24px; }
.factory-card .fc-label { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.factory-card .fc-title { font-size: 17px; font-weight: 200; letter-spacing: -.01em; }

/* ─── SHOWCASE BAND ─────────────────────────────────────────────────────────── */
.showcase-band { position: relative; height: 72vh; min-height: 520px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.showcase-band .sb-img { position: absolute; inset: -60px; background: #000; }
.showcase-band .sb-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; filter: brightness(0.5) saturate(0.85) contrast(1.1); transform: scale(1.08); transition: transform 8s ease; }
.showcase-band:hover .sb-img img { transform: scale(1.0); }
.showcase-band .sb-fade-top { position: absolute; top: 0; left: 0; right: 0; height: 180px; background: linear-gradient(to bottom,#000 0%,transparent 100%); z-index: 2; pointer-events: none; }
.showcase-band .sb-fade-bot { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; background: linear-gradient(to top,#000 0%,transparent 100%); z-index: 2; pointer-events: none; }
.showcase-band .sb-tint { position: absolute; inset: 0; z-index: 1; background: rgba(180,60,0,.08); mix-blend-mode: screen; }
.showcase-band .sb-vignette { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 50% 50%,transparent 40%,rgba(0,0,0,.75) 100%); }
.showcase-band .sb-content { position: relative; z-index: 5; text-align: center; padding: 0 32px; max-width: 900px; }
.showcase-band .sb-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.showcase-band .sb-eyebrow::before, .showcase-band .sb-eyebrow::after { content: ''; display: block; height: 1px; width: 48px; background: rgba(212,168,0,.45); }
.showcase-band .sb-headline { font-size: clamp(36px,6vw,72px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; color: #fff; margin-bottom: 20px; }
.showcase-band .sb-headline em { font-style: normal; color: var(--gold); }
.showcase-band .sb-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.5); max-width: 520px; margin: 0 auto; line-height: 1.65; }

/* ─── DUAL PHOTO SPLIT ──────────────────────────────────────────────────────── */
.dual-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; height: 56vh; min-height: 400px; overflow: hidden; }
/* Support both <div> and <a> as split-panel — <a> needs display reset */
.split-panel { position: relative; overflow: hidden; cursor: pointer; transition: flex .4s ease; display: block; text-decoration: none; color: inherit; }
.split-panel img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.5) saturate(0.8); transition: filter .4s, transform .6s ease; transform: scale(1.04); }
.split-panel:hover img { filter: brightness(0.7) saturate(1.0); transform: scale(1.0); }
.split-panel .sp-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.1) 50%,transparent 100%); }
.split-panel .sp-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; }
.split-panel .sp-tag { font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.split-panel .sp-title { font-size: clamp(20px,2.5vw,30px); font-weight: 200; letter-spacing: -.02em; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.split-panel .sp-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; max-width: 340px; }
.split-panel .sp-arrow { position: absolute; top: 24px; right: 24px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; transition: background .25s,border-color .25s,transform .25s; }
.split-panel:hover .sp-arrow { background: var(--gold); border-color: var(--gold); color: #000; transform: rotate(45deg); }

/* ─── PAGE HERO (shop/archive) ──────────────────────────────────────────────── */
.page-hero { padding: 120px 0 60px; background: linear-gradient(to bottom,rgba(212,168,0,.04) 0%,transparent 100%); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.page-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-title { font-size: clamp(42px,6vw,72px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; margin-bottom: 16px; }
.page-sub { font-size: 15px; color: rgba(255,255,255,.45); max-width: 480px; line-height: 1.65; }

/* ─── SHOP TOOLBAR ──────────────────────────────────────────────────────────── */
.shop-toolbar { padding: 32px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-bottom: 1px solid var(--border); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 100px; font-size: 13px; border: 1px solid var(--border); color: rgba(255,255,255,.55); cursor: pointer; transition: all .2s; background: transparent; }
.pill:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); color: #fff; }
.pill.active { border-color: var(--gold); color: var(--gold); background: rgba(212,168,0,.06); }
.sort-control { display: flex; align-items: center; gap: 12px; }
.sort-label { font-size: 13px; color: var(--muted); }
.sort-select { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: #fff; font-family: var(--font); font-size: 13px; padding: 7px 14px; border-radius: 6px; cursor: pointer; outline: none; }
.sort-select:focus { border-color: rgba(255,255,255,.25); }
.shop-grid-wrap { padding: 48px 0 80px; }

/* ─── HERO VIDEO BANNER ─────────────────────────────────────────────────────── */
.shop-video-banner { position: relative; width: 100%; height: 50vh; min-height: 320px; overflow: hidden; background: #000; }
.shop-video-banner video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-video-banner .svb-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.5) 100%); }
.shop-video-banner .svb-body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.shop-video-banner .svb-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.shop-video-banner .svb-title { font-size: clamp(28px,5vw,52px); font-weight: 200; letter-spacing: -.025em; line-height: 1.05; color: #fff; }

/* ─── PAGINATION ─────────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 40px 0 80px; }
.page-btn { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }
.page-btn.next { width: auto; padding: 0 16px; gap: 6px; }

/* WooCommerce pagination */
.woocommerce-pagination ul { display: flex; list-style: none; align-items: center; justify-content: center; gap: 8px; padding: 40px 0 80px; }
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,.05); border: 1px solid var(--border); font-size: 13px; transition: all .2s; }
.woocommerce-pagination ul li a:hover, .woocommerce-pagination ul li span.current { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }

/* ─── CATEGORY PAGE HERO ─────────────────────────────────────────────────────── */
.cat-hero { position: relative; padding: 140px 0 90px; overflow: hidden; min-height: 72vh; display: flex; align-items: flex-end; }
.cat-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; filter: brightness(0.45) saturate(0.8); }
.cat-hero-bg { position: absolute; inset: 0; }
.cat-hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right,rgba(0,0,0,.92) 0%,rgba(0,0,0,.55) 50%,rgba(0,0,0,.25) 100%); }
.cat-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,0,0,.35) 0%,transparent 40%,rgba(0,0,0,.98) 100%); }
.cat-hero-tint { position: absolute; inset: 0; background: rgba(212,168,0,.06); mix-blend-mode: screen; pointer-events: none; }
.cat-hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%,transparent 30%,rgba(0,0,0,.6) 100%); pointer-events: none; }
.cat-hero-content { position: relative; z-index: 2; width: 100%; }
.breadcrumb-bar { padding: 32px 0 0; }
.cat-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.cat-hero h1 { font-size: clamp(48px,7vw,80px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; margin-bottom: 20px; }
.cat-hero-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.6); max-width: 600px; line-height: 1.75; margin-top: 20px; }
.cat-hero-desc p { margin: 0; }

/* ─── SUBCATEGORY TABS ───────────────────────────────────────────────────────── */
.subcat-bar { border-bottom: 1px solid var(--border); padding: 0; }
.subcat-tabs { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.subcat-tabs::-webkit-scrollbar { display: none; }
.tab { display: flex; align-items: center; gap: 8px; padding: 0 22px; height: 52px; font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .2s; }
.tab:hover { color: #fff; }
.tab.active { color: #fff; border-bottom-color: var(--green); }
.tab .tab-count { font-size: 10px; background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 100px; color: rgba(255,255,255,.4); }

/* ─── SUBCATEGORY CARDS ──────────────────────────────────────────────────────── */
.feat-section { padding: 60px 0 40px; }
.feat-title { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--label); margin-bottom: 28px; }
.subcat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.subcat-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; cursor: pointer; border: 1px solid var(--border); transition: transform .3s,border-color .3s; display: block; text-decoration: none; color: inherit; }
.subcat-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.2); }
.subcat-bg { position: absolute; inset: 0; }
.sct1 { background: linear-gradient(135deg,#0a1220 0%,#040810 100%); }
.sct2 { background: linear-gradient(135deg,#0c120a 0%,#060a04 100%); }
.sct3 { background: linear-gradient(135deg,#1a0f06 0%,#0d0804 100%); }
.sct4 { background: linear-gradient(135deg,#0d0a1a 0%,#060410 100%); }
.sct5 { background: linear-gradient(135deg,#0a1614 0%,#040c0a 100%); }
.sct6 { background: linear-gradient(135deg,#16100a 0%,#0c0804 100%); }
.subcat-bg::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70%; background: linear-gradient(to top,rgba(0,0,0,.9),transparent); }
.subcat-inner { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; display: block; }
.sc-label { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; }
.sc-title { font-size: 16px; font-weight: 200; letter-spacing: -.01em; }
.sc-count { font-size: 11px; color: var(--muted); margin-top: 4px; }
.sct1::before, .sct2::before, .sct3::before, .sct4::before, .sct5::before, .sct6::before { content: ''; position: absolute; inset: 0; }
.sct1::before { background: radial-gradient(ellipse at 60% 30%,rgba(212,168,0,.12) 0%,transparent 60%); }
.sct2::before { background: radial-gradient(ellipse at 60% 30%,rgba(74,222,128,.1) 0%,transparent 60%); }
.sct3::before { background: radial-gradient(ellipse at 60% 30%,rgba(251,146,60,.1) 0%,transparent 60%); }
.sct4::before { background: radial-gradient(ellipse at 60% 30%,rgba(163,163,163,.08) 0%,transparent 60%); }
.sct5::before { background: radial-gradient(ellipse at 60% 30%,rgba(212,168,0,.08) 0%,transparent 60%); }
.sct6::before { background: radial-gradient(ellipse at 60% 30%,rgba(251,146,60,.08) 0%,transparent 60%); }
.subcat-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: brightness(0.6) saturate(0.7); }

/* ─── LIVE STAGE SHOWCASE ────────────────────────────────────────────────────── */
.live-stage { position: relative; width: 100%; height: 70vh; min-height: 440px; overflow: hidden; }
.live-stage-split { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.ls-panel { position: relative; overflow: hidden; }
.ls-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.5) saturate(0.75); transition: transform 8s ease; }
.ls-panel:hover .ls-photo { transform: scale(1.04); }
.ls-fade-left { position: absolute; inset: 0; background: linear-gradient(to right,rgba(0,0,0,.0) 0%,rgba(0,0,0,.0) 80%,rgba(0,0,0,.95) 100%); }
.ls-fade-right { position: absolute; inset: 0; background: linear-gradient(to left,rgba(0,0,0,.0) 0%,rgba(0,0,0,.0) 80%,rgba(0,0,0,.95) 100%); }
.ls-fade-top { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,0,0,.6) 0%,transparent 35%,transparent 65%,rgba(0,0,0,.9) 100%); }
.ls-center { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.ls-center-inner { text-align: center; padding: 0 24px; }
.ls-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ls-headline { font-size: clamp(36px,6vw,72px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.8); }
.ls-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.55); margin-top: 14px; letter-spacing: .01em; }
.ls-divider { position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background: linear-gradient(to bottom,transparent,rgba(212,168,0,.5) 40%,rgba(212,168,0,.5) 60%,transparent); z-index: 9; }

/* ─── FEATURED VIDEO PANEL ───────────────────────────────────────────────────── */
.feat-video-panel { position: relative; width: 100%; height: 45vh; min-height: 300px; overflow: hidden; background: #000; border-radius: var(--r); margin-bottom: 32px; border: 1px solid var(--border); }
.feat-video-panel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-video-panel .fvp-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.25) 55%,rgba(0,0,0,.4) 100%); }
.feat-video-panel .fvp-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; }
.feat-video-panel .fvp-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.feat-video-panel .fvp-title { font-size: clamp(24px,4vw,42px); font-weight: 200; letter-spacing: -.025em; line-height: 1.05; color: #fff; }

/* ─── PRODUCT DETAIL (SINGLE) ────────────────────────────────────────────────── */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 48px 0 80px; align-items: start; }
.main-image { aspect-ratio: 1; border-radius: var(--r); background: rgba(255,255,255,.03); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; position: relative; }
.main-image::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%,rgba(212,168,0,.07) 0%,transparent 60%); }
.image-thumbnails { display: flex; gap: 8px; }
.thumb { aspect-ratio: 1; flex: 1; border-radius: 6px; background: rgba(255,255,255,.03); border: 1px solid var(--border); cursor: pointer; transition: border-color .2s; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--muted); }
.thumb.active, .thumb:hover { border-color: rgba(255,255,255,.25); }
.thumb.active { border-color: var(--gold); }
.prod-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.prod-title { font-size: clamp(36px,5vw,54px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; margin-bottom: 16px; }
.prod-subtitle { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 32px; }
.callout-section { margin-bottom: 32px; }
.callout-title { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--label); margin-bottom: 14px; }
.callout { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.callout:first-of-type { border-top: 1px solid rgba(255,255,255,.06); }
.callout-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.callout-dot.g { background: var(--green); } .callout-dot.o { background: var(--orange); }
.callout-label { font-size: 14px; font-weight: 400; color: #fff; letter-spacing: -.01em; }
.callout-detail { font-size: 13px; color: var(--muted); margin-left: auto; text-align: right; }
.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
/* width:100% only inside product-actions — NOT globally, so hero buttons stay natural width */
.product-actions .btn { width: 100%; text-align: center; justify-content: center; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.trust-item span { font-size: 14px; }

/* ─── PRODUCT TABS ───────────────────────────────────────────────────────────── */
.product-tabs-section { border-top: 1px solid var(--border); padding-top: 0; }
.tabs-nav { display: flex; border-bottom: 1px solid var(--border); }
.tab-btn { padding: 0 24px; height: 52px; font-size: 14px; font-weight: 400; color: rgba(255,255,255,.5); cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s; background: transparent; border-top: none; border-left: none; border-right: none; font-family: var(--font); }
.tab-btn:hover { color: #fff; }
.tab-btn.active { color: #fff; border-bottom-color: var(--gold); }
.tab-content { padding: 48px 0; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 14px 0; font-size: 14px; }
.specs-table td:first-child { color: var(--label); font-size: 13px; width: 40%; padding-right: 24px; }
.specs-table td:last-child { color: #fff; font-weight: 400; }
.desc-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; }
.desc-body p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 18px; }
.desc-applications h4 { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--label); margin-bottom: 16px; }
.app-list { list-style: none; }
.app-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 14px; color: rgba(255,255,255,.6); }
.app-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ─── RELATED PRODUCTS ───────────────────────────────────────────────────────── */
.related-section { padding: 60px 0 80px; border-top: 1px solid var(--border); }
.related-title { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--label); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.rel-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all .25s; }
.rel-card:hover { background: var(--bg-hover); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.rel-img { aspect-ratio: 4/3; background: rgba(255,255,255,.025); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rel-body { padding: 14px 16px 16px; }
.rel-series { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.rel-name { font-size: 14px; font-weight: 300; letter-spacing: -.01em; }

/* ─── PRODUCT VIDEO ──────────────────────────────────────────────────────────── */
.prod-video-section { margin-top: 20px; }
.prod-video-label { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
/* Vertical video — capped at 340px tall, centred, correct 9:16 ratio */
.prod-video-wrap { display: flex; justify-content: center; }
.prod-video-wrap video { width: auto; max-height: 340px; aspect-ratio: 9/16; object-fit: cover; border-radius: 10px; border: 1px solid rgba(255,255,255,.08); display: block; }

/* ─── BREADCRUMB LUMI ────────────────────────────────────────────────────────── */
.lumi-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 40px; }
.lumi-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.lumi-breadcrumb a:hover { color: #fff; }
.lumi-breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ─── FILTER BAR LUMI ────────────────────────────────────────────────────────── */
.lumi-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.lumi-filter-pill { display: inline-flex; align-items: center; padding: 7px 18px; border-radius: 100px; font-size: 13px; font-weight: 400; border: 1px solid var(--border); color: rgba(255,255,255,0.6); background: transparent; cursor: pointer; transition: all 0.2s; }
.lumi-filter-pill:hover, .lumi-filter-pill.active { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: #fff; }
.lumi-filter-pill.active { border-color: var(--cyan); color: var(--cyan); }

/* ─── DIVIDER ────────────────────────────────────────────────────────────────── */
.lumi-divider { height: 1px; background: var(--border); margin: 0; }

/* ─── SPD (single product detail) aliases ────────────────────────────────────── */
.spd-left { } .spd-right { }
.spd-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.spd-title { font-size: clamp(36px,5vw,54px); font-weight: 200; letter-spacing: -.03em; line-height: 1.0; margin-bottom: 16px; }
.spd-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 32px; }
.main-img-wrap { aspect-ratio: 1; border-radius: var(--r); background: rgba(255,255,255,.03); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; position: relative; }
.main-img { width: 90%; height: 90%; object-fit: contain; display: block; margin: auto; }
.thumb-rail { display: flex; gap: 8px; }

/* ─── CONTACT PAGE ──────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 80px;
  align-items: start;
}
.contact-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.lumios-contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: flex; gap: 16px; }
.cf-row-2 > .cf-field { flex: 1; }
.cf-field { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.cf-field label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--gold); }
.cf-field select option { background: #111; color: #fff; }
.cf-field textarea { resize: vertical; min-height: 130px; }
.cf-submit { align-self: flex-start; margin-top: 4px; }
.cf-note { font-size: 12px; color: rgba(255,255,255,.3); margin-top: -8px; }
.contact-info-blocks { display: flex; flex-direction: column; gap: 24px; }
.cib { display: flex; align-items: flex-start; gap: 16px; }
.cib-icon { font-size: 20px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border-radius: 8px; flex-shrink: 0; }
.cib-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.cib-value { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.8); text-decoration: none; }
a.cib-value:hover { color: var(--gold); }
.contact-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0 0; }
.contact-quick-links { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.cql { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 8px; background: rgba(255,255,255,.03); border: 1px solid var(--border); text-decoration: none; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 300; transition: all .2s; }
.cql:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); color: #fff; }
.cql-icon { font-size: 16px; }
.cql-arrow { margin-left: auto; color: var(--gold); font-size: 13px; }
.cib-hours { display: flex; flex-direction: column; gap: 5px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: rgba(255,255,255,.7); }
.hours-row.closed { color: rgba(255,255,255,.3); }
.hours-row span:last-child { text-align: right; color: rgba(255,255,255,.45); }
.hours-row.closed span:last-child { color: rgba(255,255,255,.25); }
.contact-map { margin-top: 24px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .cf-row-2 { flex-direction: column; }
}

/* ─── WOOCOMMERCE OVERRIDES ──────────────────────────────────────────────────── */
.lumios-woo-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.woocommerce-notices-wrapper { padding: 0 0 16px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { padding: 12px 20px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.woocommerce-message { background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2); color: var(--green); }
.woocommerce-error { background: rgba(251,146,60,.08); border: 1px solid rgba(251,146,60,.2); color: var(--orange); }
.woocommerce-info { background: rgba(212,168,0,.08); border: 1px solid rgba(212,168,0,.2); color: var(--gold); }
.woocommerce-page .price { color: var(--gold); font-size: 18px; font-weight: 300; }
.woocommerce-page .amount { color: var(--gold); }
.woocommerce-page ins .amount { color: var(--gold); }
.woocommerce-page del .amount { color: var(--muted); font-size: 13px; }
.woocommerce-page .single_add_to_cart_button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; font-family: var(--font); transition: all .22s; background: var(--gold); color: #000; width: 100%; }
.woocommerce-page .single_add_to_cart_button:hover { background: #e0b800; transform: translateY(-1px); }
.quantity .qty { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: #fff; font-family: var(--font); font-size: 16px; padding: 10px 14px; border-radius: 8px; width: 80px; text-align: center; }
.woocommerce-product-details__short-description { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.woocommerce-tabs { margin-top: 40px; }
.woocommerce-tabs ul.tabs { display: flex; list-style: none; border-bottom: 1px solid var(--border); padding: 0; }
.woocommerce-tabs ul.tabs li { }
.woocommerce-tabs ul.tabs li a { display: flex; align-items: center; padding: 0 24px; height: 52px; font-size: 14px; font-weight: 400; color: rgba(255,255,255,.5); border-bottom: 2px solid transparent; transition: all .2s; }
.woocommerce-tabs ul.tabs li a:hover { color: #fff; }
.woocommerce-tabs ul.tabs li.active a { color: #fff; border-bottom-color: var(--gold); }
.woocommerce-tabs .panel { padding: 40px 0; font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; }
.shop_attributes th, .shop_attributes td { padding: 12px 0; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.shop_attributes th { color: var(--label); width: 40%; font-weight: 400; }
.shop_attributes td { color: #fff; }
.related.products { padding: 60px 0 80px; }
.related.products h2 { font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--label); margin-bottom: 28px; }
.products.columns-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; list-style: none; }
.woocommerce ul.products li.product { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all .25s; }
.woocommerce ul.products li.product:hover { background: var(--bg-hover); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #0a0a0a; padding: 16px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; font-weight: 300; padding: 12px 16px 0; }
.woocommerce ul.products li.product .price { padding: 6px 16px 14px; font-size: 13px; }

/* ─── SECTION FILTER BAR ─────────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─── WOOCOMMERCE OVERRIDES ──────────────────────────────────────────────────── */
/* Reset WC injected <ul> so it never breaks our CSS grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important; /* children flow into the parent grid */
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

/* Anchor reset for card links */
.prod-card-link,
.rel-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.prod-card-link:hover,
.rel-card-link:hover { color: inherit; }

/* WC product summary wrapper */
.woocommerce-product-summary { display: contents; }

/* Price */
.woocommerce .price,
.woocommerce-page .price,
.prod-price .woocommerce-Price-amount,
.woocommerce span.price,
.woocommerce p.price {
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 400;
}
.woocommerce .price ins { text-decoration: none; }
.woocommerce .price del {
  opacity: 0.45;
  font-size: 11px;
  margin-right: 6px;
}

/* Add to cart button */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button,
.woocommerce .button.alt {
  background: var(--gold) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--font) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .05em !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  transition: opacity .2s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .button.alt:hover { opacity: .82 !important; }

/* Quantity input */
.woocommerce .quantity input.qty {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-family: var(--font) !important;
  padding: 10px 12px !important;
  width: 64px !important;
}

/* WC Pagination */
.lumios-pagination .woocommerce-pagination,
.woocommerce nav.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin: 48px 0 0;
}
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--gold); color: var(--gold); }
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
}

/* WC notices */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  background: var(--bg-card);
  border-top: 3px solid var(--gold);
  color: rgba(255,255,255,.8);
  font-family: var(--font);
  border-radius: 0 0 4px 4px;
  padding: 14px 18px;
  margin-bottom: 24px;
  list-style: none;
}

/* Stars */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: var(--gold); }

/* Result count */
.woocommerce-result-count {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 300;
  margin: 0 0 20px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .lumi-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .products.columns-4 { grid-template-columns: repeat(2,1fr); }
  .subcat-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .inner, .lumi-container, .lumi-container-wide, .footer-inner { padding: 0 20px; }
  .section, .lumi-section { padding: 72px 0; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Mobile nav drawer */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { height: auto; line-height: 1; padding: 14px 24px; width: 100%; font-size: 15px; }
  .nav-links .dropdown ul {
    display: block;
    position: static;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 32px;
    min-width: unset;
  }
  .nav-links .dropdown ul a { padding: 10px 24px; font-size: 13px; color: rgba(255,255,255,.45); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: 1fr; }
  .lumi-cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .dual-split { grid-template-columns: 1fr; height: auto; }
  .live-stage-split { grid-template-columns: 1fr; }
  .desc-grid { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .products.columns-4 { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: clamp(40px,10vw,70px); }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { padding: 16px 24px; }
  .factory-grid { grid-template-columns: 1fr; }
  .subcat-grid { grid-template-columns: repeat(2,1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-panel { min-height: 420px; }
  .about-stats-row { gap: 24px; }
  .about-cta-title { font-size: clamp(28px,6vw,48px); }
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────────── */

/* Stats bar */
.about-stats-bar { background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.about-stats-row { display: flex; justify-content: center; gap: 80px; text-align: center; }
.about-stat-val  { font-size: clamp(36px,5vw,56px); font-weight: 700; letter-spacing: -.02em; color: var(--gold); line-height: 1; }
.about-stat-lbl  { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--label); margin-top: 8px; }

/* Who/What split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.about-panel { position: relative; overflow: hidden; }
.about-panel-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(0.7); transition: transform .6s ease; }
.about-panel:hover .about-panel-bg { transform: scale(1.04); }
.about-panel-tint { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 100%); }
.about-panel-body { position: relative; z-index: 2; padding: clamp(40px,6vw,80px); display: flex; flex-direction: column; justify-content: flex-end; height: 100%; box-sizing: border-box; }
.about-panel-title { font-size: clamp(26px,3.5vw,44px); font-weight: 700; color: var(--gold); margin: 0 0 20px; letter-spacing: -.01em; }
.about-panel-text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.82); margin: 0; max-width: 480px; }
/* Subtle divider between panels */
.about-panel.ap-right { border-left: 1px solid rgba(255,255,255,.08); }

/* Mission strip */
.about-mission { padding: 72px 0; }
.about-mission-inner { display: flex; align-items: center; gap: 32px; }
.about-mission-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.about-mission-text { font-size: clamp(16px,2vw,20px); font-weight: 300; color: rgba(255,255,255,.7); text-align: center; max-width: 680px; line-height: 1.7; flex-shrink: 0; font-style: italic; }

/* Footer CTA */
.about-cta { padding: 80px 0 60px; text-align: center; border-top: 1px solid var(--border); }
.about-cta-title { font-size: clamp(32px,4vw,56px); font-weight: 700; line-height: 1.15; margin: 0 0 40px; letter-spacing: -.02em; }
.about-cta-title em { font-style: normal; color: var(--gold); }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
