/* Exact FirmLux color system from the approved HTML design. */
:root {
  --industrial-50: #f8fafc;
  --industrial-100: #f1f5f9;
  --industrial-200: #e2e8f0;
  --industrial-300: #cbd5e1;
  --industrial-400: #94a3b8;
  --industrial-500: #64748b;
  --industrial-600: #475569;
  --industrial-700: #334155;
  --industrial-800: #1e293b;
  --industrial-900: #0f172a;
  --industrial-950: #020617;
  --brand-orange: #ea580c;
  --brand-amber: #f59e0b;
  --brand-blue: #0f4c81;
  --brand-green: #16a34a;
  --brand-deep: #081621;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.glass {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.hide {
  display: none;
}

.drawer-open {
  transform: translateX(0);
}

.drawer-closed {
  transform: translateX(100%);
}

.modal-open {
  overflow: hidden;
}

.image-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, .7), rgba(2, 6, 23, .08));
  pointer-events: none;
}

.nav-scrolled {
  background: rgba(2, 6, 23, .92);
  box-shadow: 0 14px 35px rgba(2, 6, 23, .22);
  border-color: rgba(255,255,255,.08);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.brand-focus:focus {
  outline: 2px solid #ea580c;
  outline-offset: 3px;
}

.admin-bar #siteHeader {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar #siteHeader {
    top: 46px;
  }
}

/* Strong brand color layer. This makes the WordPress theme keep the same rich color treatment as the approved HTML reference, even when Tailwind CDN misses custom classes. */
:root {
  --industrial-50: #f8fafc;
  --industrial-100: #f1f5f9;
  --industrial-200: #e2e8f0;
  --industrial-300: #cbd5e1;
  --industrial-400: #94a3b8;
  --industrial-500: #64748b;
  --industrial-600: #475569;
  --industrial-700: #334155;
  --industrial-800: #1e293b;
  --industrial-900: #0f172a;
  --industrial-950: #020617;
  --brand-orange: #ea580c;
  --brand-amber: #f59e0b;
  --brand-blue: #0f4c81;
  --brand-green: #16a34a;
  --brand-deep: #081621;
}

/* Fallback utility colors for the custom Tailwind palette. */
.bg-industrial-50 { background-color: var(--industrial-50) !important; }
.bg-industrial-100 { background-color: var(--industrial-100) !important; }
.bg-industrial-200 { background-color: var(--industrial-200) !important; }
.bg-industrial-300 { background-color: var(--industrial-300) !important; }
.bg-industrial-400 { background-color: var(--industrial-400) !important; }
.bg-industrial-500 { background-color: var(--industrial-500) !important; }
.bg-industrial-600 { background-color: var(--industrial-600) !important; }
.bg-industrial-700 { background-color: var(--industrial-700) !important; }
.bg-industrial-800 { background-color: var(--industrial-800) !important; }
.bg-industrial-900 { background-color: var(--industrial-900) !important; }
.bg-industrial-950 { background-color: var(--industrial-950) !important; }
.bg-brand-orange { background-color: var(--brand-orange) !important; }
.bg-brand-amber { background-color: var(--brand-amber) !important; }
.bg-brand-blue { background-color: var(--brand-blue) !important; }
.bg-brand-green { background-color: var(--brand-green) !important; }

