/*
Theme Name: Lumeon Child
Theme URI: https://lumeon.by
Template: astra
Description: Дочерняя тема Astra для интернет-магазина Lumeon
Author: Lumeon
Version: 1.0.0
Text Domain: lumeon-child
*/

/* ===== CSS VARIABLES ===== */
:root {
  --lm-bg-body: #F0F0EC;
  --lm-bg-container: #FFFFFF;
  --lm-bg-card: #FFFFFF;
  --lm-bg-dark: #1E1E1E;
  --lm-bg-input: #F5F4F2;
  --lm-accent: #009C4B;
  --lm-accent-hover: #007A3A;
  --lm-text: #2B2A29;
  --lm-text-2: #3A3937;
  --lm-text-3: #4A4946;
  --lm-text-4: #5A5A58;
  --lm-text-5: #6B6B68;
  --lm-text-muted: #8A8A86;
  --lm-text-dim: #AAAAAA;
  --lm-border: rgba(0, 0, 0, 0.06);
  --lm-border-2: rgba(0, 0, 0, 0.08);
  --lm-border-3: rgba(0, 0, 0, 0.12);
  --lm-success: #009C4B;
  --lm-font: 'Manrope', system-ui, sans-serif;
  --lm-font-head: 'Manrope', system-ui, sans-serif;
  --lm-wrap: 1600px;
  --lm-pad: 56px;
  --lm-radius: 5px;
  --lm-section-gap: 90px;

  /* Override Astra color variables for light theme */
  --ast-global-color-0: #009C4B;
  --ast-global-color-1: #007A3A;
  --ast-global-color-2: #2B2A29;
  --ast-global-color-3: #2B2A29;
  --ast-global-color-4: #FFFFFF;
  --ast-global-color-5: #F5F4F2;
  --ast-global-color-6: #2B2A29;
  --ast-global-color-7: #8A8A86;
  --ast-global-color-8: #2B2A29;
}

/* ===== RESET / BASE ===== */
html:has(body.lumeon-front),
body.lumeon-front {
  overflow-x: hidden;
  overflow-y: visible !important;
}
body.lumeon-front {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--lm-bg-body) !important;
  font-family: var(--lm-font) !important;
  color: var(--lm-text) !important;
  -webkit-font-smoothing: antialiased;
}

.lumeon-front *, .lumeon-front *::before, .lumeon-front *::after {
  box-sizing: border-box;
}

/* Override Astra heading styles */
.lumeon-front h1,
.lumeon-front h2,
.lumeon-front h3,
.lumeon-front h4,
.lumeon-front h5,
.lumeon-front h6,
.lumeon-front .entry-content h1,
.lumeon-front .entry-content h2,
.lumeon-front .entry-content h3 {
  color: var(--lm-text) !important;
  font-family: var(--lm-font-head) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

/* Override Astra body/paragraph text color */
.lumeon-front,
.lumeon-front p,
.lumeon-front span,
.lumeon-front div,
.lumeon-front li {
  color: inherit;
}

.lumeon-front a {
  color: var(--lm-accent) !important;
  text-decoration: none !important;
  transition: color .2s;
}
.lumeon-front a:hover { color: var(--lm-accent-hover) !important; }
/* Restore specific link colors where needed */
.lumeon-front .lm-nav a { color: var(--lm-text-3) !important; }
.lumeon-front .lm-nav a:hover { color: var(--lm-accent) !important; }
.lumeon-front .lm-topbar a { color: var(--lm-text-muted) !important; }
.lumeon-front .lm-topbar a:hover { color: var(--lm-accent) !important; }
.lumeon-front .lm-footer-links a { color: var(--lm-text-3) !important; }
.lumeon-front .lm-footer-links a:hover { color: var(--lm-accent) !important; }
.lumeon-front .lm-footer-legal a { color: var(--lm-text-dim) !important; }
.lumeon-front .lm-btn { color: #FFFFFF !important; }
.lumeon-front .lm-btn:hover { color: #FFFFFF !important; }
.lumeon-front .lm-btn-outline { color: var(--lm-text) !important; }
.lumeon-front .lm-cat-card { color: var(--lm-text) !important; }
.lumeon-front .lm-cat-card:hover { color: var(--lm-text) !important; }
.lumeon-front .lm-sol-card { color: var(--lm-text) !important; }
.lumeon-front .lm-blog-card { color: var(--lm-text) !important; }
.lumeon-front .lm-section-link { color: var(--lm-text-muted) !important; }
.lumeon-front .lm-cart-link { color: var(--lm-text-3) !important; }

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

.lumeon-front input:focus,
.lumeon-front button:focus,
.lumeon-front select:focus { outline: none; }

.lumeon-front ::placeholder { color: var(--lm-text-dim); }

/* Hide Astra elements on front page */
.lumeon-front #page > .ast-container,
.lumeon-front .site-header,
.lumeon-front .site-footer,
.lumeon-front .ast-above-header,
.lumeon-front .ast-below-header,
.lumeon-front #ast-scroll-top,
.lumeon-front .ast-scroll-top-icon { display: none !important; }

/* Override Astra container styles */
.lumeon-front #page,
.lumeon-front .ast-container,
.lumeon-front #primary,
.lumeon-front .site-content,
.lumeon-front .content-area,
.lumeon-front .site-main,
.lumeon-front .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
}

/* ===== WRAPPER ===== */
.lm-wrap {
  width: 100%;
  margin: 0 auto;
  background: var(--lm-bg-container);
  overflow: visible !important;
  color: var(--lm-text);
  overflow: hidden;
}

/* ===== TOP BAR ===== */
.lm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px var(--lm-pad);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 12.5px;
  color: var(--lm-text-muted);
}
.lm-topbar a { color: var(--lm-text-muted); }
.lm-topbar a:hover { color: var(--lm-accent); }
.lm-topbar-left { display: flex; align-items: center; gap: 18px; }
.lm-topbar-right { display: flex; align-items: center; gap: 18px; }
.lm-topbar-messengers { display: flex; gap: 16px; }
.lm-topbar-phone { color: var(--lm-text-3); font-weight: 500; }

/* ===== HEADER / NAV ===== */
.lm-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.lm-fixed-top-spacer {
  height: 106px;
}
.lm-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lm-border);
}
.lm-header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px var(--lm-pad);
}
.lm-logo {
  display: block;
  height: 28px;
  width: auto;
}
.lm-logo-sub {
  font-family: var(--lm-font);
  font-size: 11px;
  color: var(--lm-text-dim);
  letter-spacing: .04em;
  margin-top: 4px;
}
.lm-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: var(--lm-text-3);
  margin-left: 8px;
}
.lm-nav > a { color: var(--lm-text-3) !important; }
.lm-nav > a:hover { color: var(--lm-accent) !important; }

/* --- Catalog trigger (nav item with dropdown) --- */
.lm-nav-catalog {
  position: relative;
}
.lm-nav-catalog-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--lm-text-3) !important;
  font-weight: 500;
  padding: 6px 0;
  cursor: pointer;
}
.lm-nav-catalog-trigger:hover {
  color: var(--lm-accent) !important;
  text-decoration: none !important;
}
.lm-nav-chevron {
  margin-left: 2px;
  transition: transform .2s;
}
.lm-nav-catalog:hover .lm-nav-chevron {
  transform: rotate(180deg);
}

/* --- Mega Menu Dropdown --- */
.lm-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 900px;
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 28px 32px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.lm-nav-catalog:hover .lm-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Bridge — invisible area between trigger and dropdown to prevent flickering */
.lm-mega::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* --- Mega menu inner grid --- */
.lm-mega-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 24px;
}
.lm-mega-col {
  min-width: 0;
}

/* Category title (top-level) */
.lm-mega-title {
  display: block;
  font-family: var(--lm-font) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lm-border-2);
  line-height: 1.3;
}
.lm-mega-title:hover {
  color: var(--lm-accent) !important;
  text-decoration: none !important;
}

/* Subcategory list (level 2) */
.lm-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lm-mega-list > li {
  margin-bottom: 6px;
}
.lm-mega-list > li > a {
  display: block;
  font-size: 13px;
  color: var(--lm-text-3) !important;
  padding: 3px 0;
  line-height: 1.35;
  transition: color .15s;
}
.lm-mega-list > li > a:hover {
  color: var(--lm-accent) !important;
  text-decoration: none !important;
}

/* Sub-subcategory list (level 3) */
.lm-mega-sub {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0 0 0 12px;
  border-left: 1px solid var(--lm-border);
}
.lm-mega-sub li {
  margin-bottom: 2px;
}
.lm-mega-sub a {
  font-size: 12px;
  color: var(--lm-text-muted) !important;
  padding: 2px 0;
  display: block;
  line-height: 1.35;
}
.lm-mega-sub a:hover {
  color: var(--lm-accent) !important;
  text-decoration: none !important;
}

/* --- Simple nav dropdown (О нас) --- */
.lm-nav-dropdown {
  position: relative;
}
.lm-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.lm-nav-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.lm-nav-drop::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.lm-nav-dropdown:hover .lm-nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lm-nav-dropdown:hover .lm-nav-chevron {
  transform: rotate(180deg);
}
.lm-nav-drop a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--lm-text-3) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.lm-nav-drop a:hover {
  color: var(--lm-accent) !important;
  background: var(--lm-bg-input);
}

.lm-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.lm-search-wrap {
  display: flex;
  align-items: center;
  background: var(--lm-bg-input);
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 3px;
  padding: 0 14px;
  min-width: 180px;
}
.lm-search-wrap input {
  flex: 1;
  background: none;
  border: none;
  padding: 11px 0;
  color: var(--lm-text);
  font-size: 14px;
  font-family: var(--lm-font);
}
.lm-search-wrap svg { flex: none; color: var(--lm-text-dim); }

.lm-btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--lm-accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 3px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--lm-font);
  transition: background .2s;
}
.lm-btn:hover { background: var(--lm-accent-hover); color: #FFFFFF; }

.lm-btn-outline {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid rgba(0, 0, 0, .3);
  color: var(--lm-text);
  font-size: 15px;
  border-radius: 3px;
  background: none;
  cursor: pointer;
  transition: border-color .2s;
}
.lm-btn-outline:hover { border-color: var(--lm-accent); color: var(--lm-text); }

.lm-btn-lg {
  padding: 17px 34px;
  font-size: 15px;
}

.lm-cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lm-text-3);
  font-size: 13.5px;
}
.lm-cart-count {
  background: var(--lm-accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
.lm-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 520px at 82% 12%, #182430 0%, #0C1319 55%, #070B10 100%);
  padding: 76px var(--lm-pad) 60px;
}
.lm-hero-bokeh {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  will-change: transform;
  transition: transform .5s ease-out;
  z-index: 0;
}
.lm-hero-bokeh i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c) 0%, transparent 72%);
}
.lm-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
}
.lm-hero-badge {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #1FCB68 !important;
}
.lm-hero h1 {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -.01em !important;
  color: #fff !important;
  font-size: 48px !important;
  line-height: 1.12 !important;
  margin: 16px 0 16px !important;
}
.lm-hero-desc {
  color: #AEBBC4 !important;
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}
.lm-hero-cta { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.lm-hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: var(--lm-radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.lm-hero .btn-primary { background: var(--lm-accent) !important; color: #fff !important; }
.lm-hero .btn-primary:hover { background: #007A3A !important; }
.lm-hero .btn-ghost { background: transparent !important; color: #fff !important; border-color: rgba(255,255,255,.3) !important; }
.lm-hero .btn-ghost:hover { border-color: #fff !important; }
.lm-hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.lm-hero-stats div b {
  display: block;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #fff !important;
}
.lm-hero-stats div span { font-size: 11px; color: #7C8A94; }

/* Glow tool */
.lm-glow-tool { text-align: center; }
.lm-glow-tool .tool-label { display: block; margin-bottom: 14px; color: var(--lm-accent); }
.lm-glow-input {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 0 !important;
  color: var(--glow-color, #FFE8C8) !important;
  text-align: center !important;
  padding: 8px 4px 16px !important;
  height: auto !important;
  min-height: 0 !important;
  outline: none !important;
  caret-color: var(--glow-color, #FFE8C8);
  transition: text-shadow .25s ease, color .25s ease;
  box-shadow: none !important;
}
.lm-glow-input:focus {
  background: transparent !important;
  border-color: rgba(255,255,255,.3) !important;
  box-shadow: none !important;
}
.lm-glow-input::placeholder { color: var(--glow-color, #FFE8C8) !important; opacity: .45; }
.lm-glow-input.sz-m { font-size: clamp(22px, 3.2vw, 36px) !important; }
.lm-glow-input.sz-s { font-size: clamp(17px, 2.4vw, 26px) !important; }
.lm-glow-input.style-neon {
  font-family: 'Golos Text', sans-serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: clamp(32px, 4.4vw, 54px) !important;
  text-shadow: 0 0 6px var(--glow-color), 0 0 16px var(--glow-color), 0 0 36px var(--glow-color), 0 0 70px color-mix(in srgb, var(--glow-color) 55%, transparent) !important;
}
.lm-glow-input.style-mod {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  font-size: clamp(28px, 3.8vw, 46px) !important;
  text-shadow: 0 0 3px var(--glow-color), 0 0 9px var(--glow-color), 0 0 22px var(--glow-color) !important;
}
.lm-glow-input.style-outline {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  font-size: clamp(28px, 3.8vw, 46px) !important;
  color: transparent !important;
  -webkit-text-stroke: 1.6px var(--glow-color);
  text-shadow: 0 0 5px var(--glow-color), 0 0 14px var(--glow-color) !important;
}
.style-outline::placeholder { -webkit-text-fill-color: transparent; }
.lm-glow-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.lm-glow-segs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.lm-glow-seg {
  border: 1.5px solid rgba(255,255,255,.2) !important;
  background: transparent !important;
  color: #C3CED5 !important;
  border-radius: var(--lm-radius) !important;
  padding: 7px 12px !important;
  font: inherit;
  font-size: 12.5px !important;
  cursor: pointer;
}
.lm-glow-seg:hover { border-color: rgba(255,255,255,.4); }
.lm-glow-seg[aria-pressed=true] { background: #fff !important; color: #0F1720 !important; border-color: #fff !important; font-weight: 600 !important; }
.lm-glow-chips { display: flex; gap: 7px; align-items: center; }
.lm-glow-chip {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}
.lm-glow-chip[aria-pressed=true] { border-color: #fff; box-shadow: 0 0 0 2px #0C1319, 0 0 0 3px #fff; }
.lm-glow-chip.rgb { background: conic-gradient(from 0deg, #ff3b4e, #ff8a00, #ffe600, #23e087, #21c7ff, #3b6bff, #a05bff, #ff4fc3, #ff3b4e); }
.lm-glow-cta { margin: 18px 0 0; font-size: 13px; color: #AEBBC4 !important; }
.lm-glow-cta a { color: #1FCB68 !important; font-weight: 600; }

@keyframes signFlicker {
  0%{opacity:0} 4%{opacity:1} 8%{opacity:.25} 12%{opacity:1}
  20%{opacity:.35} 24%{opacity:1} 40%{opacity:1} 46%{opacity:.5}
  51%{opacity:1} 100%{opacity:1}
}
.flicker { animation: signFlicker 1s steps(1, end) 1; }
@keyframes driftA{from{transform:translate(0,0)}to{transform:translate(24px,-16px)}}
@keyframes driftB{from{transform:translate(0,0)}to{transform:translate(-20px,18px)}}
@keyframes driftC{from{transform:translate(0,0)}to{transform:translate(16px,-12px)}}
@keyframes driftE{from{transform:translate(0,0) scale(1);opacity:.9}to{transform:translate(8px,-6px) scale(1.15);opacity:.5}}
@keyframes driftF{from{transform:translate(0,0) scale(1);opacity:.5}to{transform:translate(-6px,8px) scale(1.2);opacity:.9}}

/* ===== STATS BAR ===== */
.lm-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px var(--lm-pad);
  border-top: 1px solid var(--lm-border);
  border-bottom: 1px solid var(--lm-border);
}
.lm-stat-num {
  font-family: var(--lm-font-head);
  font-size: 32px;
  color: var(--lm-accent);
}
.lm-stat-label { font-size: 13px; color: var(--lm-text-muted); margin-top: 3px; }

/* ===== SECTION COMMON ===== */
.lm-section {
  padding: 0 var(--lm-pad) var(--lm-section-gap);
}
.lm-section-bordered {
  margin: 0 var(--lm-pad) var(--lm-section-gap);
  padding: 56px 0;
  border-top: 1px solid var(--lm-border-2);
}
.lm-section-card {
  margin: 0 var(--lm-pad) var(--lm-section-gap);
  padding: 56px var(--lm-pad);
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  border-radius: 6px;
}
.lm-section-accent {
  margin: 0 var(--lm-pad) var(--lm-section-gap);
  padding: 56px var(--lm-pad);
  background: radial-gradient(120% 180% at 100% 0%,
    rgba(0, 156, 75, .05),
    rgba(0, 156, 75, 0) 55%),
    var(--lm-bg-card);
  border: 1px solid rgba(0, 156, 75, .12);
  border-radius: 6px;
}

.lm-section h2 {
  font-family: var(--lm-font-head);
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--lm-text);
}
.lm-section h3 {
  font-family: var(--lm-font-head);
  font-size: 26px;
  color: var(--lm-accent);
  margin-bottom: 14px;
  font-weight: 700;
}
.lm-section-sub {
  font-size: 15px;
  color: var(--lm-text-muted);
  margin: 0 0 40px;
  max-width: 640px;
}
.lm-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lm-section-link {
  font-size: 14px;
  color: var(--lm-text-muted);
}

/* ===== CATALOG GRID ===== */
.lm-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lm-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--lm-radius);
  overflow: hidden;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border);
  min-width: 0;
  color: var(--lm-text);
  transition: border-color .2s;
}
.lm-cat-card:hover { border-color: rgba(0, 156, 75, 0.3); color: var(--lm-text); }

.lm-cat-card-img {
  height: 170px;
  position: relative;
  background: var(--lm-bg-input);
  overflow: hidden;
}
.lm-cat-card-img img { width: 100%; height: 100%; object-fit: cover; }

.lm-cat-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lm-cat-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lm-cat-card-desc {
  font-size: 13px;
  color: var(--lm-text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}
.lm-cat-card-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.lm-cat-card-sub {
  font-size: 12px;
  color: var(--lm-text-4);
  padding: 4px 10px;
  background: var(--lm-bg-container);
  border: 1px solid var(--lm-border);
  border-radius: 16px;
}
.lm-cat-card-price {
  margin-top: auto;
  font-size: 14px;
  color: var(--lm-accent);
  font-weight: 600;
}

/* ===== SOLUTIONS ===== */
.lm-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lm-sol-card {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  color: var(--lm-text);
  min-width: 0;
  transition: border-color .2s;
}
.lm-sol-card:hover { border-color: rgba(0, 156, 75, 0.3); color: var(--lm-text); }

.lm-sol-card-title { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.lm-sol-card-desc { font-size: 14px; color: var(--lm-text-5); line-height: 1.55; flex: 1; }
.lm-sol-card-link {
  margin-top: auto;
  font-size: 14px;
  color: var(--lm-accent);
  padding-top: 16px;
}

/* ===== PRODUCT CARDS (HITS) ===== */
.lm-products-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 var(--lm-pad) 18px 0;
}
.lm-products-scroll::-webkit-scrollbar { height: 8px; }
.lm-products-scroll::-webkit-scrollbar-thumb { background: rgba(0, 156, 75, 0.4); border-radius: 4px; }
.lm-products-scroll::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.04); }

.lm-prod-card {
  flex: none;
  width: 250px;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lm-prod-card-img {
  height: 190px;
  background: var(--lm-bg-input);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.lm-prod-card-img img { width: 100%; height: 100%; object-fit: cover; }

.lm-prod-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lm-success);
  font-size: 11px;
  font-weight: 600;
  border-radius: 2px;
}
.lm-prod-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lm-prod-art { font-size: 12px; color: var(--lm-text-muted); margin-bottom: 8px; }
.lm-prod-name { font-size: 14.5px; font-weight: 600; line-height: 1.35; margin-bottom: 10px; color: var(--lm-text); }
.lm-prod-stock { font-size: 12px; color: var(--lm-text-muted); margin-bottom: 12px; }
.lm-prod-price { font-size: 15px; font-weight: 700; color: var(--lm-accent); }
.lm-prod-actions { display: flex; gap: 8px; margin-top: auto; }
.lm-prod-actions .lm-btn { flex: 1; text-align: center; padding: 10px; font-size: 13px; }
.lm-prod-actions .lm-btn-outline { flex: none; padding: 10px 12px; font-size: 13px; }

/* ===== CALCULATOR ===== */
.lm-calc {
  margin: 0 var(--lm-pad) var(--lm-section-gap);
  padding: 56px var(--lm-pad);
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--lm-pad);
  align-items: center;
}
.lm-calc-label {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--lm-text-muted);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.lm-calc h2 {
  font-family: var(--lm-font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}
.lm-calc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; max-width: 540px; }
.lm-calc-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--lm-bg-container);
  border: 1px solid var(--lm-border-3);
  border-radius: 3px;
  color: var(--lm-text);
  font-size: 15px;
  font-family: var(--lm-font);
}
.lm-calc-result {
  background: var(--lm-bg-container);
  border: 1px solid var(--lm-border-2);
  border-radius: 6px;
  overflow: hidden;
}
.lm-calc-result-head {
  padding: 16px 24px;
  background: var(--lm-bg-card);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--lm-text-muted);
  text-transform: uppercase;
}
.lm-calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--lm-border);
  font-size: 14px;
}
.lm-calc-result-row span:first-child { color: var(--lm-text-5); }
.lm-calc-result-row span:last-child { color: var(--lm-text); font-weight: 600; }
.lm-calc-note { font-size: 12px; color: var(--lm-text-dim); margin-top: 14px; line-height: 1.5; }

/* ===== SAMPLES ===== */
.lm-samples {
  margin: 0 var(--lm-pad) var(--lm-section-gap);
  padding: 56px var(--lm-pad);
  background: radial-gradient(120% 160% at 85% 0%,
    rgba(0, 156, 75, .05),
    rgba(0, 156, 75, 0) 55%),
    var(--lm-bg-card);
  border: 1px solid rgba(0, 156, 75, .12);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lm-pad);
  align-items: center;
}
.lm-samples h2 {
  font-family: var(--lm-font-head);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}
.lm-samples p { font-size: 15px; line-height: 1.7; color: var(--lm-text-5); }
.lm-samples-form { display: flex; gap: 10px; }
.lm-samples-form input {
  flex: 1;
  padding: 15px 18px;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-3);
  border-radius: 3px;
  color: var(--lm-text);
  font-size: 15px;
  font-family: var(--lm-font);
}

/* ===== PRICING TABLE ===== */
.lm-pricing-table {
  border: 1px solid var(--lm-border-2);
  border-radius: 6px;
  overflow: hidden;
}
.lm-pricing-head {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--lm-bg-card);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--lm-text-muted);
  text-transform: uppercase;
}
.lm-pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--lm-border);
}

/* ===== ABOUT ===== */
.lm-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}
.lm-about-stat-num {
  font-family: var(--lm-font-head);
  font-size: 32px;
  color: var(--lm-accent);
  margin-bottom: 6px;
}
.lm-about-stat-label { font-size: 14px; color: var(--lm-text-muted); }

/* ===== WAREHOUSE / MAP ===== */
.lm-warehouse {
  padding: 0 var(--lm-pad) var(--lm-section-gap);
  display: grid;
  grid-template-columns: .75fr 1.45fr;
  gap: var(--lm-pad);
  align-items: start;
}
.lm-map {
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--lm-bg-input);
}

/* ===== CERTS ===== */
.lm-certs-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: var(--lm-text-3);
}

/* ===== STEPS ===== */
.lm-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.lm-step-card {
  padding: 24px;
  background: var(--lm-bg-container);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
}
.lm-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--lm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lm-accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.lm-step-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.lm-step-desc { font-size: 13px; color: var(--lm-text-muted); }

/* ===== REVIEWS ===== */
.lm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lm-review-card {
  padding: 24px;
  background: var(--lm-bg-container);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
}
.lm-review-stars { color: var(--lm-accent); font-size: 14px; margin-bottom: 12px; }
.lm-review-text { font-size: 14.5px; line-height: 1.45; color: var(--lm-text-2); margin-bottom: 16px; }
.lm-review-name { font-size: 14px; font-weight: 600; }
.lm-review-role { font-size: 13px; color: var(--lm-text-muted); margin-top: 3px; }

/* ===== FAQ ===== */
.lm-faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--lm-border-2);
}
.lm-faq-q {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lm-faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--lm-accent);
  transition: transform .2s;
}
.lm-faq-item.open .lm-faq-q::after {
  content: '−';
}
.lm-faq-a {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lm-text-5);
}
.lm-faq-item.open .lm-faq-a { display: block; }

/* ===== SEO TABLE ===== */
.lm-seo-table {
  border: 1px solid var(--lm-border-2);
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 0;
}
.lm-seo-table-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  padding: 14px 20px;
  background: var(--lm-bg-card);
  font-size: 12.5px;
  letter-spacing: .05em;
  color: var(--lm-text-muted);
  text-transform: uppercase;
}
.lm-seo-table-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  padding: 14px 20px;
  border-top: 1px solid var(--lm-border);
  font-size: 14px;
  color: var(--lm-text-3);
}

/* ===== BLOG ===== */
.lm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lm-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--lm-radius);
  overflow: hidden;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border);
  color: var(--lm-text);
  transition: border-color .2s;
}
.lm-blog-card:hover { border-color: rgba(0, 156, 75, 0.3); color: var(--lm-text); }

.lm-blog-card-img {
  height: 180px;
  background: var(--lm-bg-container);
  overflow: hidden;
}
.lm-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.lm-blog-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.lm-blog-card-cat { font-size: 12px; letter-spacing: .08em; color: var(--lm-accent); text-transform: uppercase; margin-bottom: 8px; }
.lm-blog-card-title { font-size: 16px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.lm-blog-card-date { font-size: 13px; color: var(--lm-text-muted); margin-top: auto; }

/* ===== LEAD FORM ===== */
.lm-lead {
  margin: 0 var(--lm-pad) 60px;
  padding: 56px var(--lm-pad);
  background: radial-gradient(120% 180% at 0% 0%,
    rgba(0, 156, 75, .05),
    rgba(0, 156, 75, 0) 55%),
    var(--lm-bg-card);
  border: 1px solid rgba(0, 156, 75, .12);
  border-radius: 6px;
}
.lm-lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lm-pad);
  align-items: center;
}
.lm-lead h2 {
  font-family: var(--lm-font-head);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}
.lm-lead p { font-size: 15px; line-height: 1.7; color: var(--lm-text-5); }
.lm-lead-form { display: flex; flex-direction: column; gap: 12px; }
.lm-lead-form input {
  padding: 16px 18px;
  background: var(--lm-bg-container);
  border: 1px solid var(--lm-border-3);
  border-radius: 3px;
  color: var(--lm-text);
  font-size: 15px;
  font-family: var(--lm-font);
}
.lm-lead-form button {
  padding: 17px;
  background: var(--lm-accent);
  border: none;
  border-radius: 3px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--lm-font);
  cursor: pointer;
}
.lm-lead-note { font-size: 12px; color: var(--lm-text-dim); margin-top: 8px; }

/* ===== FOOTER ===== */
.lm-footer {
  padding: 64px var(--lm-pad);
  background: var(--lm-bg-dark);
}
.lm-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--lm-border);
}
.lm-footer-logo {
  font-family: var(--lm-font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #FFFFFF;
  margin-bottom: 14px;
  padding-top: 6px;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #009C4B, #4EBF7B) 1;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
}
.lm-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lm-text-5);
}
.lm-footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lm-text-dim);
  margin-bottom: 16px;
}
.lm-footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
}
.lm-footer-links a { color: var(--lm-text-3); }
.lm-footer-links a:hover { color: var(--lm-accent); }

.lm-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  color: var(--lm-text-3);
}
.lm-footer-bottom {
  padding-top: 26px;
  font-size: 12px;
  color: var(--lm-text-dim);
  line-height: 1.7;
}
.lm-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 12px; }
.lm-footer-legal a { color: var(--lm-text-dim); font-size: 12px; }
.lm-footer-legal a:hover { color: var(--lm-accent); }


/* ===== LIGHT HEADER & TOPBAR ===== */
.lm-topbar {
  background: var(--lm-bg-container) !important;
  color: var(--lm-text-muted) !important;
  border-bottom: 1px solid var(--lm-border) !important;
}
.lm-topbar a { color: var(--lm-text-muted) !important; }
.lm-topbar a:hover { color: var(--lm-accent) !important; }
.lm-topbar-phone { color: var(--lm-text-3) !important; }