.bg-industrial-950\/78 { background-color: rgba(2, 6, 23, .78) !important; }
.bg-industrial-950\/75 { background-color: rgba(2, 6, 23, .75) !important; }
.bg-industrial-950\/85 { background-color: rgba(2, 6, 23, .85) !important; }
.bg-industrial-950\/92 { background-color: rgba(2, 6, 23, .92) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, .10) !important; }
.bg-white\/95 { background-color: rgba(255, 255, 255, .95) !important; }
.bg-white\/90 { background-color: rgba(255, 255, 255, .90) !important; }
.bg-orange-50 { background-color: #fff7ed !important; }
.bg-orange-100 { background-color: #ffedd5 !important; }
.bg-orange-500\/25 { background-color: rgba(249, 115, 22, .25) !important; }
.bg-sky-500\/15 { background-color: rgba(14, 165, 233, .15) !important; }
.bg-amber-500\/10 { background-color: rgba(245, 158, 11, .10) !important; }

.text-industrial-50 { color: var(--industrial-50) !important; }
.text-industrial-100 { color: var(--industrial-100) !important; }
.text-industrial-200 { color: var(--industrial-200) !important; }
.text-industrial-300 { color: var(--industrial-300) !important; }
.text-industrial-400 { color: var(--industrial-400) !important; }
.text-industrial-500 { color: var(--industrial-500) !important; }
.text-industrial-600 { color: var(--industrial-600) !important; }
.text-industrial-700 { color: var(--industrial-700) !important; }
.text-industrial-800 { color: var(--industrial-800) !important; }
.text-industrial-900 { color: var(--industrial-900) !important; }
.text-industrial-950 { color: var(--industrial-950) !important; }
.text-brand-orange { color: var(--brand-orange) !important; }
.text-brand-amber { color: var(--brand-amber) !important; }
.text-brand-blue { color: var(--brand-blue) !important; }
.text-brand-green { color: var(--brand-green) !important; }
.text-orange-50 { color: #fff7ed !important; }
.text-orange-100 { color: #ffedd5 !important; }

.border-industrial-200 { border-color: var(--industrial-200) !important; }
.border-industrial-300 { border-color: var(--industrial-300) !important; }
.border-brand-orange { border-color: var(--brand-orange) !important; }
.border-white\/10 { border-color: rgba(255, 255, 255, .10) !important; }
.border-white\/15 { border-color: rgba(255, 255, 255, .15) !important; }
.ring-industrial-200 { --tw-ring-color: var(--industrial-200) !important; }
.focus\:border-brand-orange:focus { border-color: var(--brand-orange) !important; }

.shadow-soft { box-shadow: 0 12px 35px rgba(2, 6, 23, .08) !important; }
.shadow-premium { box-shadow: 0 28px 90px rgba(2, 6, 23, .16) !important; }
.shadow-glow { box-shadow: 0 18px 45px rgba(234, 88, 12, .25) !important; }

.bg-gradient-to-r.from-brand-orange.to-brand-amber,
.bg-gradient-to-br.from-brand-orange.to-brand-amber {
  background-image: linear-gradient(135deg, var(--brand-orange), var(--brand-amber)) !important;
}
.bg-gradient-to-br.from-industrial-100.to-orange-50 {
  background-image: linear-gradient(135deg, var(--industrial-100), #fff7ed) !important;
}
.bg-gradient-to-t.from-industrial-950,
.bg-gradient-to-t.from-industrial-950.via-industrial-950\/25.to-transparent {
  background-image: linear-gradient(to top, rgba(2, 6, 23, .95), rgba(2, 6, 23, .25), transparent) !important;
}

/* Global surface treatment. */
body.firmlux-theme {
  background:
    radial-gradient(circle at top left, rgba(234, 88, 12, .08), transparent 32rem),
    radial-gradient(circle at top right, rgba(15, 76, 129, .08), transparent 28rem),
    var(--industrial-50) !important;
  color: var(--industrial-950) !important;
}

#siteHeader {
  background: rgba(2, 6, 23, .88) !important;
  border-color: rgba(255, 255, 255, .10) !important;
}

#siteHeader.nav-scrolled {
  background: rgba(2, 6, 23, .96) !important;
}

#home {
  background:
    radial-gradient(circle at 0% 10%, rgba(234, 88, 12, .28), transparent 28rem),
    radial-gradient(circle at 100% 12%, rgba(15, 76, 129, .24), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #081621 46%, #0f172a 100%) !important;
}

#shop {
  background:
    radial-gradient(circle at 15% 0%, rgba(234, 88, 12, .10), transparent 24rem),
    linear-gradient(180deg, #fff7ed 0%, #f8fafc 42%, #f1f5f9 100%) !important;
}

#about {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

#services {
  background:
    radial-gradient(circle at 20% 10%, rgba(234, 88, 12, .18), transparent 24rem),
    radial-gradient(circle at 90% 30%, rgba(15, 76, 129, .24), transparent 28rem),
    linear-gradient(135deg, #020617 0%, #081621 56%, #0f172a 100%) !important;
}

#process {
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 158, 11, .14), transparent 20rem),
    #ffffff !important;
}