.lm-header {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid var(--lm-border) !important;
}
.lm-logo { height: 28px !important; }
.lm-logo-sub { color: var(--lm-text-muted) !important; }
.lm-nav > a { color: var(--lm-text-3) !important; }
.lm-nav > a:hover { color: var(--lm-accent) !important; }
.lm-nav-catalog-trigger { color: var(--lm-text-3) !important; }
.lm-nav-catalog-trigger:hover { color: var(--lm-accent) !important; }
.lm-search-wrap {
  background: var(--lm-bg-input) !important;
  border-color: var(--lm-border-2) !important;
}
.lm-search-wrap input { color: var(--lm-text) !important; }
.lm-search-wrap svg { color: var(--lm-text-muted) !important; }
.lm-search-wrap ::placeholder { color: var(--lm-text-dim) !important; }
.lm-cart-link { color: var(--lm-text-3) !important; }
.lm-cart-count { background: var(--lm-accent) !important; color: #FFFFFF !important; }

/* Mega menu on light bg */
.lm-mega {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,.1) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.05) !important;
}
.lm-mega-title { color: var(--lm-text) !important; }
.lm-mega-title:hover { color: var(--lm-accent) !important; }
.lm-mega-list > li > a { color: #4A4946 !important; }
.lm-mega-list > li > a:hover { color: var(--lm-accent) !important; }
.lm-mega-sub a { color: #8A8A86 !important; }
.lm-mega-sub a:hover { color: var(--lm-accent) !important; }

/* Footer dark section */
.lm-footer {
  background: var(--lm-bg-dark) !important;
  color: #B0B0AC !important;
}
.lm-footer-logo { color: #FFFFFF !important; }
.lm-footer-desc { color: #999 !important; }
.lm-footer-title { color: #777 !important; }
.lm-footer-links a { color: #B0B0AC !important; }
.lm-footer-links a:hover { color: #FFFFFF !important; }
.lm-footer-contacts { color: #B0B0AC !important; }
.lm-footer-contacts a { color: #B0B0AC !important; text-decoration: none; }
.lm-footer-contacts a:hover { color: #FFFFFF !important; }
.lm-footer-bottom { color: #777 !important; }
.lm-footer-legal a { color: #777 !important; }
.lm-footer-legal a:hover { color: #FFFFFF !important; }

/* Cards: add subtle shadow on light background */
.lm-cat-card,
.lm-sol-card,
.lm-prod-card,
.lm-blog-card,
.lm-review-card,
.lm-step-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
.lm-cat-card:hover,
.lm-sol-card:hover,
.lm-blog-card:hover {
  border-color: rgba(0, 156, 75, 0.3) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* lm-btn text color: white on green */
.lumeon-front .lm-btn { color: #FFFFFF !important; }
.lumeon-front .lm-btn:hover { color: #FFFFFF !important; }

/* lm-btn-outline on light: dark border and text */
.lm-btn-outline {
  border-color: rgba(0, 0, 0, 0.2) !important;
  color: var(--lm-text) !important;
}
.lm-btn-outline:hover {
  border-color: var(--lm-accent) !important;
  color: var(--lm-accent) !important;
}

/* Stats bar accent numbers */
.lm-stat-num { color: var(--lm-accent) !important; }
.lm-about-stat-num { color: var(--lm-accent) !important; }

/* Product badge on light bg */
.lm-prod-badge {
  background: rgba(0, 156, 75, 0.1) !important;
  color: var(--lm-success) !important;
}

/* Section cards & calc: use light card bg with border */
.lm-section-card {
  background: #F8F8F6 !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.lm-calc {
  background: #F8F8F6 !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.lm-calc-result {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.lm-calc-result-head {
  background: #F5F4F2 !important;
}

/* Category page specific dark-to-light fixes */
.lmc-btn-primary { color: #FFFFFF !important; }
.lmc-btn-primary:hover { color: #FFFFFF !important; }
.lmc-card-cta .lmc-btn-primary { color: #FFFFFF !important; }
.lmc-badge-hit { color: #FFFFFF !important; }
.lmc-sorts button[aria-pressed="true"] { color: #FFFFFF !important; }

/* Kelvin slider colors for light theme */
.lmc-kelvin input[type=range]::-webkit-slider-thumb {
  background: var(--lm-accent) !important;
  border-color: #FFFFFF !important;
}

/* ===== CATEGORY PAGE: light overrides ===== */

/* Hero right panel (LED visualizer) — dark bg like header */
.lmc-hero-right {
  background: var(--lm-bg-dark) !important;
  color: #E8E8E6 !important;
  border-radius: var(--lm-radius);
}
.lmc-hero-right * {
  color: inherit;
}
.lmc-strip {
  border: 1px solid rgba(255,255,255,.12) !important;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,.02) 2px 4px),
    #2a2a2a !important;
}
.lmc-cutline { color: rgba(255,255,255,.45) !important; }
.lmc-cutline i::before { background: rgba(255,255,255,.3) !important; }
.lmc-kelvin label { color: rgba(255,255,255,.5) !important; }
.lmc-kelvin-read b { color: #fff !important; }
.lmc-kelvin-hint { color: rgba(255,255,255,.5) !important; }
.lmc-kelvin input[type=range]::-webkit-slider-thumb {
  border-color: var(--lm-bg-dark) !important;
}
.lmc-kelvin input[type=range]::-moz-range-thumb {
  border-color: var(--lm-bg-dark) !important;
}

/* Band CTA — light green accent instead of dark */
.lmc-band {
  background: #F0FAF4 !important;
  border-color: rgba(0,156,75,.15) !important;
}
.lmc-band h2 { color: var(--lm-text) !important; }
.lmc-band p { color: var(--lm-text-5) !important; }

/* Dark button → green button */
.lmc-btn-dark {
  background: var(--lm-accent) !important;
  color: #FFFFFF !important;
}
.lmc-btn-dark:hover {
  background: var(--lm-accent-hover) !important;
  color: #FFFFFF !important;
}

/* Category page sections bg */
.lmc-section {
  background: var(--lm-bg-container) !important;
}
.lmc-crumbs {
  background: var(--lm-bg-container) !important;
}
.lmc-hero {
  background: var(--lm-bg-container) !important;
}

/* Card vis (LED preview in product cards) */
.lmc-card-vis {
  background: #F5F4F2 !important;
}
.lmc-tape {
  background: rgba(0,156,75,.1) !important;
}
.lmc-badge {
  background: rgba(0,0,0,0.05) !important;
  color: var(--lm-text-muted) !important;
}
.lmc-badge-sale {
  background: #E53935 !important;
  color: #FFFFFF !important;
}
.lmc-badge-hit {
  background: var(--lm-accent) !important;
  color: #FFFFFF !important;
}

/* Filters sidebar */
.lmc-filters {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
}

/* Two-panel layout */
.lmc-panel {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
}

/* Data table best row */
.lmc-data-best td { color: var(--lm-accent) !important; }

/* Calc output */
.lmc-calc-out {
  background: #F8F8F6 !important;
  border-color: rgba(0,0,0,0.1) !important;
}

/* Chips on light bg */
.lmc-chips a {
  background: #F5F4F2 !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: var(--lm-text-3) !important;
}
.lmc-chips a:hover {
  border-color: var(--lm-accent) !important;
}
.lmc-chips a.is-hot {
  background: rgba(0,156,75,.08) !important;
  border-color: var(--lm-accent) !important;
  color: var(--lm-accent) !important;
}

/* Hero grid card on light */
.lmc-hero-grid {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
}

/* Product cards on light */
.lmc-card {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.lmc-card:hover {
  border-color: rgba(0,156,75,.3) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.08) !important;
}

/* Sorts active button */
.lmc-sorts button {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: var(--lm-text-muted) !important;
}
.lmc-sorts button:hover {
  border-color: rgba(0,0,0,0.2) !important;
  color: var(--lm-text) !important;
}
.lmc-sorts button[aria-pressed="true"] {
  background: var(--lm-accent) !important;
  border-color: var(--lm-accent) !important;
  color: #FFFFFF !important;
}

/* Task cards (use-case) */
.lmc-task {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.lmc-task:hover {
  border-color: var(--lm-accent) !important;
}

/* Eyebrow label */
.lmc-eyebrow { color: var(--lm-accent) !important; }

/* Price color */
.lmc-price { color: var(--lm-accent) !important; }

/* Tiers */
.lmc-tiers summary { color: var(--lm-accent) !important; }

/* Task spec */
.lmc-task-spec { color: var(--lm-accent) !important; }

/* Ghost button border on light */
.lmc-btn-ghost {
  border-color: rgba(0,0,0,0.15) !important;
  color: var(--lm-text-3) !important;
}
.lmc-btn-ghost:hover {
  border-color: var(--lm-accent) !important;
  color: var(--lm-text) !important;
}

/* Lead form section */
.lm-lead {
  background: #F0FAF4 !important;
  border-color: rgba(0,156,75,.15) !important;
}
.lm-lead-form input {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: var(--lm-text) !important;
}

/* Samples section */
.lm-samples {
  background: #F0FAF4 !important;
  border-color: rgba(0,156,75,.15) !important;
}
.lm-samples-form input {
  background: #FFFFFF !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: var(--lm-text) !important;
}

/* FAQ accent */
.lm-faq-q::after { color: var(--lm-accent) !important; }

/* Review stars */
.lm-review-stars { color: var(--lm-accent) !important; }

/* Step number circle */
.lm-step-num {
  border-color: var(--lm-accent) !important;
  color: var(--lm-accent) !important;
}

/* ===== RESPONSIVE (basic) ===== */
/* ===== WIDE SCREENS ===== */
@media (min-width: 1800px) {
  :root { --lm-pad: calc((100vw - 1600px) / 2 + 56px); }
}
@media (min-width: 2200px) {
  :root { --lm-pad: calc((100vw - 1800px) / 2 + 56px); }
}

/* ===== RESPONSIVE (smaller) ===== */
@media (max-width: 1024px) {
  :root { --lm-pad: 32px; }
  .lm-hero-inner { grid-template-columns: 1fr; }
  .lm-glow-tool { margin-top: 36px; }
  .lm-hero { padding: 50px var(--lm-pad) 44px; }
  .lm-hero h1 { font-size: 34px !important; }
  .lm-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-reviews-grid { grid-template-columns: 1fr; }
  .lm-calc { grid-template-columns: 1fr; }
  .lm-samples { grid-template-columns: 1fr; }
  .lm-lead-inner { grid-template-columns: 1fr; }
  .lm-warehouse { grid-template-columns: 1fr; }
  .lm-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-about-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-section h2 { font-size: 32px; }
}

@media (max-width: 640px) {
  :root { --lm-pad: 20px; --lm-section-gap: 60px; }
  .lm-header-inner { flex-wrap: wrap; gap: 12px; }
  .lm-nav { display: none; }
  .lm-hero h1 { font-size: 28px !important; }
  .lm-catalog-grid { grid-template-columns: 1fr; }
  .lm-solutions-grid { grid-template-columns: 1fr; }
  .lm-steps-grid { grid-template-columns: 1fr; }
  .lm-blog-grid { grid-template-columns: 1fr; }
  .lm-footer-grid { grid-template-columns: 1fr; }
  .lm-section h2 { font-size: 26px; }
  .lm-calc-form { grid-template-columns: 1fr; }
  .lm-topbar { display: none; }
  .lm-fixed-top-spacer { height: 60px; }
  .lm-seo-table-head, .lm-seo-table-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ==========================================================================
   CATEGORY PAGE STYLES (taxonomy-product_cat)
   ========================================================================== */

:root {
  --lmc-glow: #e3b06d;
  --lmc-stock: #7fc98f;
  --lmc-low: #c75a3a;
  --lmc-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

/* --- Inner container --- */
.lmc-inner {
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--lm-pad);
  padding-right: var(--lm-pad);
}

/* --- Breadcrumbs --- */
.lmc-crumbs {
  padding: 18px 0;
  font-size: 12.5px;
  color: var(--lm-text-muted);
  background: var(--lm-bg-container);
}
.lmc-crumbs a { color: var(--lm-text-5) !important; }
.lmc-crumbs a:hover { color: var(--lm-accent) !important; }
.lmc-crumbs-sep { margin: 0 8px; color: var(--lm-text-dim); }

/* --- Eyebrow label --- */
.lmc-eyebrow {
  font-family: var(--lmc-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lm-accent);
  display: block;
  margin-bottom: 8px;
}

/* --- Section common --- */
.lmc-section {
  padding: 0 0 56px;
  background: var(--lm-bg-container);
}
.lmc-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.lmc-sec-head h2 {
  font-family: var(--lm-font-head) !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin: 0 0 4px !important;
  line-height: 1.2 !important;
}
.lmc-sec-head p {
  margin: 5px 0 0;
  color: var(--lm-text-muted);
  font-size: 14px;
  max-width: 62ch;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.lmc-hero {
  background: var(--lm-bg-container);
  padding: 0 0 56px;
}
.lmc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  overflow: hidden;
}
.lmc-hero-left {
  padding: 38px 40px 34px;
}
.lmc-hero h1 {
  font-family: var(--lm-font-head) !important;
  font-size: 42px !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
  margin: 10px 0 16px !important;
  color: var(--lm-text) !important;
  max-width: 15ch;
}
.lmc-hero-lead {
  color: var(--lm-text-5);
  max-width: 52ch;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Chips / tag links */
.lmc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.lmc-chips a {
  display: block;
  padding: 7px 13px;
  border: 1px solid var(--lm-border-3);
  border-radius: var(--lm-radius);
  font-size: 13px;
  color: var(--lm-text-3) !important;
  background: var(--lm-bg-container);
  transition: border-color .15s, background .15s;
}
.lmc-chips a:hover {
  border-color: var(--lm-accent) !important;
  color: var(--lm-text) !important;
  text-decoration: none !important;
}
.lmc-chips a.is-hot {
  border-color: var(--lm-accent);
  background: rgba(0, 156, 75, .1);
  color: var(--lm-accent) !important;
}

/* Facts row */
.lmc-facts {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--lm-border-2);
}
.lmc-fact b {
  display: block;
  font-family: var(--lmc-mono);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--lm-text);
}
.lmc-fact span {
  font-size: 12px;
  color: var(--lm-text-muted);
}

/* ==========================================================================
   HERO RIGHT — LED STRIP VISUALIZER
   ========================================================================== */
.lmc-hero-right {
  background: var(--lm-bg-dark);
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.lmc-strip-wrap {
  position: relative;
  padding: 26px 0 8px;
}
.lmc-strip {
  height: 34px;
  border-radius: 2px;
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .06) 0 2px, rgba(0, 0, 0, .02) 2px 4px),
    #e8e8e4;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 0 46px 6px var(--lmc-glow), 0 0 90px 20px color-mix(in srgb, var(--lmc-glow) 35%, transparent);
  transition: box-shadow .35s ease;
  overflow: hidden;
}
.lmc-leds {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.lmc-leds i {
  width: 13px;
  height: 13px;
  border-radius: 1px;
  background: var(--lmc-glow);
  box-shadow: 0 0 9px 2px var(--lmc-glow);
  transition: background .35s, box-shadow .35s;
}
.lmc-cutline {
  display: flex;
  justify-content: space-around;
  padding: 0 8px;
  margin-top: 7px;
  font-family: var(--lmc-mono);
  font-size: 9.5px;
  color: var(--lm-text-dim);
}
.lmc-cutline i {
  font-style: normal;
  position: relative;
}
.lmc-cutline i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 1px;
  height: 6px;
  background: var(--lm-text-dim);
}

/* Kelvin slider */
.lmc-kelvin {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lmc-kelvin label {
  font-family: var(--lmc-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--lm-text-muted);
  text-transform: uppercase;
}
.lmc-kelvin input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #FFA757, #FFD3A8, #FFF1E2, #E8EEFF, #B8CFFF);
  outline-offset: 4px;
}
.lmc-kelvin input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lm-text);
  border: 3px solid var(--lm-bg-dark);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0,0,0,.4);
}
.lmc-kelvin input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lm-text);
  border: 3px solid var(--lm-bg-dark);
  cursor: pointer;
}
.lmc-kelvin-read {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.lmc-kelvin-read b {
  font-family: var(--lmc-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--lm-text);
}
.lmc-kelvin-read a {
  color: var(--lm-accent) !important;
  font-size: 13px;
  font-weight: 600;
}
.lmc-kelvin-hint {
  font-size: 12.5px;
  color: var(--lm-text-muted);
  min-height: 2.6em;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   TASK CARDS (use-case)
   ========================================================================== */
.lmc-tasks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lmc-task {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 22px 20px;
  display: block;
  color: var(--lm-text) !important;
  transition: border-color .15s, transform .15s;
}
.lmc-task:hover {
  border-color: var(--lm-accent) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}
.lmc-task h3 {
  font-family: var(--lm-font) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  color: var(--lm-text) !important;
}
.lmc-task p {
  margin: 0;
  font-size: 13px;
  color: var(--lm-text-muted);
}
.lmc-task-spec {
  display: block;
  margin-top: 12px;
  font-family: var(--lmc-mono);
  font-size: 11.5px;
  color: var(--lm-accent);
}

/* ==========================================================================
   CATALOG: filters + product grid
   ========================================================================== */
.lmc-catalog {
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: 24px;
  align-items: start;
}

/* Filters sidebar */
.lmc-filters {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.lmc-fgroup {
  padding: 14px 0;
  border-bottom: 1px solid var(--lm-border);
}
.lmc-fgroup:first-of-type { padding-top: 0; }
.lmc-fgroup:last-of-type { border-bottom: 0; padding-bottom: 0; }
.lmc-fgroup h4 {
  font-family: var(--lmc-mono) !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  color: var(--lm-text-muted) !important;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}
.lmc-fopt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--lm-text-3);
}
.lmc-fopt input[type="checkbox"] {
  accent-color: var(--lm-accent);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.lmc-fopt-n {
  margin-left: auto;
  font-family: var(--lmc-mono);
  font-size: 11px;
  color: var(--lm-text-dim);
}
.lmc-filter-apply {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  background: var(--lm-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.lmc-filter-apply:hover {
  background: var(--lm-accent-hover, #0e8a42);
}
.lmc-filter-reset {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--lm-text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lmc-filter-reset:hover {
  color: var(--lm-text-3);
}

/* Toolbar */
.lmc-toolbar {
  margin-bottom: 16px;
}
.lmc-toolbar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lmc-toolbar-count {
  font-size: 13px;
  color: var(--lm-text-muted);
  white-space: nowrap;
}
.lmc-toolbar-count b {
  font-family: var(--lmc-mono);
  color: var(--lm-text-3);
}
.lmc-sorts {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lmc-sorts span {
  font-size: 12.5px;
  color: var(--lm-text-dim);
  margin-right: 4px;
  white-space: nowrap;
}
.lmc-sort-btn {
  font-family: var(--lm-font);
  font-size: 12.5px;
  padding: 5px 10px;
  border: 1px solid var(--lm-border-3);
  background: var(--lm-bg-card);
  border-radius: var(--lm-radius);
  color: var(--lm-text-muted);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.lmc-sort-btn:hover {
  border-color: var(--lm-text-dim);
  color: var(--lm-text-3);
}
.lmc-sort-btn.is-active {
  background: var(--lm-accent);
  color: #FFFFFF;
  border-color: var(--lm-accent);
  font-weight: 600;
}
/* View toggle */
.lmc-view-toggle {
  display: flex;
  gap: 4px;
}
.lmc-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--lm-border-3);
  background: var(--lm-bg-card);
  border-radius: var(--lm-radius);
  cursor: pointer;
  color: var(--lm-text-muted);
  transition: background .15s, color .15s, border-color .15s;
}
.lmc-view-btn:hover { border-color: var(--lm-text-dim); color: var(--lm-text-3); }
.lmc-view-btn.is-active {
  background: var(--lm-accent);
  color: #FFFFFF;
  border-color: var(--lm-accent);
}
/* Per page */
.lmc-per-page {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lmc-pp-btn {
  font-family: var(--lm-font);
  font-size: 12.5px;
  padding: 5px 10px;
  border: 1px solid var(--lm-border-3);
  background: var(--lm-bg-card);
  border-radius: var(--lm-radius);
  color: var(--lm-text-muted);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.lmc-pp-btn:hover { border-color: var(--lm-text-dim); color: var(--lm-text-3); }
.lmc-pp-btn.is-active {
  background: var(--lm-accent);
  color: #FFFFFF;
  border-color: var(--lm-accent);
  font-weight: 600;
}

/* Product grid */
.lmc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* View: list (1 column, horizontal cards) */
.lmc-view-list {
  grid-template-columns: 1fr !important;
}
.lmc-view-list .lmc-card {
  flex-direction: row;
}
.lmc-view-list .lmc-card-vis {
  width: 180px;
  min-width: 180px;
  height: auto;
  min-height: 140px;
  aspect-ratio: auto;
}
.lmc-view-list .lmc-card-body {
  flex: 1;
  padding: 16px 20px;
}

/* View: table (compact rows) */
.lmc-view-table {
  grid-template-columns: 1fr !important;
  gap: 4px;
}
.lmc-view-table .lmc-card {
  flex-direction: row;
  align-items: center;
  border-radius: 6px;
}
.lmc-view-table .lmc-card-vis {
  width: 60px;
  min-width: 60px;
  height: 60px;
  aspect-ratio: auto;
}
.lmc-view-table .lmc-card-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
}
.lmc-view-table .lmc-card-body h3 {
  font-size: 14px;
  flex: 1;
  margin: 0;
}
.lmc-view-table .lmc-params,
.lmc-view-table .lmc-stock,
.lmc-view-table .lmc-rating,
.lmc-view-table .lmc-badges {
  display: none;
}
.lmc-view-table .lmc-price-row {
  margin: 0;
  white-space: nowrap;
}
.lmc-view-table .lmc-card-cta {
  margin: 0;
}
.lmc-view-table .lmc-card-cta .lmc-btn-ghost {
  display: none;
}

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */
.lmc-card {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.lmc-card:hover {
  border-color: rgba(0, 156, 75, 0.3);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

/* Card visualization */
.lmc-card-vis {
  aspect-ratio: 1 / 1;
  background: var(--lm-bg-input);
  position: relative;
  overflow: hidden;
}
.lmc-tape {
  height: 16px;
  flex: 1;
  border-radius: 2px;
  background: rgba(0, 0, 0, .1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6px;
}
.lmc-tape i {
  width: 7px;
  height: 7px;
  border-radius: 1px;
}

/* Badges container */
.lmc-badges {
  position: absolute;
  top: 10px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.lmc-badge {
  font-family: var(--lmc-mono);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .06);
  color: var(--lm-text-muted);
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}
.lmc-badge-sale {
  background: #E53935;
  color: #FFFFFF;
}
.lmc-badge-hit {
  background: var(--lm-accent);
  color: #FFFFFF;
}

/* Card body */
.lmc-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lmc-sku {
  font-family: var(--lmc-mono);
  font-size: 11px;
  color: var(--lm-text-dim);
  letter-spacing: .02em;
}
.lmc-card h3 {
  font-family: var(--lm-font) !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
  margin: 6px 0 10px !important;
  font-weight: 600 !important;
  color: var(--lm-text) !important;
}
.lmc-card h3 a {
  color: var(--lm-text) !important;
}
.lmc-card h3 a:hover {
  color: var(--lm-accent) !important;
}

/* Rating */
.lmc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--lm-text-muted);
  margin-bottom: 8px;
}
.lmc-stars {
  color: var(--lm-accent);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Attribute pills */
.lmc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.lmc-pill {
  font-size: 11.5px;
  padding: 3px 8px;
  background: var(--lm-bg-input);
  border-radius: 3px;
  color: var(--lm-text-4);
  line-height: 1.3;
}
.lmc-pill b {
  font-weight: 500;
  color: var(--lm-text-muted);
}

/* Params list */
.lmc-params {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 12.5px;
  color: var(--lm-text-muted);
}
.lmc-params li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 3px 0;
  border-bottom: 1px dotted var(--lm-border);
}
.lmc-params b {
  font-family: var(--lmc-mono);
  font-weight: 500;
  color: var(--lm-text-3);
}

/* Stock */
.lmc-stock {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  margin-bottom: 10px;
  color: var(--lm-text-3);
}
.lmc-stock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lmc-stock);
  flex: none;
}
.lmc-stock b {
  font-family: var(--lmc-mono);
  font-weight: 500;
}
.lmc-stock-low { color: var(--lmc-low); }
.lmc-stock-low i { background: var(--lmc-low); }

/* Price */
.lmc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.lmc-price {
  font-family: var(--lmc-mono);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--lm-accent);
}
.lmc-price-old {
  font-family: var(--lmc-mono);
  font-size: 13px;
  color: var(--lm-text-dim);
  text-decoration: line-through;
}
.lmc-price-unit {
  font-size: 12px;
  color: var(--lm-text-muted);
}
.lmc-price-note {
  font-size: 11.5px;
  color: var(--lm-text-dim);
}

/* Tiers (expandable) */
.lmc-tiers {
  margin-top: 10px;
  border-top: 1px solid var(--lm-border);
  padding-top: 9px;
}
.lmc-tiers summary {
  font-size: 12px;
  color: var(--lm-accent);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lmc-tiers summary::-webkit-details-marker { display: none; }
.lmc-tiers summary::before {
  content: "+";
  font-family: var(--lmc-mono);
  font-weight: 700;
}
.lmc-tiers[open] summary::before { content: "–"; }
.lmc-tiers table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 12px;
  color: var(--lm-text-3);
}
.lmc-tiers td {
  padding: 4px 0;
  border-bottom: 1px dotted var(--lm-border);
}
.lmc-tiers td:last-child {
  text-align: right;
  font-family: var(--lmc-mono);
  font-weight: 500;
  color: var(--lm-text);
}

/* Card CTA */
.lmc-card-cta {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

/* ==========================================================================
   BUTTONS (category page)
   ========================================================================== */
.lmc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lm-font);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--lm-radius);
  border: 1.5px solid var(--lm-accent);
  background: var(--lm-accent);
  color: #FFFFFF !important;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none !important;
}
.lmc-btn-primary:hover {
  background: var(--lm-accent-hover);
  border-color: var(--lm-accent-hover);
  color: #FFFFFF !important;
  text-decoration: none !important;
}
.lmc-card-cta .lmc-btn-primary {
  flex: 1;
  padding: 10px 8px;
  font-size: 13px;
}

.lmc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lm-font);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--lm-radius);
  border: 1.5px solid var(--lm-border-3);
  background: transparent;
  color: var(--lm-text-3) !important;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  text-decoration: none !important;
}
.lmc-btn-ghost:hover {
  border-color: var(--lm-accent);
  color: var(--lm-text) !important;
  text-decoration: none !important;
}
.lmc-card-cta .lmc-btn-ghost {
  flex: none;
  padding: 10px 12px;
  font-size: 13px;
}

.lmc-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lm-font);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--lm-radius);
  border: none;
  background: var(--lm-bg-dark);
  color: var(--lm-text) !important;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none !important;
}
.lmc-btn-dark:hover {
  background: var(--lm-bg-body);
  text-decoration: none !important;
}

/* ==========================================================================
   BAND CTA
   ========================================================================== */
.lmc-band {
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
}
.lmc-band h2 {
  font-family: var(--lm-font-head) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin: 0 0 4px !important;
  line-height: 1.25 !important;
}
.lmc-band p {
  color: var(--lm-text-muted);
  margin: 8px 0 0;
  font-size: 14.5px;
  max-width: 52ch;
}
.lmc-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lmc-band .lmc-btn-ghost {
  border-color: var(--lm-border-3);
}

/* ==========================================================================
   TWO-PANEL LAYOUT
   ========================================================================== */
.lmc-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lmc-panel {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 28px 30px;
}
.lmc-panel h3 {
  font-family: var(--lm-font-head) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin-bottom: 4px !important;
  line-height: 1.25 !important;
}
.lmc-panel-desc {
  color: var(--lm-text-muted);
  margin: 6px 0 0;
  font-size: 14px;
}
.lmc-panel-note {
  font-size: 12.5px;
  color: var(--lm-text-dim);
  margin-top: 16px;
}

/* Data table */
.lmc-data {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--lm-text-3);
}
.lmc-data th {
  text-align: left;
  font-family: var(--lmc-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lm-text-dim);
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--lm-border-3);
}
.lmc-data td {
  padding: 10px 0;
  border-bottom: 1px solid var(--lm-border);
}
.lmc-data td:not(:first-child) {
  text-align: right;
  font-family: var(--lmc-mono);
}
.lmc-data tr:last-child td { border-bottom: 0; }
.lmc-data-best td {
  color: var(--lm-accent) !important;
  font-weight: 600;
}

/* Calculator fields */
.lmc-calc-fields {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 18px;
}
.lmc-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 110px;
}
.lmc-field label {
  font-size: 12px;
  color: var(--lm-text-muted);
}
.lmc-field input,
.lmc-field select {
  font-family: var(--lm-font);
  font-size: 14px;
  padding: 10px 12px;
  border: 1.5px solid var(--lm-border-3);
  border-radius: var(--lm-radius);
  background: var(--lm-bg-container);
  color: var(--lm-text);
}

/* Calculator output */
.lmc-calc-out {
  margin-top: 18px;
  background: var(--lm-bg-container);
  border: 1px dashed var(--lm-border-3);
  border-radius: var(--lm-radius);
  padding: 18px 20px;
}
.lmc-calc-out dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  margin: 0;
  font-size: 13.5px;
}
.lmc-calc-out dt { color: var(--lm-text-muted); }
.lmc-calc-out dd {
  margin: 0;
  font-family: var(--lmc-mono);
  font-weight: 500;
  text-align: right;
  color: var(--lm-text);
}
.lmc-hl { color: var(--lm-accent) !important; }
.lmc-calc-out dd.lmc-hl { font-weight: 700; }

/* ==========================================================================
   CROSS-SELL
   ========================================================================== */
.lmc-cross {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lmc-cross a {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 18px 20px;
  color: var(--lm-text) !important;
  display: block;
  transition: border-color .15s;
}
.lmc-cross a:hover {
  border-color: var(--lm-accent) !important;
  text-decoration: none !important;
}
.lmc-cross b {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--lm-text);
}
.lmc-cross span {
  font-size: 12.5px;
  color: var(--lm-text-muted);
}

/* ==========================================================================
   TRUST / E-E-A-T
   ========================================================================== */
.lmc-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lmc-tcard {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 24px 26px;
}
.lmc-tcard h3 {
  font-family: var(--lm-font-head) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin-bottom: 8px !important;
}
.lmc-tcard p {
  margin: 0;
  font-size: 13.5px;
  color: var(--lm-text-muted);
  line-height: 1.55;
}
.lmc-tcard ul {
  margin: 12px 0 0;
  padding-left: 17px;
  font-size: 13.5px;
  color: var(--lm-text-muted);
}
.lmc-tcard li { margin-bottom: 4px; }
.lmc-tcard-note {
  margin-top: 14px !important;
  font-size: 12.5px !important;
  color: var(--lm-text-dim) !important;
}

/* Certificates */
.lmc-certs {
  display: flex;
  gap: 9px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.lmc-cert {
  width: 62px;
  height: 84px;
  border: 1px solid var(--lm-border-3);
  border-radius: 2px;
  background: var(--lm-bg-container);
  display: flex;
  align-items: flex-end;
  padding: 6px;
  font-family: var(--lmc-mono);
  font-size: 9px;
  color: var(--lm-text-dim);
  line-height: 1.2;
}

/* Person */
.lmc-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}
.lmc-ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  flex: none;
}
.lmc-person b {
  display: block;
  font-size: 14.5px;
  color: var(--lm-text);
}
.lmc-person span {
  font-size: 12.5px;
  color: var(--lm-text-muted);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.lmc-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lmc-rev {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}
.lmc-rev blockquote {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lm-text-3);
  font-style: normal;
}
.lmc-rev-who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--lm-border);
}
.lmc-rev-who b {
  display: block;
  font-size: 14px;
  color: var(--lm-text);
}
.lmc-rev-who span {
  font-size: 12.5px;
  color: var(--lm-text-muted);
  display: block;
}
.lmc-rev-bought {
  font-family: var(--lmc-mono);
  font-size: 11px !important;
  color: var(--lm-accent) !important;
  margin-top: 7px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.lmc-faq-section { padding-bottom: 56px; }
.lmc-faq {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  margin-bottom: 8px;
}
.lmc-faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--lm-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.lmc-faq summary::-webkit-details-marker { display: none; }
.lmc-faq summary::after {
  content: "+";
  font-family: var(--lmc-mono);
  font-size: 19px;
  color: var(--lm-accent);
  flex: none;
}
.lmc-faq[open] summary::after { content: "–"; }
.lmc-faq-ans {
  padding: 0 22px 20px;
  color: var(--lm-text-3);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ==========================================================================
   SEO TEXT
   ========================================================================== */
.lmc-seotext {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 34px 38px;
}
.lmc-seotext h2 {
  font-family: var(--lm-font-head) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin-bottom: 14px !important;
}
.lmc-seotext h3 {
  font-family: var(--lm-font-head) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--lm-text) !important;
  margin: 28px 0 10px !important;
}
.lmc-seotext p {
  color: var(--lm-text-3);
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.7;
}
.lmc-seotext ul,
.lmc-seotext ol {
  margin: 0 0 18px;
  padding-left: 24px;
  font-family: var(--lm-font) !important;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lm-text-3);
}
.lmc-seotext ul { list-style: disc; }
.lmc-seotext ol { list-style: decimal; }
.lmc-seotext li {
  margin-bottom: 6px;
  font-family: var(--lm-font) !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  color: var(--lm-text-3) !important;
}
.lmc-seotext li strong,
.lmc-seotext li b {
  font-weight: 600;
  color: var(--lm-text-2);
}
.lmc-seotext table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-family: var(--lm-font) !important;
  font-size: 14px;
  line-height: 1.6;
}
.lmc-seotext th,
.lmc-seotext td {
  font-family: var(--lm-font) !important;
  font-size: 14px !important;
  color: var(--lm-text-3) !important;
  padding: 10px 14px;
  border: 1px solid var(--lm-border-2);
  text-align: left;
  vertical-align: top;
}
.lmc-seotext th {
  font-weight: 600;
  color: var(--lm-text-2) !important;
  background: var(--lm-bg-input);
}
.lmc-seotext strong,
.lmc-seotext b {
  font-weight: 600;
  color: var(--lm-text-2);
}
.lmc-seotext a {
  color: var(--lm-accent);
  text-decoration: none;
}
.lmc-seotext a:hover {
  color: var(--lm-accent-hover);
  text-decoration: underline;
}
.lmc-seotext .lmc-data { margin-bottom: 10px; }

/* ==========================================================================
   PRICE SLIDER (dual range)
   ========================================================================== */
.lmc-price-slider {
  padding-bottom: 14px;
}
.lmc-price-track {
  position: relative;
  height: 28px;
  margin: 8px 0 4px;
}
.lmc-price-input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 28px;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
.lmc-price-input::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--lm-border-3);
  border-radius: 2px;
}
.lmc-price-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lm-accent);
  border: 2px solid #fff;
  margin-top: -7px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.lmc-price-input::-moz-range-track {
  height: 4px;
  background: var(--lm-border-3);
  border-radius: 2px;
  border: none;
}
.lmc-price-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lm-accent);
  border: 2px solid #fff;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.lmc-price-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--lm-text-muted);
  font-family: var(--lmc-mono);
}