#why-us {
  background:
    radial-gradient(circle at 80% 0%, rgba(15, 76, 129, .10), transparent 26rem),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

#contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 88, 12, .08), transparent 24rem),
    #ffffff !important;
}

footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(234, 88, 12, .16), transparent 24rem),
    linear-gradient(135deg, #020617 0%, #081621 100%) !important;
}

/* Make cards carry more of the brand color. */
.product-card {
  border: 1px solid rgba(234, 88, 12, .14) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%) !important;
}

.product-card:hover {
  border-color: rgba(234, 88, 12, .35) !important;
}

.product-card .bg-gradient-to-br {
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, .12) !important;
}

#filterButtons .filter-btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

#filterButtons .filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(234, 88, 12, .14) !important;
}

.add-cart,
.order-now:hover,
#checkoutForm button[type="submit"],
#inquiryForm button[type="submit"] {
  box-shadow: 0 18px 45px rgba(234, 88, 12, .25) !important;
}

/* Color lift for trust/process/reason cards. */
#process .reveal.rounded-\[2rem\],
#why-us .reveal.rounded-\[2rem\].bg-white,
#contact .rounded-\[1\.5rem\] {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%) !important;
  border-color: rgba(234, 88, 12, .13) !important;
}

/* Cart drawer should not look plain white. */
#cartDrawer {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #fff7ed 100%) !important;
}

#cartDrawer > div:first-child {
  background: linear-gradient(135deg, #020617 0%, #081621 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, .10) !important;
}

#cartDrawer #cartSummaryText {
  color: #cbd5e1 !important;
}

#mobileStickyCart button,
#stickyCartBtn {
  background: linear-gradient(135deg, #020617 0%, #081621 100%) !important;
}

/* Better image presentation. */
.product-card img,
#home img,
#about img,
#why-us img {
  filter: saturate(1.08) contrast(1.04);
}

/* WordPress editable menu support. These styles make Appearance > Menus items sit at the same level as the original section links. */

.firmlux-primary-nav-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 1.75rem !important;
  flex-wrap: wrap !important;
}

.firmlux-wp-page-menu {
  position: relative !important;
  padding-left: 1.75rem !important;
}

.firmlux-primary-nav-wrap .firmlux-wp-page-menu::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 1px !important;
  height: 18px !important;
  transform: translateY(-50%) !important;
  background: rgba(255, 255, 255, .18) !important;
}

.firmlux-mobile-menu.firmlux-wp-page-menu {
  margin-top: .5rem !important;
  border-top: 1px solid rgba(255, 255, 255, .10) !important;
  padding-top: .5rem !important;
}

.firmlux-primary-menu,
.firmlux-mobile-menu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.firmlux-primary-menu {
  display: flex !important;
  align-items: center !important;
  gap: 1.75rem !important;
}

.firmlux-primary-menu li,
.firmlux-mobile-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.firmlux-primary-menu a {
  color: #e2e8f0 !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  transition: color .2s ease, opacity .2s ease !important;
}

.firmlux-primary-menu a:hover,
.firmlux-primary-menu .current-menu-item > a,
.firmlux-primary-menu .current_page_item > a {
  color: #ffffff !important;
}

.firmlux-mobile-menu {
  display: grid !important;
  gap: .5rem !important;
}

.firmlux-mobile-menu a {
  display: block !important;
  color: #e2e8f0 !important;
  text-decoration: none !important;
  border-radius: .75rem !important;
  padding: .75rem !important;
  font-size: .875rem !important;
  font-weight: 700 !important;
  transition: background-color .2s ease, color .2s ease !important;
}

.firmlux-mobile-menu a:hover,
.firmlux-mobile-menu .current-menu-item > a,
.firmlux-mobile-menu .current_page_item > a {
  background: rgba(255, 255, 255, .10) !important;
  color: #ffffff !important;
}

footer .menu,
footer .menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer .menu {
  display: grid !important;
  gap: .75rem !important;
}

footer .menu a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
}

footer .menu a:hover {
  color: #ffffff !important;
}

/* Header logo behavior: uploaded logos fully replace the text brand block. */
#siteHeader .firmlux-brand-link {
  min-width: 0;
}

#siteHeader .firmlux-header-logo,
#siteHeader .firmlux-header-logo-wrap img,
#siteHeader .firmlux-header-logo-wrap .custom-logo {
  display: block !important;
  height: var(--firmlux-logo-size, 104px) !important;
  max-height: var(--firmlux-logo-size, 104px) !important;
  min-height: 0 !important;
  width: auto !important;
  max-width: var(--firmlux-logo-max-width, min(58vw, 620px)) !important;
  object-fit: contain !important;
}

#siteHeader .firmlux-brand-link {
  max-width: min(58vw, 640px) !important;
}

#siteHeader .firmlux-header-logo-wrap,
#siteHeader .firmlux-header-logo-wrap a {
  display: block !important;
  width: auto !important;
  max-width: var(--firmlux-logo-max-width, min(58vw, 620px)) !important;
  line-height: 0 !important;
}

@media (max-width: 640px) {
  #siteHeader .firmlux-header-logo,
  #siteHeader .firmlux-header-logo-wrap img,
  #siteHeader .firmlux-header-logo-wrap .custom-logo {
    height: var(--firmlux-logo-mobile-size, 76px) !important;
    max-height: var(--firmlux-logo-mobile-size, 76px) !important;
    max-width: var(--firmlux-logo-mobile-max-width, min(62vw, 420px)) !important;
  }

  #siteHeader .firmlux-brand-link {
    max-width: min(62vw, 430px) !important;
  }

  #siteHeader .firmlux-header-logo-wrap,
  #siteHeader .firmlux-header-logo-wrap a {
    max-width: var(--firmlux-logo-mobile-max-width, min(62vw, 420px)) !important;
  }
}

/* FirmLux premium support for MS MiniCommerce product pages */
.firmlux-msmc-single .msmc-product-hero,
.firmlux-msmc-archive .msmc-archive-hero {
  padding-top: 150px;
}

.firmlux-msmc-single .msmc-single-content,
.firmlux-msmc-single .msmc-bulk-card,
.firmlux-msmc-single .msmc-product-card,
.firmlux-msmc-archive .msmc-product-card {
  border-color: color-mix(in srgb, var(--brand-orange, #ea580c) 18%, var(--industrial-200, #e2e8f0));
}

.firmlux-msmc-single .msmc-single-content {
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--brand-orange, #ea580c) 5%, #fff));
}

.firmlux-msmc-single .msmc-related-products,
.firmlux-msmc-single .msmc-single-details-section {
  background: radial-gradient(circle at 15% 0%, color-mix(in srgb, var(--brand-orange, #ea580c) 8%, transparent), transparent 24rem), var(--industrial-50, #f8fafc);
}

.firmlux-msmc-archive .msmc-shop {
  padding-top: 80px;
}

.firmlux-inquiry-form input,
.firmlux-inquiry-form textarea {
  color: #fff;
}
.firmlux-inquiry-form input::placeholder,
.firmlux-inquiry-form textarea::placeholder {
  color: rgba(203, 213, 225, .85);
}


/* FirmLux logo sizing correction: keep header compact while allowing real logo growth. */
#siteHeader > div:first-child {
  padding-top: .2rem !important;
  padding-bottom: .2rem !important;
}
#siteHeader .firmlux-brand-link {
  min-height: 0 !important;
}
#siteHeader .firmlux-header-logo,
#siteHeader .firmlux-header-logo-wrap img,
#siteHeader .firmlux-header-logo-wrap .custom-logo {
  height: var(--firmlux-logo-size, 104px) !important;
  max-height: var(--firmlux-logo-size, 104px) !important;
  width: auto !important;
  max-width: var(--firmlux-logo-max-width, min(58vw, 620px)) !important;
  object-fit: contain !important;
}
@media (max-width: 640px) {
  #siteHeader > div:first-child {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
  }
  #siteHeader .firmlux-header-logo,
  #siteHeader .firmlux-header-logo-wrap img,
  #siteHeader .firmlux-header-logo-wrap .custom-logo {
    height: var(--firmlux-logo-mobile-size, 76px) !important;
    max-height: var(--firmlux-logo-mobile-size, 76px) !important;
    max-width: var(--firmlux-logo-mobile-max-width, min(62vw, 420px)) !important;
  }
}