/* ==========================================================================
   BENEFITS BAR
   ========================================================================== */
.lmc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lmc-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 16px;
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
}
.lmc-benefit-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.lmc-benefit b {
  display: block;
  font-size: 14.5px;
  color: var(--lm-text-3);
  margin-bottom: 2px;
}
.lmc-benefit span {
  font-size: 13px;
  color: var(--lm-text-muted);
}

/* ==========================================================================
   CTA: НЕ НАШЛИ?
   ========================================================================== */
.lmc-notfound {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 36px;
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  background: var(--lm-bg-card);
  align-items: center;
}
.lmc-notfound-text h2 {
  font-family: var(--lm-font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--lm-text-3);
  margin: 0 0 10px;
}
.lmc-notfound-text p {
  font-size: 15px;
  color: var(--lm-text-muted);
  margin: 0;
  line-height: 1.55;
}
.lmc-notfound-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lmc-notfound-form input {
  font-family: var(--lm-font);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--lm-border-3);
  border-radius: var(--lm-radius);
  background: var(--lm-bg);
  color: var(--lm-text-3);
}
.lmc-notfound-form input:focus {
  outline: none;
  border-color: var(--lm-accent);
}
.lmc-notfound-note {
  font-size: 11.5px;
  color: var(--lm-text-dim);
  text-align: center;
}

/* ==========================================================================
   RELATED CATEGORIES
   ========================================================================== */
.lmc-relcats-title {
  font-family: var(--lm-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--lm-text-3);
  margin: 0 0 20px;
}
.lmc-related-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.lmc-relcat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  background: var(--lm-bg-card);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.lmc-relcat:hover {
  border-color: rgba(0, 156, 75, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.lmc-relcat-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--lm-text-3);
}
.lmc-relcat-count {
  font-size: 13px;
  color: var(--lm-text-muted);
}

/* ==========================================================================
   CATEGORY PAGE — RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .lm-mega { min-width: 700px; }
  .lm-mega-inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .lmc-hero-grid { grid-template-columns: 1fr; }
  .lmc-catalog { grid-template-columns: 1fr; }
  .lmc-filters { position: static; }
  .lmc-grid.lmc-view-grid { grid-template-columns: repeat(3, 1fr); }
  .lmc-tasks, .lmc-cross { grid-template-columns: repeat(2, 1fr); }
  .lmc-trust, .lmc-reviews { grid-template-columns: 1fr; }
  .lmc-two, .lmc-band { grid-template-columns: 1fr; }
  .lmc-band-actions { justify-content: flex-start; }
  .lmc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .lmc-notfound { grid-template-columns: 1fr; gap: 24px; }
  .lmc-toolbar-controls { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .lmc-hero-left { padding: 24px 20px; }
  .lmc-hero h1 { font-size: 30px !important; }
  .lmc-grid.lmc-view-grid { grid-template-columns: repeat(2, 1fr); }
  .lmc-tasks, .lmc-cross { grid-template-columns: 1fr; }
  .lmc-seotext, .lmc-panel { padding: 22px 20px; }
  .lmc-band { padding: 24px 20px; }
  .lmc-calc-fields { flex-direction: column; }
  .lmc-sec-head { flex-direction: column; align-items: flex-start; }
  .lmc-benefits-grid { grid-template-columns: 1fr; }
  .lmc-sorts { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .lmc-grid.lmc-view-grid { grid-template-columns: 1fr; }
  .lmc-view-list .lmc-card { flex-direction: column; }
  .lmc-view-list .lmc-card-vis { width: 100%; min-height: 120px; }
  .lmc-toolbar-controls { gap: 8px; }
  .lmc-sorts span { display: none; }
  .lmc-badges { top: 6px; left: 8px; }
  .lmc-pill { font-size: 10px; padding: 2px 6px; }
}
/* Empty state */
.lmc-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--lm-text-muted, #8A8A86);
}
.lmc-empty p { margin: 0 0 12px; font-size: 17px; }
.lmc-empty .lmc-btn-primary { display: inline-block; margin-top: 16px; }

/* Pagination */
.lmc-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.lmc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--lm-text-muted, #8A8A86);
  background: var(--lm-bg-card, #FFFFFF);
  border: 1px solid var(--lm-border, rgba(0,0,0,0.06));
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lmc-pagination .page-numbers:hover,
.lmc-pagination .page-numbers.current {
  background: var(--lm-accent, #e3b06d);
  color: #100e0c;
  border-color: var(--lm-accent, #009C4B);
}
.lmc-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

/* Card image & hover swap */
.lmc-card-vis a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.lmc-card-vis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lmc-img-main,
.lmc-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .3s ease;
}
.lmc-img-hover {
  opacity: 0;
}
.lmc-card:hover .lmc-img-hover {
  opacity: 1;
}
.lmc-card:hover .lmc-img-main {
  opacity: 0;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE STYLES
   ========================================================================== */

:root {
  --lmp-glow: #FFC28E;
  --lmc-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

/* ---------------------------------------------------------------------------
   1. Content Container
   --------------------------------------------------------------------------- */

.lmp-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--lm-pad);
}

/* ---------------------------------------------------------------------------
   2. Breadcrumbs
   --------------------------------------------------------------------------- */

.lmp-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--lm-text-muted);
  padding: 18px 0 14px;
}