/* Product page related products should feel full, not like a small afterthought. */
.firmlux-msmc-related .msmc-grid,
.msmc-related-products .msmc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .firmlux-msmc-related .msmc-grid,
  .msmc-related-products .msmc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .firmlux-msmc-related .msmc-grid,
  .msmc-related-products .msmc-grid {
    grid-template-columns: 1fr;
  }
}

#siteHeader .firmlux-brand-link {
  line-height: 0 !important;
}
#siteHeader .firmlux-brand-link img {
  display: block !important;
}


/* FirmLux logo loader overlay */
.firmlux-site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.98);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .75s ease, visibility .75s ease;
}
.firmlux-site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.firmlux-loader-mark {
  display: grid;
  place-items: center;
  width: min(58vw, 280px);
  height: min(34vh, 190px);
}
.firmlux-loader-logo {
  display: block;
  width: auto;
  max-width: min(58vw, 280px);
  max-height: min(28vh, 150px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(2, 6, 23, .16));
  animation: firmluxLogoPop 1.45s ease-in-out infinite;
}
.firmlux-loader-initials {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(234, 88, 12, .25);
  animation: firmluxLogoPop 1.45s ease-in-out infinite;
}
@keyframes firmluxLogoPop {
  0%, 100% { opacity: .35; transform: scale(.86); }
  45%, 55% { opacity: 1; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .firmlux-loader-logo, .firmlux-loader-initials { animation: none; opacity: 1; transform: none; }
}
}

/* FirmLux slider component */
.firmlux-hero-slide{display:none;opacity:0;transform:translateY(8px);transition:opacity .35s ease,transform .35s ease}.firmlux-hero-slide.is-active{display:block;opacity:1;transform:translateY(0)}


/* FirmLux v1.5.2 layout and component fixes */
#siteHeader { background: var(--firmlux-nav-bg, var(--industrial-950)) !important; }
#siteHeader a, #siteHeader button, #siteHeader input { color: var(--firmlux-nav-text, #e2e8f0); }
#siteHeader svg { color: var(--firmlux-nav-icon, #fff); }
#cartCount, #mobileCartCount { background: var(--firmlux-nav-cart-badge, var(--brand-orange)) !important; }
.firmlux-hero-eyebrow{background:var(--firmlux-eyebrow-bg)!important;color:var(--firmlux-eyebrow-text)!important}.firmlux-hero-trust-card{background:var(--firmlux-trust-bg)!important;color:var(--firmlux-trust-text)!important}.firmlux-hero-trust-card p:last-child{color:var(--firmlux-trust-muted)!important}.firmlux-hero-mini-card{background:var(--firmlux-mini-bg)!important;color:var(--firmlux-mini-text)!important}.firmlux-hero-mini-card p:first-child{color:var(--firmlux-mini-muted)!important}.firmlux-hero-slider{background:var(--firmlux-slider-bg)!important;color:var(--firmlux-slider-text)!important}.firmlux-custom-component{border-radius:1.25rem;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.1);padding:1rem;backdrop-filter:blur(14px)}
@media (min-width:1024px){.firmlux-hero-layout-product_collage,.firmlux-hero-layout-split_image_right{align-items:start!important}.firmlux-hero-media{margin-top:0!important}.firmlux-hero-layout-centered .firmlux-hero-media{justify-self:center}.firmlux-hero-layout-split_image_right .firmlux-hero-media .grid{grid-template-columns:1fr!important}.firmlux-hero-layout-split_image_right .firmlux-hero-media .grid>div:nth-child(2){display:none}.firmlux-hero-layout-centered h1,.firmlux-hero-layout-full_background h1{margin-left:auto;margin-right:auto}.firmlux-hero-layout-centered .firmlux-hero-copy,.firmlux-hero-layout-full_background .firmlux-hero-copy{align-items:center;text-align:center}.firmlux-hero-layout-full_background .hero-grid{opacity:.25}}


/* FirmLux 1.5.4 editor and nav refinements */
#siteHeader .max-w-7xl { min-height: 68px; overflow: visible; }
#siteHeader .firmlux-open-ms-cart, #mobileCartBtn { overflow: visible; }
#cartCount, #mobileCartCount { top: -0.25rem !important; right: -0.25rem !important; z-index: 5; }
.firmlux-inline-icon { flex: 0 0 auto; }
.firmlux-hero-layout-split_image_right .firmlux-hero-media,
.firmlux-hero-layout-product_collage .firmlux-hero-media { align-self: center; }
@media (min-width: 1024px) {
  .firmlux-hero-layout-split_image_right,
  .firmlux-hero-layout-product_collage { align-items: center; }
  .firmlux-hero-copy { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .animate-floaty, .animate-pulseSoft { animation: none !important; }
}


/* FirmLux v1.5.5 navbar spacing fix */
#siteHeader .max-w-7xl{padding-top:0.9rem!important;padding-bottom:0.9rem!important;min-height:76px!important;overflow:visible!important;}
#siteHeader .firmlux-brand-logo{display:block;height:auto;max-height:none!important;object-fit:contain;}
#cartCount,#mobileCartCount{top:-0.65rem!important;right:-0.65rem!important;z-index:5;}


/* FirmLux v1.5.8 WordPress content formatting
   Makes default WordPress editor content render properly on frontend pages. */
.firmlux-content {
  max-width: none;
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}
.firmlux-content > *:first-child { margin-top: 0; }
.firmlux-content > *:last-child { margin-bottom: 0; }
.firmlux-content p { margin: 0 0 1.2em; }
.firmlux-content h1,
.firmlux-content h2,
.firmlux-content h3,
.firmlux-content h4,
.firmlux-content h5,
.firmlux-content h6 {
  margin: 1.55em 0 .65em;
  color: var(--industrial-950, #020617);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.firmlux-content h1 { font-size: clamp(2rem, 4vw, 3.75rem); }
.firmlux-content h2 { font-size: clamp(1.65rem, 3vw, 2.75rem); }
.firmlux-content h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.firmlux-content h4 { font-size: 1.25rem; }
.firmlux-content h5 { font-size: 1.1rem; }
.firmlux-content h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.firmlux-content a {
  color: var(--brand-orange, #ea580c);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.firmlux-content ul,
.firmlux-content ol {
  margin: 0 0 1.35em 1.25rem;
  padding-left: 1.1rem;
}
.firmlux-content ul { list-style: disc; }
.firmlux-content ol { list-style: decimal; }
.firmlux-content li { margin: .45em 0; padding-left: .25rem; }
.firmlux-content blockquote,
.firmlux-content .wp-block-quote {
  margin: 1.6em 0;
  border-left: 5px solid var(--brand-orange, #ea580c);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  color: #1e293b;
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.06);
}
.firmlux-content cite { display: block; margin-top: .7rem; color: #64748b; font-size: .9rem; font-style: normal; font-weight: 800; }
.firmlux-content img,
.firmlux-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1.25rem;
}
.firmlux-content figure { margin: 1.6em 0; }
.firmlux-content figcaption,
.firmlux-content .wp-element-caption {
  margin-top: .65rem;
  color: #64748b;
  font-size: .9rem;
  text-align: center;
}
.firmlux-content .wp-block-image.aligncenter { text-align: center; }
.firmlux-content .aligncenter { margin-left: auto; margin-right: auto; }
.firmlux-content .alignleft { float: left; margin: .35rem 1.5rem 1rem 0; }
.firmlux-content .alignright { float: right; margin: .35rem 0 1rem 1.5rem; }
.firmlux-content .alignwide { width: min(100%, 1120px); max-width: 1120px; margin-left: 50%; transform: translateX(-50%); }
.firmlux-content .alignfull { width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.firmlux-content .wp-block-columns {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  margin: 1.75em 0;
}
.firmlux-content .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}
.firmlux-content .wp-block-column > :first-child { margin-top: 0; }
.firmlux-content .wp-block-column > :last-child { margin-bottom: 0; }
.firmlux-content .wp-block-group,
.firmlux-content .wp-block-cover,
.firmlux-content .wp-block-media-text,
.firmlux-content .wp-block-table,
.firmlux-content .wp-block-gallery {
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.firmlux-content .wp-block-group,
.firmlux-content .wp-block-cover {
  border-radius: 1.5rem;
}
.firmlux-content .wp-block-group.has-background {
  padding: 1.5rem;
}
.firmlux-content .wp-block-cover {
  overflow: hidden;
  padding: 2rem;
}
.firmlux-content .wp-block-media-text {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 1.5rem;
  align-items: center;
}
.firmlux-content .wp-block-media-text .wp-block-media-text__content { padding: 0; }
.firmlux-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.5em 0;
}
.firmlux-content .wp-block-button__link,
.firmlux-content .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange, #ea580c), var(--brand-amber, #f59e0b));
  color: #ffffff !important;
  padding: .85rem 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none !important;
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.firmlux-content .wp-block-button__link:hover,
.firmlux-content .wp-element-button:hover { transform: translateY(-2px); box-shadow: 0 22px 55px rgba(234, 88, 12, 0.28); }
.firmlux-content .is-style-outline > .wp-block-button__link,
.firmlux-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--industrial-950, #020617) !important;
  border: 2px solid var(--industrial-950, #020617);
  box-shadow: none;
}
.firmlux-content table,
.firmlux-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.06);
}
.firmlux-content th,
.firmlux-content td {
  border: 1px solid #e2e8f0;
  padding: .85rem 1rem;
  text-align: left;
  vertical-align: top;
}
.firmlux-content th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 900;
}
.firmlux-content pre,
.firmlux-content code {
  border-radius: .75rem;
  background: #0f172a;
  color: #e2e8f0;
}
.firmlux-content code { padding: .12rem .35rem; }
.firmlux-content pre { overflow-x: auto; padding: 1rem; }
.firmlux-content .wp-block-separator {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 2rem 0;
}
.firmlux-content .wp-block-spacer { margin: 0; }
.firmlux-content .wp-block-gallery { display: flex; flex-wrap: wrap; gap: 1rem; }
.firmlux-content .wp-block-gallery .wp-block-image { flex: 1 1 220px; margin: 0; }
.firmlux-content .wp-block-gallery img { width: 100%; height: 100%; object-fit: cover; }
.firmlux-content .wp-block-embed iframe,
.firmlux-content iframe { max-width: 100%; border-radius: 1rem; }
@media (max-width: 782px) {
  .firmlux-content { font-size: .98rem; line-height: 1.75; }
  .firmlux-content .wp-block-columns { flex-direction: column; gap: 1rem; }
  .firmlux-content .wp-block-media-text { grid-template-columns: 1fr; }
  .firmlux-content .alignleft,
  .firmlux-content .alignright { float: none; margin: 1.2rem 0; }
}