.lmp-crumbs a {
  color: var(--lm-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.lmp-crumbs a:hover {
  color: var(--lm-accent);
}

.lmp-crumbs span.lmp-crumbs-sep {
  margin: 0 6px;
  color: var(--lm-text-dim);
  user-select: none;
}

.lmp-crumbs span.lmp-crumbs-sep::before {
  content: '/';
}

.lmp-crumbs .lmp-crumbs-cur {
  color: var(--lm-text-5);
}

/* ---------------------------------------------------------------------------
   3. Product Layout
   --------------------------------------------------------------------------- */

.lmp-product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 40px;
}

/* ---------------------------------------------------------------------------
   4. Gallery Card
   --------------------------------------------------------------------------- */

.lmp-gallery {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  overflow: hidden;
}

/* ---------------------------------------------------------------------------
   5. Stage Area
   --------------------------------------------------------------------------- */

.lmp-stage {
  position: relative;
  background: var(--lm-bg-dark);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lmp-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------------------------------------------------------------------------
   6. LED Tape Visualization
   --------------------------------------------------------------------------- */

.lmp-tape-vis {
  position: relative;
  width: 85%;
  height: 8px;
  background: rgba(0, 156, 75, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.lmp-tape-vis::before {
  content: '';
  position: absolute;
  inset: -12px -8px;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, rgba(255, 194, 142, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lmp-tape-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lmp-glow);
  box-shadow:
    0 0 4px var(--lmp-glow),
    0 0 10px rgba(255, 194, 142, 0.4),
    0 0 20px rgba(255, 194, 142, 0.15);
  animation: lmp-led-pulse 2.4s ease-in-out infinite alternate;
}

.lmp-tape-dot:nth-child(2n) {
  animation-delay: 0.3s;
}

.lmp-tape-dot:nth-child(3n) {
  animation-delay: 0.7s;
}

@keyframes lmp-led-pulse {
  0%   { opacity: 0.6; box-shadow: 0 0 3px var(--lmp-glow), 0 0 6px rgba(255, 194, 142, 0.3); }
  100% { opacity: 1;   box-shadow: 0 0 6px var(--lmp-glow), 0 0 14px rgba(255, 194, 142, 0.5), 0 0 28px rgba(255, 194, 142, 0.15); }
}

/* ---------------------------------------------------------------------------
   7. Cut Marks
   --------------------------------------------------------------------------- */

.lmp-cutrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px;
  font-family: var(--lmc-mono);
  font-size: 10px;
  color: var(--lm-text-dim);
  letter-spacing: 0.5px;
}

.lmp-cutrow span {
  opacity: 0.7;
}

/* ---------------------------------------------------------------------------
   8. Stage Note
   --------------------------------------------------------------------------- */

.lmp-stage-note {
  font-size: 11px;
  color: var(--lm-text-dim);
  text-align: center;
  padding: 6px 16px 10px;
  line-height: 1.4;
}

/* ---------------------------------------------------------------------------
   9. Thumbnails Grid
   --------------------------------------------------------------------------- */

.lmp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px;
}

/* ---------------------------------------------------------------------------
   10. Thumbnail Button
   --------------------------------------------------------------------------- */

.lmp-thumb {
  position: relative;
  background: var(--lm-bg-dark);
  border: 1.5px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lmp-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lmp-thumb:hover {
  border-color: var(--lm-border-3);
}

.lmp-thumb.active,
.lmp-thumb[aria-pressed="true"] {
  border-color: var(--lm-accent);
}

/* ---------------------------------------------------------------------------
   11. Buybox
   --------------------------------------------------------------------------- */

.lmp-buybox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------------------------------------------------------------------------
   12. Card Block
   --------------------------------------------------------------------------- */

.lmp-card-block {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 20px;
}

/* ---------------------------------------------------------------------------
   13. SKU Row
   --------------------------------------------------------------------------- */

.lmp-sku-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------------------
   14. SKU
   --------------------------------------------------------------------------- */

.lmp-sku {
  font-family: var(--lmc-mono);
  font-size: 12px;
  color: var(--lm-text-muted);
  letter-spacing: 0.5px;
}

/* ---------------------------------------------------------------------------
   15. In Stock Indicator
   --------------------------------------------------------------------------- */

.lmp-instock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--lm-success);
}

.lmp-instock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lm-success);
  flex-shrink: 0;
}

.lmp-instock.low-stock {
  color: #c75a3a;
}

.lmp-instock.low-stock::before {
  background: #c75a3a;
}

/* ---------------------------------------------------------------------------
   16. Product Title
   --------------------------------------------------------------------------- */

.lmp-product h1 {
  font-family: var(--lm-font-head);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lm-text);
  margin-bottom: 12px;
}

/* ---------------------------------------------------------------------------
   17. Rating
   --------------------------------------------------------------------------- */

.lmp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--lm-text-muted);
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------------
   18. Stars
   --------------------------------------------------------------------------- */

.lmp-stars {
  color: var(--lm-accent);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ---------------------------------------------------------------------------
   19. Key Specs Grid
   --------------------------------------------------------------------------- */

.lmp-keyspec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lmp-keyspec dt,
.lmp-keyspec dd {
  padding: 8px 0;
  font-size: 13.5px;
  line-height: 1.4;
  border-bottom: 1px dotted var(--lm-border-3);
}

.lmp-keyspec dt {
  color: var(--lm-text-muted);
}

.lmp-keyspec dd {
  color: var(--lm-text-2);
  text-align: right;
  margin: 0;
}

.lmp-keyspec dt:last-of-type,
.lmp-keyspec dd:last-of-type {
  border-bottom: none;
}

/* ---------------------------------------------------------------------------
   20. Variant Selector Groups
   --------------------------------------------------------------------------- */

.lmp-opt {
  margin-bottom: 16px;
}

.lmp-opt-label {
  font-size: 12.5px;
  color: var(--lm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

/* ---------------------------------------------------------------------------
   21. Temperature Color Swatches
   --------------------------------------------------------------------------- */

.lmp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ---------------------------------------------------------------------------
   22. Individual Swatch
   --------------------------------------------------------------------------- */

.lmp-sw {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--lm-bg-dark);
  border: 1.5px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  font-family: var(--lmc-mono);
  font-size: 12.5px;
  color: var(--lm-text-3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  user-select: none;
}

.lmp-sw .lmp-sw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lmp-sw:hover {
  border-color: var(--lm-border-3);
  color: var(--lm-text-2);
}

.lmp-sw[aria-pressed="true"] {
  border-color: var(--lm-accent);
  color: var(--lm-accent);
  background: rgba(0, 156, 75, 0.06);
}

/* ---------------------------------------------------------------------------
   23. Variant Links (IP, Density)
   --------------------------------------------------------------------------- */

.lmp-optline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lmp-optline a,
.lmp-optline button {
  display: inline-block;
  padding: 6px 14px;
  background: var(--lm-bg-dark);
  border: 1.5px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  font-size: 13px;
  color: var(--lm-text-3);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lmp-optline a:hover,
.lmp-optline button:hover {
  border-color: var(--lm-border-3);
  color: var(--lm-text-2);
}

.lmp-optline .cur,
.lmp-optline a.cur,
.lmp-optline button.cur {
  background: var(--lm-accent);
  border-color: var(--lm-accent);
  color: var(--lm-bg-dark);
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   24. Buy Block
   --------------------------------------------------------------------------- */

.lmp-buy {
  background: var(--lm-bg-card);
  border: 1.5px solid var(--lm-border-3);
  border-radius: var(--lm-radius);
  padding: 22px;
}

/* ---------------------------------------------------------------------------
   25. Price Line
   --------------------------------------------------------------------------- */

.lmp-priceline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------------
   26. Current Price
   --------------------------------------------------------------------------- */

.lmp-price-now {
  font-family: var(--lmc-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--lm-accent);
  letter-spacing: -0.5px;
}

/* ---------------------------------------------------------------------------
   27. Price Unit
   --------------------------------------------------------------------------- */

.lmp-price-unit {
  font-size: 14px;
  color: var(--lm-text-muted);
}

/* ---------------------------------------------------------------------------
   28. Old Price
   --------------------------------------------------------------------------- */

.lmp-price-old {
  font-family: var(--lmc-mono);
  font-size: 18px;
  color: var(--lm-text-dim);
  text-decoration: line-through;
}

/* ---------------------------------------------------------------------------
   29. Savings Hint
   --------------------------------------------------------------------------- */

.lmp-savings {
  font-size: 13px;
  color: var(--lm-accent);
  font-weight: 500;
}

/* ---------------------------------------------------------------------------
   30. Quantity Inputs Grid
   --------------------------------------------------------------------------- */

.lmp-qty {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------------
   31. Form Field
   --------------------------------------------------------------------------- */

.lmp-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lmp-field label {
  font-size: 12px;
  color: var(--lm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lmp-field input,
.lmp-field select {
  width: 100%;
  padding: 10px 12px;
  background: var(--lm-bg-input);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  font-family: var(--lmc-mono);
  font-size: 14px;
  color: var(--lm-text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.lmp-field input:focus,
.lmp-field select:focus {
  border-color: var(--lm-accent);
}

.lmp-field input::placeholder {
  color: var(--lm-text-dim);
}

/* ---------------------------------------------------------------------------
   32. Calculation Summary
   --------------------------------------------------------------------------- */

.lmp-summary {
  border: 1px dashed var(--lm-border-3);
  border-radius: var(--lm-radius);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.lmp-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--lm-text-3);
  padding: 4px 0;
}

.lmp-summary-row.total {
  font-size: 16px;
  font-weight: 600;
  color: var(--lm-text);
  padding-top: 8px;
  margin-top: 6px;
  border-top: 1px solid var(--lm-border-2);
}

.lmp-summary-val {
  font-family: var(--lmc-mono);
  color: var(--lm-text-2);
}

.lmp-summary-row.total .lmp-summary-val {
  color: var(--lm-accent);
  font-size: 18px;
}

/* ---------------------------------------------------------------------------
   33. CTA Buttons Grid
   --------------------------------------------------------------------------- */

.lmp-buy-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

/* Button Styles */

.lmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--lm-radius);
  font-family: var(--lm-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  user-select: none;
}

.lmp-btn:active {
  transform: scale(0.98);
}

.lmp-btn-primary {
  background: var(--lm-accent);
  color: var(--lm-bg-dark);
  font-weight: 700;
}

.lmp-btn-primary:hover {
  background: var(--lm-accent-hover);
}

.lmp-btn-ghost {
  background: transparent;
  color: var(--lm-text-2);
  border: 1.5px solid var(--lm-border-3);
}

.lmp-btn-ghost:hover {
  border-color: var(--lm-text-muted);
  color: var(--lm-text);
}

.lmp-btn-dark {
  background: var(--lm-bg-dark);
  color: var(--lm-text-2);
  border: 1px solid var(--lm-border-2);
}

.lmp-btn-dark:hover {
  background: var(--lm-bg-body);
  color: var(--lm-text);
}

.lmp-btn-lg {
  padding: 15px 28px;
  font-size: 15px;
}

/* ---------------------------------------------------------------------------
   34. Tier Price Indicator
   --------------------------------------------------------------------------- */

.lmp-tierbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.lmp-tierbar-item {
  padding: 8px 10px;
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  text-align: center;
  font-size: 12px;
  color: var(--lm-text-muted);
  transition: border-color 0.2s, background 0.2s;
}

.lmp-tierbar-item .lmp-tier-qty {
  font-family: var(--lmc-mono);
  font-size: 11px;
  color: var(--lm-text-dim);
  display: block;
  margin-bottom: 2px;
}

.lmp-tierbar-item .lmp-tier-price {
  font-family: var(--lmc-mono);
  font-weight: 600;
  color: var(--lm-text-3);
}

.lmp-tierbar-item.on {
  border-color: var(--lm-accent);
  background: rgba(0, 156, 75, 0.06);
}

.lmp-tierbar-item.on .lmp-tier-price {
  color: var(--lm-accent);
}

/* ---------------------------------------------------------------------------
   35. Buy Note
   --------------------------------------------------------------------------- */

.lmp-buy-note {
  font-size: 11.5px;
  color: var(--lm-text-dim);
  line-height: 1.45;
  text-align: center;
}

/* ---------------------------------------------------------------------------
   36. Terms Grid
   --------------------------------------------------------------------------- */

.lmp-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lmp-terms dt,
.lmp-terms dd {
  padding: 7px 0;
  font-size: 13px;
  line-height: 1.4;
  border-bottom: 1px dotted var(--lm-border-2);
}

.lmp-terms dt {
  color: var(--lm-text-muted);
}

.lmp-terms dd {
  color: var(--lm-text-2);
  text-align: right;
  margin: 0;
}

.lmp-terms dt:last-of-type,
.lmp-terms dd:last-of-type {
  border-bottom: none;
}

/* ---------------------------------------------------------------------------
   37. Sticky Anchor Navigation
   --------------------------------------------------------------------------- */

.lmp-anchors {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lm-bg-body);
  border-bottom: 1px solid var(--lm-border);
  padding: 0;
  margin-top: 10px;
}

.lmp-anchors-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--lm-pad);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lmp-anchors-inner::-webkit-scrollbar {
  display: none;
}

.lmp-anchors a {
  display: block;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--lm-text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.lmp-anchors a:hover {
  color: var(--lm-text-2);
}

.lmp-anchors a.active {
  color: var(--lm-accent);
  border-bottom-color: var(--lm-accent);
}

/* ---------------------------------------------------------------------------
   58. Section Wrapper
   --------------------------------------------------------------------------- */

.lmp-section {
  padding: 48px 0;
}

/* ---------------------------------------------------------------------------
   59. Section Header
   --------------------------------------------------------------------------- */

.lmp-sec-head {
  margin-bottom: 28px;
}

.lmp-sec-head h2 {
  font-family: var(--lm-font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--lm-text);
  line-height: 1.3;
}

.lmp-sec-head p {
  font-size: 14px;
  color: var(--lm-text-muted);
  margin-top: 6px;
}

/* ---------------------------------------------------------------------------
   38. Kit Builder Block
   --------------------------------------------------------------------------- */

.lmp-kit {
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 24px;
}

.lmp-kit.lmp-kit-fixed {
  border-color: var(--lm-accent);
  border-width: 1.5px;
}

.lmp-kit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.lmp-kit-head h3 {
  font-family: var(--lm-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--lm-text);
}

/* ---------------------------------------------------------------------------
   39. Kit Grid
   --------------------------------------------------------------------------- */

.lmp-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ---------------------------------------------------------------------------
   40. Kit Item
   --------------------------------------------------------------------------- */

.lmp-kit-item {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lmp-kit-item-img {
  aspect-ratio: 1;
  background: var(--lm-bg-dark);
  border-radius: calc(var(--lm-radius) - 2px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lmp-kit-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lmp-kit-item-name {
  font-size: 13px;
  color: var(--lm-text-2);
  line-height: 1.35;
}

.lmp-kit-item-sku {
  font-family: var(--lmc-mono);
  font-size: 11px;
  color: var(--lm-text-dim);
}

.lmp-kit-item-price {
  font-family: var(--lmc-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--lm-text);
}

.lmp-kit-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lmp-kit-item-qty input {
  width: 52px;
  padding: 5px 8px;
  background: var(--lm-bg-input);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  font-family: var(--lmc-mono);
  font-size: 13px;
  color: var(--lm-text);
  text-align: center;
  outline: none;
}

.lmp-kit-item-qty input:focus {
  border-color: var(--lm-accent);
}

/* ---------------------------------------------------------------------------
   41. Kit Footer
   --------------------------------------------------------------------------- */

.lmp-kit-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--lm-border-2);
  gap: 16px;
}

.lmp-kit-total {
  font-size: 14px;
  color: var(--lm-text-muted);
}

.lmp-kit-total strong {
  font-family: var(--lmc-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--lm-accent);
  margin-left: 8px;
}

.lmp-kit-actions {
  display: flex;
  gap: 10px;
}

/* ---------------------------------------------------------------------------
   42. Specifications Card
   --------------------------------------------------------------------------- */

.lmp-specs {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 28px;
}

/* ---------------------------------------------------------------------------
   43. Specifications Grid
   --------------------------------------------------------------------------- */

.lmp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

/* ---------------------------------------------------------------------------
   44. Spec Group Heading
   --------------------------------------------------------------------------- */

.lmp-specs h3 {
  font-family: var(--lm-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--lm-text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lm-border-2);
}

/* ---------------------------------------------------------------------------
   45. Spec Pairs
   --------------------------------------------------------------------------- */

.lmp-specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lmp-specs dt,
.lmp-specs dd {
  padding: 7px 0;
  font-size: 13.5px;
  line-height: 1.4;
  border-bottom: 1px dotted var(--lm-border-2);
}

.lmp-specs dt {
  color: var(--lm-text-muted);
}

.lmp-specs dd {
  color: var(--lm-text-2);
  text-align: right;
  margin: 0;
}

.lmp-specs dt:last-of-type,
.lmp-specs dd:last-of-type {
  border-bottom: none;
}

/* ---------------------------------------------------------------------------
   46. SEO Text / Description Block
   --------------------------------------------------------------------------- */

.lmp-seotext {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 28px;
}

.lmp-seotext h2,
.lmp-seotext h3 {
  font-family: var(--lm-font-head);
  font-weight: 700;
  color: var(--lm-text);
  margin-bottom: 12px;
}

.lmp-seotext h2 {
  font-size: 24px;
}

.lmp-seotext h3 {
  font-size: 18px;
  margin-top: 24px;
}

.lmp-seotext p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lm-text-3);
  margin-bottom: 14px;
}

.lmp-seotext ul,
.lmp-seotext ol {
  margin: 12px 0;
  padding-left: 20px;
  color: var(--lm-text-3);
  font-size: 14.5px;
  line-height: 1.7;
}

.lmp-seotext li {
  margin-bottom: 6px;
}

.lmp-seotext a {
  color: var(--lm-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.lmp-seotext a:hover {
  color: var(--lm-accent-hover);
}

.lmp-seotext img {
  max-width: 100%;
  border-radius: var(--lm-radius);
  margin: 16px 0;
}

/* ---------------------------------------------------------------------------
   47. Documents Grid
   --------------------------------------------------------------------------- */

.lmp-docs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ---------------------------------------------------------------------------
   48. Document Card
   --------------------------------------------------------------------------- */

.lmp-doc {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.lmp-doc:hover {
  border-color: var(--lm-border-3);
  transform: translateY(-2px);
}

.lmp-doc-eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--lm-text-dim);
}

.lmp-doc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lm-text-2);
  line-height: 1.35;
}

.lmp-doc-size {
  font-family: var(--lmc-mono);
  font-size: 11.5px;
  color: var(--lm-text-dim);
  margin-top: auto;
}

.lmp-doc-icon {
  width: 32px;
  height: 32px;
  color: var(--lm-accent);
  opacity: 0.6;
}

/* ---------------------------------------------------------------------------
   49. Trust Cards Grid
   --------------------------------------------------------------------------- */

.lmp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---------------------------------------------------------------------------
   50. Trust Card
   --------------------------------------------------------------------------- */

.lmp-tcard {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 22px 20px;
  text-align: center;
}

.lmp-tcard-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--lm-accent);
  opacity: 0.7;
}

.lmp-tcard h4 {
  font-family: var(--lm-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--lm-text);
  margin-bottom: 6px;
}

.lmp-tcard p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--lm-text-muted);
}

/* ---------------------------------------------------------------------------
   51. Alternatives Grid
   --------------------------------------------------------------------------- */

.lmp-alts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ---------------------------------------------------------------------------
   52. Alternative Product Card
   --------------------------------------------------------------------------- */

.lmp-alt {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.lmp-alt:hover {
  border-color: var(--lm-border-3);
  transform: translateY(-2px);
}

.lmp-alt-img {
  aspect-ratio: 4 / 3;
  background: var(--lm-bg-dark);
  border-radius: calc(var(--lm-radius) - 2px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lmp-alt-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lmp-alt-sku {
  font-family: var(--lmc-mono);
  font-size: 11px;
  color: var(--lm-text-dim);
  letter-spacing: 0.3px;
}

.lmp-alt-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--lm-text-2);
  line-height: 1.35;
}

.lmp-alt-diff {
  font-size: 12.5px;
  color: var(--lm-text-muted);
  line-height: 1.4;
}

.lmp-alt-price {
  font-family: var(--lmc-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--lm-text);
  margin-top: auto;
}

.lmp-alt-price .lmp-alt-price-unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--lm-text-dim);
}

/* ---------------------------------------------------------------------------
   53. Reviews Grid
   --------------------------------------------------------------------------- */

.lmp-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---------------------------------------------------------------------------
   54. Review Card
   --------------------------------------------------------------------------- */

.lmp-rev {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lmp-rev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lmp-rev-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--lm-text-2);
}

.lmp-rev-date {
  font-size: 12px;
  color: var(--lm-text-dim);
}

.lmp-rev-stars {
  color: var(--lm-accent);
  font-size: 13px;
  letter-spacing: 1.5px;
}

.lmp-rev-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lm-text-3);
}

.lmp-rev-pros {
  font-size: 13px;
  color: var(--lm-success);
  line-height: 1.4;
}

.lmp-rev-cons {
  font-size: 13px;
  color: #c75a3a;
  line-height: 1.4;
}

/* ---------------------------------------------------------------------------
   55. FAQ Accordion
   --------------------------------------------------------------------------- */

.lmp-faq {
  background: var(--lm-bg-card);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  overflow: hidden;
}

.lmp-faq details {
  border-bottom: 1px solid var(--lm-border);
}

.lmp-faq details:last-child {
  border-bottom: none;
}

.lmp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lm-text-2);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color 0.2s;
}

.lmp-faq summary::-webkit-details-marker {
  display: none;
}

.lmp-faq summary::after {
  content: '+';
  font-family: var(--lmc-mono);
  font-size: 20px;
  font-weight: 300;
  color: var(--lm-text-dim);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.25s, color 0.2s;
}

.lmp-faq details[open] > summary::after {
  content: '\2212';
  color: var(--lm-accent);
}

.lmp-faq summary:hover {
  color: var(--lm-text);
}

.lmp-faq details[open] > summary {
  color: var(--lm-text);
}

.lmp-faq-body {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--lm-text-3);
}

.lmp-faq-body p {
  margin-bottom: 8px;
}

.lmp-faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------------------------
   56. CTA Band
   --------------------------------------------------------------------------- */

.lmp-band {
  background: var(--lm-bg-dark);
  border: 1px solid var(--lm-border-2);
  border-radius: var(--lm-radius);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lmp-band-text {
  flex: 1;
}

.lmp-band-text h3 {
  font-family: var(--lm-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--lm-text);
  margin-bottom: 6px;
}

.lmp-band-text p {
  font-size: 14px;
  color: var(--lm-text-muted);
  line-height: 1.5;
}

.lmp-band-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
   57. Mobile Sticky Bottom Bar
   --------------------------------------------------------------------------- */

.lmp-stickybar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--lm-bg-card);
  border-top: 1px solid var(--lm-border-2);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.lmp-stickybar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
}

.lmp-stickybar-price {
  font-family: var(--lmc-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--lm-accent);
}

.lmp-stickybar-unit {
  font-size: 12px;
  color: var(--lm-text-muted);
  display: block;
}

.lmp-stickybar-actions {
  display: flex;
  gap: 8px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---------------------------------------------------------------------------
   Tablet / Small Desktop (max-width: 1080px)
   --------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .lmp-product {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lmp-kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lmp-docs {
    grid-template-columns: repeat(2, 1fr);
  }

  .lmp-alts {
    grid-template-columns: repeat(2, 1fr);
  }

  .lmp-specs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lmp-band {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .lmp-band-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------------
   Mobile (max-width: 760px)
   --------------------------------------------------------------------------- */

@media (max-width: 760px) {
  body.lmp-has-stickybar {
    padding-bottom: 80px;
  }

  .lmp-stickybar {
    display: block;
  }

  .lmp-product {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lmp-product h1 {
    font-size: 23px;
  }

  .lmp-price-now {
    font-size: 28px;
  }

  .lmp-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
  }

  .lmp-qty {
    grid-template-columns: 1fr;
  }

  .lmp-buy-cta {
    grid-template-columns: 1fr;
  }

  .lmp-kit-grid {
    grid-template-columns: 1fr;
  }

  .lmp-kit-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .lmp-kit-actions {
    flex-direction: column;
  }

  .lmp-docs {
    grid-template-columns: 1fr;
  }

  .lmp-alts {
    grid-template-columns: 1fr;
  }

  .lmp-trust {
    grid-template-columns: 1fr;
  }

  .lmp-reviews {
    grid-template-columns: 1fr;
  }

  .lmp-specs-grid {
    grid-template-columns: 1fr;
  }

  .lmp-tierbar {
    grid-template-columns: 1fr;
  }

  .lmp-terms {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lmp-terms dd {
    text-align: left;
    padding-top: 0;
  }

  .lmp-keyspec {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lmp-keyspec dd {
    text-align: left;
    padding-top: 0;
  }

  .lmp-card-block {
    padding: 16px;
  }

  .lmp-buy {
    padding: 18px;
  }

  .lmp-specs {
    padding: 20px;
  }

  .lmp-seotext {
    padding: 20px;
  }

  .lmp-section {
    padding: 32px 0;
  }

  .lmp-sec-head h2 {
    font-size: 22px;
  }

  .lmp-anchors a {
    padding: 12px 14px;
    font-size: 13px;
  }

  .lmp-band {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }

  .lmp-band-actions {
    width: 100%;
    flex-direction: column;
  }

  .lmp-faq summary {
    padding: 14px 16px;
    font-size: 14px;
  }

  .lmp-faq-body {
    padding: 0 16px 14px;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   LUMEON.BY — CATEGORY PAGE INTERACTIVE VISUALIZERS
   5 visualizer modules for hero right-column blocks
   Prefix: lmc-  |  Dark theme  |  Design system tokens used throughout
   ========================================================================== */


/* ==========================================================================
   0. SHARED FOUNDATIONS
   Common styles across all 5 visualizer wrappers, scenes, buttons, and inputs
   ========================================================================== */

/* ---------------------------------------------------------------------------
   0a. Visualizer Wrappers
   Each wraps one complete visualizer inside .lmc-hero-right
   --------------------------------------------------------------------------- */

.lmc-beam-wrap,
.lmc-load-wrap,
.lmc-neon-wrap,
.lmc-profile-wrap,
.lmc-lux-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* ---------------------------------------------------------------------------
   0b. Scene Containers
   Dark rounded viewport for visual demonstrations
   --------------------------------------------------------------------------- */

[class*="-scene"] {
  background: #141210;
  border: 1px solid var(--lm-border, rgba(0,0,0,0.06));
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.lmc-lux-scene {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------------------
   0c. Pill-Shaped Toggle Buttons (Neon colors, Profile types)
   --------------------------------------------------------------------------- */

.lmc-neon-btn,
.lmc-prof-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--lm-border, rgba(0,0,0,0.06));
  background: var(--lm-bg-card, #FFFFFF);
  color: var(--lm-text-muted, #8A8A86);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  user-select: none;
}

.lmc-neon-btn:hover,
.lmc-prof-btn:hover {
  border-color: var(--lm-text-muted, #8A8A86);
  color: var(--lm-text, #2B2A29);
}

.lmc-neon-btn.is-active,
.lmc-prof-btn.is-active {
  border-color: var(--lm-accent, #009C4B);
  color: var(--lm-accent, #009C4B);
  background: rgba(0, 156, 75, 0.06);
  box-shadow: 0 0 8px rgba(0, 156, 75, 0.12);
}

/* ---------------------------------------------------------------------------
   0d. Range Slider — Shared base for beam, lux, and kelvin-like controls
   --------------------------------------------------------------------------- */

.lmc-beam-ctrl input[type="range"],
.lmc-lux-ctrl input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--lm-border, #2a2520);
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}

.lmc-beam-ctrl input[type="range"]::-webkit-slider-thumb,
.lmc-lux-ctrl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lm-accent, #e3b06d);
  border: 2px solid var(--lm-bg-card, #1b1815);
  box-shadow: 0 0 6px rgba(0, 156, 75, 0.35);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

.lmc-beam-ctrl input[type="range"]::-moz-range-thumb,
.lmc-lux-ctrl input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lm-accent, #e3b06d);
  border: 2px solid var(--lm-bg-card, #1b1815);
  box-shadow: 0 0 6px rgba(0, 156, 75, 0.35);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

.lmc-beam-ctrl input[type="range"]:hover::-webkit-slider-thumb,
.lmc-lux-ctrl input[type="range"]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 10px rgba(0, 156, 75, 0.5);
  transform: scale(1.1);
}

.lmc-beam-ctrl input[type="range"]:hover::-moz-range-thumb,
.lmc-lux-ctrl input[type="range"]:hover::-moz-range-thumb {
  box-shadow: 0 0 10px rgba(0, 156, 75, 0.5);
  transform: scale(1.1);
}

/* Slider track for Firefox */
.lmc-beam-ctrl input[type="range"]::-moz-range-track,
.lmc-lux-ctrl input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: var(--lm-border, #2a2520);
  border: none;
}

/* ---------------------------------------------------------------------------
   0e. Control Labels
   --------------------------------------------------------------------------- */

.lmc-beam-ctrl label,
.lmc-lux-ctrl label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--lm-text-muted, #8A8A86);
  margin-bottom: 8px;
}

/* ---------------------------------------------------------------------------
   0f. Readout Displays (beam-read, lux-read)
   --------------------------------------------------------------------------- */

.lmc-beam-read,
.lmc-lux-read {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.lmc-beam-read b,
.lmc-lux-read b {
  font-family: 'Prata', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--lm-accent, #009C4B);
  line-height: 1;
}

.lmc-beam-read span,
.lmc-lux-read span {
  font-size: 13px;
  color: var(--lm-text-muted, #8A8A86);
  line-height: 1.4;
}

/* ---------------------------------------------------------------------------
   0g. Form Fields — shared by Load Meter and any future inputs
   --------------------------------------------------------------------------- */

.lmc-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lmc-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lm-text-muted, #8A8A86);
}

.lmc-field input,
.lmc-field select {
  width: 100%;
  padding: 8px 12px;
  background: var(--lm-bg-card, #FFFFFF);
  border: 1px solid var(--lm-border, rgba(0,0,0,0.06));
  color: var(--lm-text, #2B2A29);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.lmc-field input:focus,
.lmc-field select:focus {
  border-color: var(--lm-accent, #009C4B);
  box-shadow: 0 0 0 2px rgba(0, 156, 75, 0.12);
}

.lmc-field input::placeholder {
  color: var(--lm-text-muted, #8A8A86);
  opacity: 0.6;
}

/* Select dropdown arrow (custom) */
.lmc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A86' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 32px;
}


/* ==========================================================================
   1. BEAM ANGLE VISUALIZER (LED Modules)
   Shows a light module with an adjustable cone of light
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1a. Scene
   --------------------------------------------------------------------------- */

/* Beam scene layout handled by bottom section */

/* ---------------------------------------------------------------------------
   1b. LED Module Element — small glowing bar at top
   --------------------------------------------------------------------------- */

/* Beam module is now rendered as SVG rect — see inline SVG in PHP */

/* ---------------------------------------------------------------------------
   1c. Light Cone — trapezoid expanding downward
   Controlled by --beam-angle (e.g. 30, 60, 120)
   JS sets --beam-angle on #lmc-cone; CSS converts to clip-path widths
   --------------------------------------------------------------------------- */

/* Beam cone is now rendered as SVG path — see inline SVG in PHP */

/* ---------------------------------------------------------------------------
   1d. Illuminated Surface — horizontal line at bottom of scene
   --------------------------------------------------------------------------- */

/* Beam surface is now rendered as SVG element — see inline SVG in PHP */

/* ---------------------------------------------------------------------------
   1e. Controls
   --------------------------------------------------------------------------- */

.lmc-beam-ctrl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Gold gradient track for beam slider (narrow to wide concept) */
.lmc-beam-ctrl input[type="range"] {
  background: linear-gradient(
    90deg,
    var(--lm-border, #2a2520) 0%,
    rgba(0, 156, 75, 0.35) 100%
  );
}


/* ==========================================================================
   2. LOAD METER (Power Supplies)
   Calculator showing PSU load percentage with color-coded bar
   ========================================================================== */

/* ---------------------------------------------------------------------------
   2a. Wrapper
   --------------------------------------------------------------------------- */

.lmc-load-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------------------------------------------------------------------------
   2b. Load Bar Container
   --------------------------------------------------------------------------- */

/* Load bar container — see bottom section for final definitions */

/* ---------------------------------------------------------------------------
   2c. Load Bar Fill
   Controlled by --load-pct (0-100). Color changes green -> yellow -> red
   --------------------------------------------------------------------------- */

.lmc-load-bar {
  --load-pct: 0;
  width: calc(var(--load-pct, 0) * 1%);
  height: 32px;
  border-radius: 7px;
  min-width: 0;
  max-width: 100%;

  /* Default: green. JS should also set --load-color or use the gradient below */
  background: linear-gradient(
    90deg,
    #4CAF50 0%,
    #66BB6A 100%
  );

  transition: width 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Color states via modifier classes (set by JS) */
.lmc-load-bar[data-zone="safe"] {
  background: linear-gradient(90deg, #388E3C, #4CAF50);
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.25);
}

.lmc-load-bar[data-zone="warn"] {
  background: linear-gradient(90deg, #F9A825, #FFC107);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.25);
}

.lmc-load-bar[data-zone="danger"] {
  background: linear-gradient(90deg, #E53935, #F44336);
  box-shadow: 0 0 12px rgba(244, 67, 54, 0.3);
}

/* Subtle shine on bar fill */
.lmc-load-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  border-radius: 7px 7px 0 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
   2d. Percentage Marks
   --------------------------------------------------------------------------- */

.lmc-load-marks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 2px 0;
}

.lmc-load-marks i {
  font-style: normal;
  font-size: 11px;
  color: var(--lm-text-muted, #8A8A86);
  opacity: 0.7;
  line-height: 1;
}

/* ---------------------------------------------------------------------------
   2e. Input Fields Row
   --------------------------------------------------------------------------- */

.lmc-load-fields {
  display: flex;
  gap: 12px;
}

.lmc-load-fields .lmc-field {
  flex: 1;
  min-width: 0;
}

/* Number input — hide spinners for cleaner look */
.lmc-load-fields .lmc-field input[type="number"]::-webkit-inner-spin-button,
.lmc-load-fields .lmc-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lmc-load-fields .lmc-field input[type="number"] {
  -moz-appearance: textfield;
}

/* ---------------------------------------------------------------------------
   2f. Output / PSU Recommendation
   --------------------------------------------------------------------------- */

.lmc-load-out {
  text-align: center;
  padding: 14px 16px;
  background: rgba(0, 156, 75, 0.04);
  border: 1px dashed var(--lm-border, #2a2520);
  border-radius: 8px;
}

.lmc-load-out span {
  font-size: 13px;
  color: var(--lm-text-muted, #8A8A86);
}

.lmc-load-out b {
  font-family: 'Prata', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--lm-accent, #009C4B);
  margin-left: 6px;
}


/* ==========================================================================
   3. NEON GLOW VISUALIZER (Neon Flex)
   SVG neon tube with switchable glow colors
   ========================================================================== */

/* Neon scene layout handled by bottom section */

/* ---------------------------------------------------------------------------
   3b. SVG Canvas
   --------------------------------------------------------------------------- */

/* Neon SVG — inline in PHP, no external sizing needed */

/* ---------------------------------------------------------------------------
   3c. Neon Path — thick glowing stroke
   Color controlled by --neon-color custom property
   --------------------------------------------------------------------------- */

/* Neon paths are now 4-layer glow via SVG filters — see inline SVG in PHP */

/* ---------------------------------------------------------------------------
   3d. Color Selector Buttons
   --------------------------------------------------------------------------- */

.lmc-neon-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* Colored dot before each button label */
.lmc-neon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 28px;
}

.lmc-neon-btn::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--btn-color, var(--lm-accent, #e3b06d));
  box-shadow: 0 0 4px var(--btn-color, var(--lm-accent, #e3b06d));
  transition: box-shadow 0.2s;
}

.lmc-neon-btn.is-active::before {
  box-shadow: 0 0 8px var(--btn-color, var(--lm-accent, #e3b06d));
}

/* Color dot values — match the data-c hex in the PHP buttons */
.lmc-neon-btn[data-c="#e3b06d"] { --btn-color: #e3b06d; }
.lmc-neon-btn[data-c="#d0e0ff"] { --btn-color: #d0e0ff; }
.lmc-neon-btn[data-c="#ff4444"] { --btn-color: #ff4444; }
.lmc-neon-btn[data-c="#44dd77"] { --btn-color: #44dd77; }
.lmc-neon-btn[data-c="#4488ff"] { --btn-color: #4488ff; }
.lmc-neon-btn[data-c="#dd55ff"] { --btn-color: #dd55ff; }

/* ---------------------------------------------------------------------------
   3e. Description Label
   --------------------------------------------------------------------------- */

.lmc-neon-label {
  text-align: center;
  font-size: 13px;
  color: var(--lm-text-muted, #8A8A86);
  line-height: 1.5;
  margin: 0;
  min-height: 20px;
  transition: color 0.2s;
}


/* ==========================================================================
   4. PROFILE CROSS-SECTION (Aluminium Profiles)
   SVG showing profile body, diffuser, and light cone, switchable by type
   ========================================================================== */

/* Profile scene layout handled by bottom section */

/* ---------------------------------------------------------------------------
   4b. SVG Canvas
   --------------------------------------------------------------------------- */

/* Profile SVG — inline in PHP, no external sizing needed */

/* ---------------------------------------------------------------------------
   4c. SVG Elements — profile body, diffuser, light cone, dimensions
   --------------------------------------------------------------------------- */

/* Profile body: medium gray aluminium */
.lmc-prof-body {
  fill: #666;
  stroke: #888;
  stroke-width: 1;
  transition: all 0.3s ease;
}

/* Diffuser: lighter, translucent cover */
.lmc-prof-diff {
  fill: rgba(200, 200, 210, 0.25);
  stroke: rgba(200, 200, 210, 0.4);
  stroke-width: 0.75;
  transition: all 0.3s ease;
}

/* Light emission cone / glow */
.lmc-prof-light {
  fill: rgba(0, 156, 75, 0.15);
  stroke: none;
  transition: opacity 0.3s ease, d 0.3s ease;
}

/* Dimension labels */
.lmc-prof-dims {
  fill: var(--lm-text-muted, #998e7e);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  text-anchor: middle;
  transition: opacity 0.3s ease;
}

/* ---------------------------------------------------------------------------
   4d. Type Selector Buttons
   --------------------------------------------------------------------------- */

.lmc-profile-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* ---------------------------------------------------------------------------
   4e. Description Hint
   --------------------------------------------------------------------------- */

.lmc-profile-hint {
  text-align: center;
  font-size: 13px;
  color: var(--lm-text-muted, #8A8A86);
  line-height: 1.5;
  margin: 0;
  min-height: 20px;
  transition: color 0.2s;
}


/* ==========================================================================
   5. LUX SCENE VISUALIZER (Fixtures / Spotlights)
   Side-view room with adjustable illumination intensity
   ========================================================================== */

/* ---------------------------------------------------------------------------
   5a. Scene — room side view
   Background lightens at higher lux via --lux-bg
   --------------------------------------------------------------------------- */

.lmc-lux-scene {
  --lux-bg: #141210;
  --lux-opacity: 0.15;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  background: var(--lux-bg, #141210);
  transition: background 0.4s ease;
}

/* ---------------------------------------------------------------------------
   5b. Ceiling Fixture
   --------------------------------------------------------------------------- */

.lmc-lux-fixture {
  width: 60px;
  height: 6px;
  background: #c0bfbd;
  border-radius: 3px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-shadow:
    0 2px 8px rgba(255, 246, 236, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Subtle downward glow from fixture */
.lmc-lux-fixture::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 246, 236, 0.25) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
   5c. Light Beam — trapezoid with variable opacity
   Controlled by --lux-opacity (0.1 to 0.6)
   --------------------------------------------------------------------------- */

.lmc-lux-beam {
  --lux-opacity: 0.15;
  width: 100%;
  height: 130px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;

  /* Trapezoid: narrow at top (fixture width), expands to ~60% at bottom */
  clip-path: polygon(
    calc(50% - 10%) 0%,
    calc(50% + 10%) 0%,
    calc(50% + 30%) 100%,
    calc(50% - 30%) 100%
  );

  background: linear-gradient(
    180deg,
    rgba(255, 246, 236, var(--lux-opacity, 0.15)) 0%,
    rgba(255, 246, 236, calc(var(--lux-opacity, 0.15) * 0.5)) 60%,
    rgba(255, 246, 236, calc(var(--lux-opacity, 0.15) * 0.15)) 100%
  );

  /* Soft edges via blur */
  filter: blur(2px);
  transition: opacity 0.4s ease, filter 0.3s ease;
  opacity: var(--lux-opacity, 0.15);
}

/* Fix: use actual opacity for beam instead of in gradient for better calc support */
.lmc-lux-beam {
  background: linear-gradient(
    180deg,
    rgba(255, 246, 236, 0.9) 0%,
    rgba(255, 246, 236, 0.45) 60%,
    rgba(255, 246, 236, 0.1) 100%
  );
  opacity: var(--lux-opacity, 0.15);
}

/* ---------------------------------------------------------------------------
   5d. Floor Line — illuminated surface
   Brightness varies with lux level
   --------------------------------------------------------------------------- */

.lmc-lux-floor {
  --lux-opacity: 0.15;
  position: absolute;
  bottom: 16px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 246, 236, 0.4);
  border-radius: 1px;
  z-index: 2;
  opacity: var(--lux-opacity, 0.15);
  box-shadow: 0 0 8px rgba(255, 246, 236, calc(var(--lux-opacity, 0.15) * 0.6));
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
}

/* ---------------------------------------------------------------------------
   5e. Controls
   --------------------------------------------------------------------------- */

.lmc-lux-ctrl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


/* ==========================================================================
   6. ANIMATION KEYFRAMES
   ========================================================================== */

/* Neon subtle pulse animation — using SVG filter layers */
@keyframes lmc-neon-pulse {
  0%   { opacity: 0.9; }
  50%  { opacity: 1; }
  100% { opacity: 0.9; }
}

#lmc-neon-l1 {
  animation: lmc-neon-pulse 3s ease-in-out infinite;
}


/* ==========================================================================
   7. RESPONSIVE — TABLET (max-width: 1080px)
   Scenes shrink proportionally; layouts stay intact
   ========================================================================== */

@media (max-width: 1080px) {

  /* Reduce scene heights */
  .lmc-lux-scene {
    height: 170px;
  }

  /* Cone height adjusts */
  .lmc-lux-beam {
    height: 110px;
  }

  /* Smaller readout text */
  .lmc-beam-read b,
  .lmc-lux-read b {
    font-size: 20px;
  }

  /* Load output */
  .lmc-load-out b {
    font-size: 18px;
  }

  /* Pill buttons can wrap */
  .lmc-neon-colors,
  .lmc-profile-btns {
    gap: 6px;
  }

  .lmc-neon-btn,
  .lmc-prof-btn {
    padding: 5px 12px;
    font-size: 12px;
  }

  .lmc-neon-btn {
    padding-left: 24px;
  }
}


/* ==========================================================================
   8. RESPONSIVE — MOBILE (max-width: 760px)
   All visualizers go full width below hero text
   ========================================================================== */

@media (max-width: 760px) {

  /* Wraps take full width */
  .lmc-beam-wrap,
  .lmc-load-wrap,
  .lmc-neon-wrap,
  .lmc-profile-wrap,
  .lmc-lux-wrap {
    gap: 12px;
  }

  /* Scene heights reduce further */
  .lmc-lux-scene {
    height: 150px;
    border-radius: 10px;
  }

  .lmc-lux-beam {
    height: 95px;
  }

  .lmc-lux-fixture {
    width: 48px;
    height: 5px;
  }

  /* Load bar height */
  .lmc-load-bar {
    height: 26px;
  }

  .lmc-load-bar-wrap {
    border-radius: 6px;
  }

  .lmc-load-bar {
    border-radius: 5px;
  }

  /* Fields stack vertically on mobile */
  .lmc-load-fields {
    flex-direction: column;
    gap: 10px;
  }

  /* Readout */
  .lmc-beam-read b,
  .lmc-lux-read b {
    font-size: 18px;
  }

  .lmc-beam-read span,
  .lmc-lux-read span {
    font-size: 12px;
  }

  .lmc-load-out b {
    font-size: 17px;
  }

  .lmc-load-out {
    padding: 12px 14px;
  }

  /* Pill buttons: smaller, allow scrolling */
  .lmc-neon-colors,
  .lmc-profile-btns {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }

  .lmc-neon-colors::-webkit-scrollbar,
  .lmc-profile-btns::-webkit-scrollbar {
    display: none;
  }

  .lmc-neon-btn,
  .lmc-prof-btn {
    padding: 5px 12px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .lmc-neon-btn {
    padding-left: 22px;
  }

  .lmc-neon-btn::before {
    left: 8px;
    width: 7px;
    height: 7px;
  }

  /* Labels */
  .lmc-neon-label,
  .lmc-profile-hint {
    font-size: 12px;
  }

  /* Slider labels */
  .lmc-beam-ctrl label,
  .lmc-lux-ctrl label {
    font-size: 11px;
  }

  /* Range track thinner */
  .lmc-beam-ctrl input[type="range"],
  .lmc-lux-ctrl input[type="range"] {
    height: 5px;
  }

  .lmc-beam-ctrl input[type="range"]::-webkit-slider-thumb,
  .lmc-lux-ctrl input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }

  .lmc-beam-ctrl input[type="range"]::-moz-range-thumb,
  .lmc-lux-ctrl input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }

  /* Marks smaller */
  .lmc-load-marks i {
    font-size: 10px;
  }

  /* SVG scenes scale on mobile */
}


/* ==========================================================================
   9. ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .lmc-load-bar,
  .lmc-neon-layer,
  .lmc-lux-beam,
  .lmc-lux-floor,
  .lmc-lux-scene,
  #lmc-prof-body,
  .lmc-neon-btn,
  .lmc-prof-btn {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Focus-visible for keyboard navigation */
.lmc-neon-btn:focus-visible,
.lmc-prof-btn:focus-visible {
  outline: 2px solid var(--lm-accent, #e3b06d);
  outline-offset: 2px;
}

.lmc-beam-ctrl input[type="range"]:focus-visible,
.lmc-lux-ctrl input[type="range"]:focus-visible {
  outline: 2px solid var(--lm-accent, #e3b06d);
  outline-offset: 3px;
}

.lmc-field input:focus-visible,
.lmc-field select:focus-visible {
  outline: 2px solid var(--lm-accent, #e3b06d);
  outline-offset: 1px;
}

/* ============================================================
   SVG Visualizer Scenes — Premium dark containers
   ============================================================ */

/* --- Beam scene (modules) --- */
.lmc-beam-scene {
  background: #0f0d0b;
  border: 1px solid rgba(0, 156, 75, 0.08);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 300px;
}

/* --- Load scene (PSU) --- */
.lmc-load-scene {
  background: linear-gradient(180deg, #161412 0%, #0f0d0b 100%);
  border: 1px solid rgba(0, 156, 75, 0.08);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 300px;
}

/* --- Neon scene --- */
.lmc-neon-scene {
  background: #0a0908;
  border: 1px solid rgba(0, 156, 75, 0.06);
  border-radius: 14px;
  overflow: visible;
  aspect-ratio: 4/3;
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Profile scene --- */
.lmc-profile-scene {
  background: linear-gradient(180deg, #12100e 0%, #0f0d0b 100%);
  border: 1px solid rgba(0, 156, 75, 0.08);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 300px;
}

/* --- Profile body transition --- */
#lmc-prof-body {
  transition: opacity 0.15s ease;
}

/* --- Neon glow layers transition --- */
.lmc-neon-layer {
  transition: stroke 0.4s ease;
}

/* --- Load bar (PSU) below SVG --- */
.lmc-load-bar-wrap {
  position: relative;
  height: 28px;
  background: #1b1815;
  border-radius: 8px;
  border: 1px solid #2a2520;
  overflow: hidden;
}
.lmc-load-bar {
  height: 100%;
  border-radius: 7px;
  transition: width 0.4s ease, background 0.4s ease;
  width: 50%;
}
.lmc-load-bar[data-zone="safe"] { background: linear-gradient(90deg, #2d6b3f, #4caf50); }
.lmc-load-bar[data-zone="warn"] { background: linear-gradient(90deg, #b8860b, #e3b06d); }
.lmc-load-bar[data-zone="danger"] { background: linear-gradient(90deg, #a03030, #e04040); }
.lmc-load-marks {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  pointer-events: none;
}
.lmc-load-marks i {
  font-style: normal;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'JetBrains Mono', monospace;
}

/* --- Lux photo styles (fixtures category still uses photo) --- */
.lmc-hero-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lmc-hero-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 320px;
}
.lmc-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: filter 0.4s ease, transform 0.6s ease;
}
.lmc-hero-photo:hover img {
  transform: scale(1.03);
}
.lmc-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 156, 75, 0.12);
  pointer-events: none;
}
.lmc-lux-brightness {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at center, rgba(255,246,236,0.6) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lmc-hero-photo--lux img {
  filter: brightness(0.5);
  transition: filter 0.4s ease;
}

@media(max-width:768px) {
  .lmc-beam-scene,
  .lmc-load-scene,
  .lmc-neon-scene,
  .lmc-profile-scene {
    max-height: 220px;
    aspect-ratio: 16/10;
  }
  .lmc-hero-photo {
    max-height: 220px;
    aspect-ratio: 16/9;
  }
}

/* ======================================================
   PHOTO-BASED HERO VISUALIZERS
   ====================================================== */
.lmc-hero-product{position:relative;display:flex;align-items:center;justify-content:center;min-height:280px;margin-bottom:1.2rem}
.lmc-hero-product-img{max-width:100%;max-height:300px;height:auto;object-fit:contain;position:relative;z-index:2;transition:filter 0.3s ease}

/* — Beam (Modules) — */
.lmc-beam-wrap{text-align:center}
.lmc-beam-cone{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:var(--cone-spread,40%);height:60%;background:radial-gradient(ellipse at top center, rgba(0, 156, 75, var(--cone-opacity,0.25)) 0%, transparent 70%);z-index:1;pointer-events:none;transition:width 0.3s ease, opacity 0.3s ease;border-radius:0 0 50% 50%}
.lmc-beam-ctrl{margin-top:.5rem}
.lmc-beam-ctrl label{display:block;color:#998e7e;font-size:.85rem;margin-bottom:.5rem}
.lmc-beam-ctrl input[type=range]{width:100%;accent-color:#e3b06d}
.lmc-beam-read{display:flex;align-items:baseline;gap:.6rem;margin-top:.5rem}
.lmc-beam-read b{font-family:Prata,serif;font-size:1.6rem;color:#e3b06d}
.lmc-beam-read span{color:#998e7e;font-size:.85rem}

/* — Load (PSU) — */
.lmc-load-wrap{text-align:center}
.lmc-psu-product{flex-direction:column}
.lmc-psu-glow{position:absolute;inset:10%;border-radius:12px;z-index:1;pointer-events:none;transition:box-shadow 0.5s ease}
.lmc-psu-pct{position:absolute;bottom:12px;right:16px;font-family:Prata,serif;font-size:1.8rem;color:#f0e9df;z-index:3;text-shadow:0 2px 10px rgba(0,0,0,0.6);opacity:0.85}
.lmc-load-bar-wrap{background:#1b1815;border-radius:6px;height:8px;margin:.8rem 0;overflow:hidden;border:1px solid #2a2520}
.lmc-load-bar{height:100%;border-radius:6px;transition:width .4s ease,background .4s ease}
.lmc-load-bar[data-zone=safe]{background:linear-gradient(90deg,#388E3C,#4CAF50)}
.lmc-load-bar[data-zone=warn]{background:linear-gradient(90deg,#E6A817,#FFC107)}
.lmc-load-bar[data-zone=danger]{background:linear-gradient(90deg,#C62828,#E53935)}
.lmc-load-marks{display:flex;justify-content:space-between;font-size:.7rem;color:#665e54;padding:0 2px}
.lmc-load-marks i{font-style:normal}
.lmc-load-fields{display:flex;gap:1rem;margin-top:.8rem}
.lmc-field{flex:1}
.lmc-field label{display:block;font-size:.8rem;color:#998e7e;margin-bottom:.3rem}
.lmc-field input,.lmc-field select{width:100%;background:#1b1815;border:1px solid #2a2520;color:#f0e9df;padding:.5rem .7rem;border-radius:6px;font-size:.95rem;font-family:inherit}
.lmc-field input:focus,.lmc-field select:focus{border-color:#e3b06d;outline:none}
.lmc-load-out{margin-top:.7rem;font-size:.9rem;color:#998e7e}
.lmc-load-out b{color:#e3b06d;font-family:JetBrains Mono,monospace}

/* — Neon — */
.lmc-neon-wrap{text-align:center}
.lmc-neon-product{overflow:visible}
.lmc-neon-tint{position:absolute;inset:-20%;z-index:1;pointer-events:none;border-radius:50%;transition:background 0.5s ease, opacity 0.5s ease}
.lmc-neon-glow{position:absolute;bottom:-30%;left:-10%;right:-10%;height:80%;z-index:0;pointer-events:none;border-radius:50%;transition:background 0.5s ease, opacity 0.5s ease}
.lmc-neon-colors{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-top:.5rem}
.lmc-neon-btn{background:#1b1815;border:1px solid #2a2520;color:#f0e9df;padding:.45rem .9rem;border-radius:6px;cursor:pointer;font-size:.85rem;transition:border-color .2s,background .2s}
.lmc-neon-btn:hover{border-color:#998e7e}
.lmc-neon-btn.is-active{border-color:#e3b06d;background:rgba(0, 156, 75, 0.08)}
.lmc-neon-label{color:#998e7e;font-size:.85rem;margin-top:.6rem}

/* — Profile — */
.lmc-profile-wrap{text-align:center}
.lmc-profile-btns{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-top:.5rem}
.lmc-prof-btn{background:#1b1815;border:1px solid #2a2520;color:#f0e9df;padding:.45rem .9rem;border-radius:6px;cursor:pointer;font-size:.85rem;transition:border-color .2s,background .2s}
.lmc-prof-btn:hover{border-color:#998e7e}
.lmc-prof-btn.is-active{border-color:#e3b06d;background:rgba(0, 156, 75, 0.08)}
.lmc-profile-hint{color:#998e7e;font-size:.85rem;margin-top:.6rem;min-height:2.4em}

/* — Lux (Fixtures) — */
.lmc-lux-wrap{text-align:center}
.lmc-lux-product{overflow:visible}
.lmc-lux-glow{position:absolute;top:30%;left:10%;width:35%;height:50%;background:radial-gradient(ellipse at center,rgba(0, 156, 75, 0.5) 0%,transparent 60%);z-index:1;pointer-events:none;border-radius:50%;transition:opacity 0.4s ease}
.lmc-lux-ctrl{margin-top:.5rem}
.lmc-lux-ctrl label{display:block;color:#998e7e;font-size:.85rem;margin-bottom:.5rem}
.lmc-lux-ctrl input[type=range]{width:100%;accent-color:#e3b06d}
.lmc-lux-read{display:flex;align-items:baseline;gap:.6rem;margin-top:.5rem}
.lmc-lux-read b{font-family:Prata,serif;font-size:1.6rem;color:#e3b06d}
.lmc-lux-read span{color:#998e7e;font-size:.85rem}

/* — Mobile — */
@media(max-width:768px){
  .lmc-hero-product{min-height:200px}
  .lmc-hero-product-img{max-height:220px}
  .lmc-neon-colors,.lmc-profile-btns{gap:.4rem}
  .lmc-load-fields{flex-direction:column;gap:.6rem}
  .lmc-psu-pct{font-size:1.3rem}
}

/* ===== New interactive category widgets ===== */
.lmc-hero-right .lmw {
  padding: 28px 30px;
  overflow: hidden;
}
.lmw-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.lmw-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.lmw-read { text-align: right; }
.lmw-read b {
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  font-weight: 500;
  display: block;
  line-height: 1.1;
  color: #fff;
}
.lmw-read span { font-size: 12px; color: rgba(255,255,255,.5); }
.lmw-stage { position: relative; }
.lmw-stage svg { display: block; width: 100%; height: auto; }
.lmw-dim { fill: rgba(255,255,255,.4); font-family: "JetBrains Mono", monospace; font-size: 11px; }
.lmw-controls {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lmw-controls label.lmw-ctl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block;
  margin-bottom: 8px;
}
.lmw-controls .mono {
  font-family: "JetBrains Mono", monospace;
}
.lmw-controls input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #2B3945;
  outline-offset: 4px;
}
.lmw-controls input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--lm-accent);
  cursor: pointer;
}
.lmw-controls input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--lm-accent);
  cursor: pointer;
}
.lmw-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.lmw-hint {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  max-width: 52ch;
  min-height: 2.6em;
}
.lmw-link {
  color: var(--lm-accent);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
}
.lmw-link:hover { text-decoration: underline; color: var(--lm-accent-hover); }
.lmw-verdict {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
}
.lmw-verdict.ok { background: rgba(18,161,80,.16); color: #48D082; }
.lmw-verdict.warn { background: rgba(230,160,0,.16); color: #F0B23C; }
.lmw-verdict.bad { background: rgba(184,68,42,.18); color: #F08060; }
.lmw-verdict i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.lmw-segs { display: flex; gap: 6px; flex-wrap: wrap; }
.lmw-seg {
  border: 1.5px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(255,255,255,.7);
  border-radius: 3px;
  padding: 8px 13px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.lmw-seg:hover { border-color: rgba(255,255,255,.25); }
.lmw-seg[aria-pressed=true] {
  background: #fff;
  color: #0F1720;
  border-color: #fff;
  font-weight: 600;
}
.lmw-colorset { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.lmw-chip {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}
.lmw-chip[aria-pressed=true] {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--lm-bg-dark), 0 0 0 3px #fff;
}
.lmw-chip.rgb {
  background: conic-gradient(from 0deg, #ff3b4e, #ff8a00, #ffe600, #23e087, #21c7ff, #3b6bff, #a05bff, #ff4fc3, #ff3b4e);
}
@media (max-width: 720px) {
  .lmc-hero-right .lmw { padding: 22px 18px; }
  .lmw-top { flex-direction: column; }
  .lmw-read { text-align: left; }
  .lmw-foot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =============================================
   FIX: Astra overrides link colors to green —
   force white text on all green/dark bg elements
   ============================================= */
.lmc-btn-primary,
a.lmc-btn-primary,
button.lmc-btn-primary,
.lmc-btn-primary:hover,
a.lmc-btn-primary:hover,
.lmc-btn-primary:visited,
.lmc-btn-primary:focus,
.lmc-sort-btn.is-active,
a.lmc-sort-btn.is-active,
.lmc-sort-btn.is-active:visited,
.lmc-view-btn.is-active,
.lmc-pp-btn.is-active,
a.lmc-pp-btn.is-active,
.lmc-pp-btn.is-active:visited,
.lmc-filter-apply,
button.lmc-filter-apply,
.lm-btn,
a.lm-btn,
button.lm-btn,
.lm-btn:hover,
a.lm-btn:hover,
.lm-btn:visited,
.lm-btn:focus {
  color: #FFFFFF !important;
}
.lmc-btn-dark,
a.lmc-btn-dark,
.lmc-btn-dark:hover,
a.lmc-btn-dark:hover,
.lmc-btn-dark:visited,
.lmc-btn-dark:focus {
  color: #FFFFFF !important;
}

/* FIX: view-toggle buttons — SVG icons use currentColor */
.lmc-view-btn {
  color: var(--lm-text-muted) !important;
}
.lmc-view-btn:hover {
  color: var(--lm-text-3) !important;
}
.lmc-view-btn.is-active {
  color: #FFFFFF !important;
}
.lmc-view-btn.is-active svg {
  stroke: #FFFFFF !important;
}

/* FIX: Reset Astra global button overrides for custom UI buttons */
.lmc-view-btn,
.lmc-view-btn:hover,
.lmc-view-btn:focus,
.lmc-view-btn:active {
  all: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: #FFFFFF !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  color: #8A8A86 !important;
  box-sizing: border-box !important;
  transition: background .15s, color .15s, border-color .15s !important;
}
.lmc-view-btn:hover {
  border-color: #AAAAAA !important;
  color: #4A4946 !important;
}
.lmc-view-btn.is-active,
.lmc-view-btn.is-active:hover {
  background: #009C4B !important;
  color: #FFFFFF !important;
  border-color: #009C4B !important;
}
.lmc-view-btn svg,
.lmc-view-btn.is-active svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}
.lmc-view-btn.is-active svg {
  stroke: #FFFFFF !important;
}

/* Same reset for sort buttons, per-page buttons, filter apply */
.lmc-sort-btn,
.lmc-sort-btn:hover,
.lmc-sort-btn:focus,
a.lmc-sort-btn {
  all: unset !important;
  display: inline-block !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 12.5px !important;
  padding: 5px 10px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: #FFFFFF !important;
  border-radius: 5px !important;
  color: #8A8A86 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background .15s, color .15s, border-color .15s !important;
}
.lmc-sort-btn:hover,
a.lmc-sort-btn:hover {
  border-color: #AAAAAA !important;
  color: #4A4946 !important;
}
.lmc-sort-btn.is-active,
.lmc-sort-btn.is-active:hover,
a.lmc-sort-btn.is-active {
  background: #009C4B !important;
  color: #FFFFFF !important;
  border-color: #009C4B !important;
  font-weight: 600 !important;
}

.lmc-pp-btn,
.lmc-pp-btn:hover,
.lmc-pp-btn:focus,
a.lmc-pp-btn {
  all: unset !important;
  display: inline-block !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 12.5px !important;
  padding: 5px 10px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: #FFFFFF !important;
  border-radius: 5px !important;
  color: #8A8A86 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.lmc-pp-btn:hover,
a.lmc-pp-btn:hover {
  border-color: #AAAAAA !important;
  color: #4A4946 !important;
}
.lmc-pp-btn.is-active,
a.lmc-pp-btn.is-active {
  background: #009C4B !important;
  color: #FFFFFF !important;
  border-color: #009C4B !important;
  font-weight: 600 !important;
}

button.lmc-filter-apply,
button.lmc-filter-apply:hover,
button.lmc-filter-apply:focus {
  all: unset !important;
  display: block !important;
  width: 100% !important;
  padding: 12px !important;
  background: #009C4B !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 5px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-align: center !important;
  cursor: pointer !important;
}
button.lmc-filter-apply:hover {
  background: #007A3A !important;
}

/* FIX: Reset Astra global select/input overrides for calculator fields */
.lmc-field input,
.lmc-field select,
.lmc-field input:focus,
.lmc-field select:focus {
  all: unset !important;
  display: block !important;
  width: 100% !important;
  padding: 10px 12px !important;
  background: #FFFFFF !important;
  border: 1.5px solid rgba(0,0,0,.12) !important;
  color: #2B2A29 !important;
  border-radius: 5px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.lmc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A86' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px 8px !important;
  padding-right: 32px !important;
}
.lmc-field input:focus,
.lmc-field select:focus {
  border-color: #009C4B !important;
  box-shadow: 0 0 0 2px rgba(0, 156, 75, 0.12) !important;
}

/* FIX: Reset Astra overrides for front-page calculator inputs/selects */
.lm-calc-input,
select.lm-calc-input,
input.lm-calc-input,
.lm-calc-input:focus,
select.lm-calc-input:focus,
input.lm-calc-input:focus {
  all: unset !important;
  display: block !important;
  width: 100% !important;
  padding: 14px 16px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  border-radius: 3px !important;
  color: #2B2A29 !important;
  font-size: 15px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  cursor: pointer !important;
}
select.lm-calc-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A86' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 8px !important;
  padding-right: 36px !important;
}
.lm-calc-input:focus,
select.lm-calc-input:focus,
input.lm-calc-input:focus {
  border-color: #009C4B !important;
  box-shadow: 0 0 0 2px rgba(0,156,75,.12) !important;
  outline: none !important;
}

/* FIX: Reset Astra table overrides for .lmc-data pricing table */
.lmc-data,
.lmc-data th,
.lmc-data td,
.lmc-data tr {
  all: unset !important;
}
.lmc-data {
  display: table !important;
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 16px !important;
  font-size: 13.5px !important;
  color: #4A4946 !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  border: none !important;
}
.lmc-data thead { display: table-header-group !important; }
.lmc-data tbody { display: table-row-group !important; }
.lmc-data tr {
  display: table-row !important;
}
.lmc-data th {
  display: table-cell !important;
  text-align: left !important;
  font-family: 'JetBrains Mono', 'SF Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: #AAAAAA !important;
  font-weight: 500 !important;
  padding: 0 12px 10px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,.12) !important;
  background: transparent !important;
}
.lmc-data td {
  display: table-cell !important;
  padding: 10px 12px 10px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,.06) !important;
  background: transparent !important;
  color: #4A4946 !important;
  font-size: 13.5px !important;
}
.lmc-data td:not(:first-child),
.lmc-data th:not(:first-child) {
  text-align: right !important;
  font-family: 'JetBrains Mono', 'SF Mono', monospace !important;
  padding-right: 0 !important;
  padding-left: 12px !important;
}
.lmc-data tr:last-child td {
  border-bottom: none !important;
}
.lmc-data-best td {
  color: #009C4B !important;
  font-weight: 600 !important;
}


/* ==========================================================================
   ASTRA OVERRIDE FIX — Single Product Page (.lmp-* elements)
   ========================================================================== */

/* --- Buttons: full Astra reset --- */
button.lmp-btn,
a.lmp-btn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: var(--lm-font) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px 20px !important;
  border-radius: var(--lm-radius) !important;
  border: 1.5px solid transparent !important;
  cursor: pointer !important;
  transition: background .15s, border-color .15s !important;
  text-align: center !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
}
button.lmp-btn.lmp-btn-lg,
a.lmp-btn.lmp-btn-lg {
  padding: 15px 24px !important;
  font-size: 15px !important;
}

/* Primary button */
button.lmp-btn-primary,
a.lmp-btn-primary {
  background: var(--lm-accent) !important;
  color: #171410 !important;
  border-color: var(--lm-accent) !important;
}
button.lmp-btn-primary:hover,
a.lmp-btn-primary:hover {
  background: var(--lm-accent-hover) !important;
  border-color: var(--lm-accent-hover) !important;
  color: #171410 !important;
  text-decoration: none !important;
}

/* Ghost button (light background) */
button.lmp-btn-ghost,
a.lmp-btn-ghost {
  background: transparent !important;
  color: var(--lm-text-3) !important;
  border-color: var(--lm-border-3) !important;
}
button.lmp-btn-ghost:hover,
a.lmp-btn-ghost:hover {
  border-color: var(--lm-accent) !important;
  color: var(--lm-text) !important;
  text-decoration: none !important;
}

/* Ghost button inside dark containers (kit section etc.) */
.lmp-kit button.lmp-btn-ghost,
.lmp-kit a.lmp-btn-ghost {
  color: rgba(255,255,255,.6) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.lmp-kit button.lmp-btn-ghost:hover,
.lmp-kit a.lmp-btn-ghost:hover {
  border-color: var(--lm-accent) !important;
  color: #FFFFFF !important;
}

/* Dark button */
button.lmp-btn-dark,
a.lmp-btn-dark {
  background: var(--lm-bg-dark) !important;
  color: #E8E8E6 !important;
  border: none !important;
}
button.lmp-btn-dark:hover,
a.lmp-btn-dark:hover {
  background: var(--lm-bg-body) !important;
  color: var(--lm-text) !important;
  text-decoration: none !important;
}

/* --- Input fields: full Astra reset --- */
.lmp-field input {
  all: unset !important;
  display: block !important;
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", monospace !important;
  font-size: 16px !important;
  padding: 11px 12px !important;
  border: 1.5px solid var(--lm-border-3) !important;
  border-radius: var(--lm-radius) !important;
  background: var(--lm-bg-input) !important;
  color: var(--lm-text) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.lmp-field input:focus {
  outline: none !important;
  border-color: var(--lm-accent) !important;
}

/* --- Option buttons (.lmp-optline) --- */
.lmp-optline a,
.lmp-optline button {
  all: unset !important;
  display: inline-block !important;
  border: 1.5px solid var(--lm-border-3) !important;
  border-radius: var(--lm-radius) !important;
  padding: 7px 12px !important;
  font-family: var(--lm-font) !important;
  font-size: 13px !important;
  background: var(--lm-bg-card) !important;
  color: var(--lm-text) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}
.lmp-optline a:hover,
.lmp-optline button:hover {
  border-color: var(--lm-text-muted) !important;
}
.lmp-optline .lmp-cur {
  border-color: var(--lm-accent) !important;
  background: var(--lm-accent) !important;
  color: #171410 !important;
}

/* --- Tier pricing bar: full Astra reset --- */
.lmp-tierbar div {
  all: unset !important;
  display: block !important;
  flex: 1 !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 2px !important;
  padding: 8px 9px !important;
  font-family: var(--lm-font) !important;
  font-size: 11.5px !important;
  color: rgba(255,255,255,.5) !important;
  background: var(--lm-bg-dark) !important;
  text-align: center !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}
.lmp-tierbar div b {
  display: block !important;
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", monospace !important;
  font-size: 13px !important;
  color: #E8E8E6 !important;
  font-weight: 500 !important;
}
.lmp-tierbar div.lmp-on {
  border-color: var(--lm-accent) !important;
  background: #1a2e22 !important;
}
.lmp-tierbar div.lmp-on b {
  color: #FFFFFF !important;
}

/* --- Tierbar flex container --- */
.lmp-tierbar {
  display: flex !important;
  gap: 5px !important;
}

/* --- Kit section: ensure text visibility on dark bg --- */
.lmp-kit {
  background: var(--lm-bg-dark) !important;
  color: #E8E8E6 !important;
}
.lmp-kit h2 {
  color: #FFFFFF !important;
}
.lmp-kit .lmp-lead {
  color: rgba(255,255,255,.55) !important;
}
.lmp-kit .lmp-eyebrow {
  color: rgba(255,255,255,.4) !important;
}
.lmp-kit-total b {
  color: #FFFFFF !important;
}
.lmp-kit-total span {
  color: rgba(255,255,255,.5) !important;
}
.lmp-kit-item {
  background: var(--lm-bg-card) !important;
  color: var(--lm-text) !important;
}
.lmp-kit-item b {
  color: var(--lm-text) !important;
}
.lmp-kit-item .lmp-eyebrow {
  color: var(--lm-text-dim) !important;
}
.lmp-kit-item .lmp-q {
  color: var(--lm-text-muted) !important;
}
.lmp-kit-item label {
  color: var(--lm-text-4) !important;
}
.lmp-kit-foot {
  border-top-color: rgba(255,255,255,.12) !important;
}

/* --- Anchor navigation links --- */
.lmp-anchors a {
  color: var(--lm-text-muted) !important;
  text-decoration: none !important;
}
.lmp-anchors a:hover {
  color: var(--lm-text) !important;
  text-decoration: none !important;
}

/* --- CTA Band: text on dark bg --- */
.lmp-band {
  background: var(--lm-bg-dark) !important;
  color: #E8E8E6 !important;
}
.lmp-band h2 {
  color: #FFFFFF !important;
}
.lmp-band p {
  color: rgba(255,255,255,.55) !important;
}
.lmp-band .lmp-eyebrow {
  color: rgba(255,255,255,.4) !important;
}
.lmp-band button.lmp-btn-ghost,
.lmp-band a.lmp-btn-ghost {
  color: rgba(255,255,255,.6) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.lmp-band button.lmp-btn-ghost:hover,
.lmp-band a.lmp-btn-ghost:hover {
  border-color: var(--lm-accent) !important;
  color: #FFFFFF !important;
}


/* --- Consent checkbox for lead forms --- */
.lm-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--lm-text-muted);
  cursor: pointer;
  margin-top: 8px;
  line-height: 1.4;
}
.lm-consent a {
  color: var(--lm-accent) !important;
  text-decoration: underline !important;
}
.lm-consent a:hover {
  color: var(--lm-accent-hover) !important;
}
.lm-consent-cb {
  accent-color: var(--lm-accent);
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}
.lm-btn[disabled],
button[disabled] {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
