:root {
  --color-dark: #282828;
  --color-dark-soft: #323232;
  --color-black: #202020;
  --color-black-2: #1b1b1b;
  --color-accent: #89e900;
  --color-white: #ffffff;
  --color-muted: #b8b8b8;
  --border-accent: rgba(137, 233, 0, 0.18);
  --glow-accent: rgba(137, 233, 0, 0.35);
  --border-soft: rgba(255, 255, 255, 0.08);
  --glass: rgba(43, 43, 43, 0.72);
  --shadow-deep: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-glow: 0 0 46px rgba(137, 233, 0, 0.18);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --dark: var(--color-dark);
  --accent: var(--color-accent);
  --text: var(--color-white);
  --muted: var(--color-muted);
  --border: var(--border-accent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(137, 233, 0, 0.09), transparent 28rem),
    radial-gradient(circle at 100% 20%, rgba(137, 233, 0, 0.06), transparent 26rem),
    linear-gradient(180deg, #2b2b2b 0%, #262626 48%, #242424 100%),
    var(--color-dark);
  color: var(--color-white);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.site-is-loading {
  overflow: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-dark);
  opacity: 1;
  visibility: visible;
  transition: opacity .65s var(--motion-ease), visibility .65s var(--motion-ease);
  animation: preloaderFailsafeHide .1s linear 3s forwards;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-grid {
  display: none;
}

.preloader-glow {
  display: none;
}

.preloader-content {
  position: relative;
  z-index: 2;
  width: min(420px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  text-align: center;
}

.preloader-logo-wrap {
  width: clamp(190px, 24vw, 280px);
  height: clamp(130px, 18vw, 210px);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  animation: preloaderLogoIn .9s var(--motion-ease) both, preloaderLogoPulse 2.1s var(--motion-ease) .9s infinite;
}

.preloader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px var(--glow-accent));
}

.preloader-title {
  margin: 32px 0 8px;
  color: var(--color-white);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  animation: preloaderFadeUp .8s var(--motion-ease) .35s forwards;
}

.preloader-subtitle {
  max-width: 560px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 800;
  line-height: 1.5;
  opacity: 0;
  animation: preloaderFadeUp .8s var(--motion-ease) .52s forwards;
}

.preloader-bar {
  position: relative;
  width: min(360px, 76vw);
  height: 6px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, .48), 0 0 24px rgba(137, 233, 0, .12);
  opacity: 1;
}

.preloader-bar span {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  background: var(--color-accent);
  box-shadow: 0 0 24px var(--glow-accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: preloaderProgress 1s linear forwards;
}

body.preloader-done .page-fade {
  animation: siteFadeIn .55s var(--motion-ease) both;
}

@keyframes preloaderGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(52px, 52px, 0); }
}

@keyframes preloaderGlow {
  0%, 100% { transform: scale(.94); opacity: .42; }
  50% { transform: scale(1.08); opacity: .62; }
}

@keyframes preloaderLogoIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes preloaderLogoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.035); opacity: .96; }
}

@keyframes preloaderFadeUp {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes preloaderProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes siteFadeIn {
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes preloaderFailsafeHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(137, 233, 0, 0.1);
  background: rgba(22, 22, 22, 0.62);
  backdrop-filter: blur(22px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(22, 22, 22, 0.9);
  border-color: var(--border-accent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(260px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  transition: min-height .25s ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(230px, 20vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(137, 233, 0, 0.18));
  transition: width .25s ease, filter .25s ease;
}

.site-header.is-scrolled .brand-logo {
  width: clamp(210px, 17vw, 275px);
}

.footer-logo {
  width: min(220px, 100%);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(137, 233, 0, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(145deg, var(--color-accent), #c3ff55);
  color: var(--color-black);
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 0 30px rgba(137, 233, 0, 0.28);
  transition: width .25s ease, height .25s ease;
}

.site-header.is-scrolled .brand-mark {
  width: 40px;
  height: 40px;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 11px;
  letter-spacing: 0;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.site-nav .nav-dropdown-toggle {
  position: relative;
  padding: 10px 13px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
  transition: color .22s ease;
}

.site-nav a::after,
.site-nav .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .22s ease, transform .22s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav .nav-dropdown-toggle:hover,
.site-nav .nav-dropdown-toggle.active,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--color-accent);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav .nav-dropdown-toggle:hover::after,
.site-nav .nav-dropdown-toggle.active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  padding: 8px 0;
  margin: -8px 0;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 28px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: default;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  opacity: .7;
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before,
.nav-dropdown.is-open .nav-dropdown-toggle::before {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 40;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(137, 233, 0, .24);
  border-radius: 18px;
  background: rgba(22, 22, 22, .94);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .4), 0 0 32px rgba(137, 233, 0, .12);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  transition: opacity .24s var(--ease), visibility .24s var(--ease), transform .24s var(--ease);
}

.nav-products-menu {
  width: min(320px, calc(100vw - 32px));
  max-height: min(68vh, 540px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-products-menu::-webkit-scrollbar {
  width: 6px;
}

.nav-products-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(137, 233, 0, .35);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.nav-dropdown-menu a i {
  width: 18px;
  min-width: 18px;
  color: var(--color-accent);
  font-size: 14px;
  text-align: center;
  filter: drop-shadow(0 0 9px rgba(137, 233, 0, .35));
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  color: var(--color-accent);
  background: rgba(137, 233, 0, .08);
}

.nav-mega-dropdown .nav-products-mega {
  position: fixed;
  top: 86px;
  left: 50%;
  width: min(1500px, calc(100vw - 48px));
  height: auto;
  max-height: 460px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(137, 233, 0, .14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(137, 233, 0, .07), transparent 34rem),
    rgba(34, 34, 34, .965);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .56), 0 0 40px rgba(137, 233, 0, .045);
  backdrop-filter: blur(14px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 20px, 0) scale(.98);
  transform-origin: top center;
  transition:
    opacity .35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility .35s cubic-bezier(0.22, 1, 0.36, 1),
    transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .nav-mega-dropdown .nav-products-mega {
  top: 68px;
}

.nav-mega-dropdown:hover .nav-products-mega,
.nav-mega-dropdown:focus-within .nav-products-mega,
.nav-mega-dropdown.is-open .nav-products-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.nav-mega-dropdown .nav-products-mega::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-mega-dropdown .nav-products-mega::after {
  content: "KATALOG";
  position: absolute;
  right: 28px;
  bottom: -24px;
  color: rgba(137, 233, 0, .018);
  font-size: 108px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  pointer-events: none;
}

.mega-menu-intro {
  position: relative;
  width: 320px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(137, 233, 0, .14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(137, 233, 0, .1), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 18px 54px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.mega-menu-intro::after {
  content: "";
  position: absolute;
  inset: auto -24px -36px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px solid rgba(137, 233, 0, .1);
  background: rgba(137, 233, 0, .018);
  opacity: .38;
}

.mega-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mega-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(137, 233, 0, .48);
}

.mega-menu-intro h3 {
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
}

.mega-menu-intro p {
  max-width: 220px;
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.mega-all-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(137, 233, 0, .28);
  background: #161616;
  color: var(--color-accent);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.mega-all-link:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  background: #222222;
  color: var(--color-accent);
  box-shadow: 0 0 18px rgba(137, 233, 0, .2), 0 16px 36px rgba(0, 0, 0, .28);
}

.mega-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 150px);
  gap: 20px;
  min-width: 0;
}

.mega-category-card {
  position: relative;
  height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  row-gap: 12px;
  padding: 22px;
  border: 1px solid rgba(137, 233, 0, .09);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 46%, rgba(137, 233, 0, .11), transparent 58%),
    rgba(255, 255, 255, .035);
  color: var(--color-white);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  will-change: transform, opacity;
  transition:
    opacity .35s cubic-bezier(0.22, 1, 0.36, 1),
    transform .35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.nav-mega-dropdown:hover .mega-category-card,
.nav-mega-dropdown:focus-within .mega-category-card,
.nav-mega-dropdown.is-open .mega-category-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: var(--mega-delay);
}

.mega-category-card:hover {
  color: var(--color-white);
  transform: translate3d(0, -5px, 0) !important;
  border-color: rgba(137, 233, 0, .38);
  background:
    radial-gradient(circle at 84% 46%, rgba(137, 233, 0, .15), transparent 58%),
    rgba(255, 255, 255, .055);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .34), 0 0 24px rgba(137, 233, 0, .1);
}

.mega-category-image {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 0;
  width: 162px;
  height: 162px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-accent);
  opacity: .12;
  pointer-events: none;
  transform: translateY(-50%);
  filter: blur(.5px);
  transition: opacity .28s ease, transform .35s cubic-bezier(0.22, 1, 0.36, 1), filter .28s ease;
}

.mega-category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  filter: grayscale(1) brightness(1.7) sepia(1) saturate(5) hue-rotate(36deg);
}

.mega-category-image i {
  color: #89E900;
  font-size: 148px;
  font-weight: 300;
  filter: none;
}

.mega-category-image .mega-lucide-icon,
.mega-category-image .mega-lucide-icon svg {
  width: 96px;
  height: 96px;
  color: #89E900;
  opacity: .95;
  stroke-width: 1.9;
}

.mega-category-card:hover .mega-category-image {
  opacity: .18;
  transform: translateY(-50%) scale(1.08) translateX(-2px);
  filter: blur(.3px) drop-shadow(0 8px 16px rgba(137, 233, 0, .22));
}

.mega-category-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding-right: 54px;
}

.mega-category-body strong {
  color: var(--color-white);
  font-size: 21px;
  line-height: 1.08;
  font-weight: 900;
}

.mega-category-body small {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mega-card-arrow {
  position: absolute;
  right: 16px;
  bottom: 17px;
  z-index: 3;
  width: auto;
  min-width: 0;
  color: #89E900;
  font-size: 24px;
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}

.mega-category-card:hover .mega-card-arrow {
  transform: translateX(5px);
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-mega-dropdown .nav-products-mega {
    width: min(1120px, calc(100vw - 36px));
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .mega-menu-intro {
    width: 300px;
  }

  .mega-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, 150px);
  }
}

@media (max-width: 1024px) {
  .header-search {
    display: none;
  }

  .nav-mega-dropdown .nav-products-mega {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    width: min(320px, calc(100vw - 32px));
    max-height: min(68vh, 540px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    overflow-y: auto;
    transform: translate3d(-50%, 10px, 0) scale(1);
  }

  .nav-mega-dropdown:hover .nav-products-mega,
  .nav-mega-dropdown:focus-within .nav-products-mega,
  .nav-mega-dropdown.is-open .nav-products-mega {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .mega-menu-intro {
    display: none;
  }

  .mega-category-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mega-category-card {
    min-height: 0;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .mega-category-card:hover {
    transform: none;
    background: rgba(137, 233, 0, .08);
    box-shadow: none;
  }

  .mega-category-image {
    display: none;
  }

  .mega-category-image img {
    padding: 3px;
  }

  .mega-category-body {
    padding-right: 18px;
  }

  .mega-category-body small {
    display: none;
  }
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  background: rgba(43, 43, 43, 0.76);
  color: var(--color-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-white);
}

.page-fade {
  animation: pageFade .48s ease both;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 82px 0 58px;
  background:
    radial-gradient(circle at 72% 38%, rgba(137, 233, 0, 0.16), transparent 24rem),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.06), transparent 28rem),
    linear-gradient(180deg, rgba(22, 22, 22, 0.58), rgba(34, 34, 34, 0.96));
  border-bottom: 1px solid var(--border-accent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(22, 22, 22, 0.78), rgba(34, 34, 34, 0.95)),
    var(--hero-bg-image, linear-gradient(transparent, transparent));
  background-size: cover;
  background-position: center;
  opacity: .42;
}

.hero-gridlines,
.page-hero::before {
  pointer-events: none;
  position: absolute;
  inset: 0;
  content: "";
  opacity: .68;
  background:
    linear-gradient(rgba(137, 233, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 64% 36%, black, transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.neon-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.neon-label::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--color-accent);
  box-shadow: 0 0 18px var(--glow-accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.03;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 1.05;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 900;
}

.hero-copy p,
.page-hero p,
.lead {
  max-width: 700px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.78;
}

.hero-actions,
.detail-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--color-accent);
  color: var(--color-black);
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px var(--glow-accent);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #baff42);
  color: var(--color-black);
}

.btn-secondary,
.btn-ghost,
.btn-outline {
  border-color: rgba(137, 233, 0, 0.42);
  background: rgba(137, 233, 0, 0.05);
  color: var(--color-white);
}

.btn-secondary:hover,
.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-header {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 13px;
  box-shadow: 0 0 22px rgba(137, 233, 0, 0.2);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
  color: var(--color-white);
  cursor: pointer;
  transition: transform .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.header-search-toggle:hover,
.header-search.is-open .header-search-toggle {
  transform: translateY(-2px);
  color: var(--color-accent);
  border-color: rgba(137, 233, 0, .5);
  background: rgba(137, 233, 0, .08);
  box-shadow: 0 14px 30px rgba(137, 233, 0, .14);
}

.header-search-form {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 35;
  width: min(320px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 16px;
  background: rgba(22, 22, 22, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.header-search.is-open .header-search-form {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.header-search-form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(137, 233, 0, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  color: var(--color-white);
}

.header-search-form input::placeholder {
  color: rgba(255, 255, 255, .54);
}

.header-search-form input:focus {
  outline: none;
  border-color: rgba(137, 233, 0, .52);
  box-shadow: 0 0 0 3px rgba(137, 233, 0, .10);
}

.header-search-form button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(137, 233, 0, .28);
  border-radius: 12px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.header-search-form button:hover {
  transform: translateY(-1px);
  border-color: rgba(137, 233, 0, .52);
  background: rgba(137, 233, 0, .14);
}

.nav-doc-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.nav-doc-link:hover {
  transform: translateY(-2px);
  color: var(--color-accent);
  border-color: rgba(137, 233, 0, .5);
  background: rgba(137, 233, 0, .08);
  box-shadow: 0 14px 30px rgba(137, 233, 0, .14);
}

.nav-lang-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.nav-lang-link:hover {
  transform: translateY(-2px);
  color: var(--color-accent);
  border-color: rgba(137, 233, 0, .5);
  background: rgba(137, 233, 0, .08);
  box-shadow: 0 14px 30px rgba(137, 233, 0, .14);
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(137, 233, 0, .28);
  border-radius: 16px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(137, 233, 0, 0);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}

.cart-link:hover {
  transform: translateY(-2px);
  border-color: rgba(137, 233, 0, .55);
  background: rgba(137, 233, 0, .13);
  box-shadow: 0 14px 30px rgba(137, 233, 0, .18);
}

.cart-link-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.cart-link span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-black);
  border: 2px solid rgba(22, 22, 22, .96);
  font-size: 11px;
  line-height: 1;
  box-shadow: 0 0 16px rgba(137, 233, 0, .35);
}

.btn-small {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 13px;
}

.btn-wide {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  align-self: center;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  perspective: 1200px;
}

.showcase-orb {
  position: absolute;
  inset: 2% 0 0 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(137, 233, 0, 0.26), transparent 34%),
    radial-gradient(circle, rgba(137, 233, 0, 0.12), transparent 68%);
  filter: blur(2px);
  animation: showcasePulse 5.8s ease-in-out infinite;
}

.showcase-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 30px;
  background:
    linear-gradient(rgba(137, 233, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(22, 22, 22, 0.76));
  background-size: 44px 44px, 44px 44px, cover;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46), 0 0 70px rgba(137, 233, 0, 0.14);
  backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .45s var(--motion-ease), box-shadow .35s var(--motion-ease);
  will-change: transform;
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 18%, rgba(137, 233, 0, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(22, 22, 22, .92), transparent 16%, transparent 84%, rgba(22, 22, 22, .92));
}

.showcase-noise {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  opacity: .22;
  background:
    radial-gradient(circle at 20% 30%, rgba(137, 233, 0, .16), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .08), transparent 18%),
    linear-gradient(115deg, transparent, rgba(137, 233, 0, .08), transparent);
  transform: translate3d(0, 0, 0);
  animation: showcaseAmbient 12s var(--motion-ease) infinite alternate;
}

.showcase-header,
.showcase-main-card,
.showcase-marquee,
.showcase-stats {
  position: relative;
  z-index: 2;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.showcase-header span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-header strong {
  color: var(--color-muted);
  font-size: 13px;
}

.showcase-main-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  margin: 4px auto 10px;
  padding: 16px;
  width: min(500px, 92%);
  border: 1px solid rgba(137, 233, 0, .32);
  border-radius: 24px;
  background: rgba(22, 22, 22, .72);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .48), 0 0 70px rgba(137, 233, 0, .28);
  transform: translate3d(0, 0, 70px) scale(1.12);
  animation: showcaseMainFloat 6s var(--motion-ease) infinite;
  will-change: transform, opacity;
  z-index: 5;
}

.showcase-main-image {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(145deg, #303030, #161616);
}

.showcase-main-card h3 {
  min-height: 0;
  margin-bottom: 8px;
  font-size: 22px;
}

.showcase-main-card p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 800;
}

.showcase-marquee,
.showcase-depth {
  overflow: hidden;
  margin-inline: -24px;
  padding: 6px 0;
}

.showcase-depth {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.showcase-depth-back {
  opacity: .48;
  transform: translate3d(0, 0, -80px) scale(.88);
  margin-top: 0;
}

.showcase-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: showcaseMarquee 30s linear infinite;
  will-change: transform;
}

.showcase-track-back {
  animation-duration: 54s;
  animation-direction: reverse;
}

.showcase-track.is-slowed {
  animation-duration: 90s;
}

.showcase-track.is-paused {
  animation-play-state: paused !important;
}

.showcase-product-card {
  width: 205px;
  flex: 0 0 205px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  transition: transform .35s var(--motion-ease), border-color .35s var(--motion-ease), box-shadow .35s var(--motion-ease), opacity .35s var(--motion-ease);
  animation: showcaseFloat 7s var(--motion-ease) infinite;
  will-change: transform, opacity;
}

.showcase-product-card:nth-child(even) {
  animation-delay: -2.8s;
}

.showcase-product-card-back {
  width: 180px;
  flex-basis: 180px;
  opacity: .72;
}

.showcase-product-card:hover {
  transform: translate3d(0, -8px, 0) scale(1.05);
  border-color: rgba(137, 233, 0, .72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38), 0 0 40px rgba(137, 233, 0, .22);
}

.showcase-product-image {
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-radius: 15px;
  background: linear-gradient(145deg, #303030, #161616);
}

.showcase-product-code {
  display: inline-flex;
  width: max-content;
  margin: 12px 0 8px;
  padding: 5px 9px;
  border: 1px solid rgba(137, 233, 0, .42);
  border-radius: 999px;
  background: rgba(137, 233, 0, .1);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(137, 233, 0, .18);
  animation: chipPulse 3.8s var(--motion-ease) infinite;
}

.showcase-product-title {
  display: block;
  min-height: 40px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.35;
}

.showcase-product-category {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.showcase-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  z-index: 3;
}

.showcase-chip {
  padding: 9px 11px;
  border: 1px solid rgba(137, 233, 0, .28);
  border-radius: 999px;
  background: rgba(22, 22, 22, .66);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 900;
}

.fade-right {
  transform: translateX(34px);
}

.fade-right.is-visible {
  transform: translateX(0);
}

@keyframes showcaseMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes showcaseFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes showcaseMainFloat {
  0%, 100% { transform: translate3d(0, 0, 70px) scale(1.12); }
  50% { transform: translate3d(0, -10px, 70px) scale(1.12); }
}

@keyframes showcasePulse {
  0%, 100% { opacity: .62; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes showcaseAmbient {
  from { transform: translate3d(-2%, -1%, 0) scale(1); opacity: .18; }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.04); opacity: .32; }
}

@keyframes chipPulse {
  0%, 100% { opacity: .9; box-shadow: 0 0 14px rgba(137, 233, 0, .16); }
  50% { opacity: 1; box-shadow: 0 0 26px rgba(137, 233, 0, .35); }
}

@keyframes showcaseMainFloatMobile {
  0%, 100% { transform: translate3d(0, 0, 50px) scale(1.04); }
  50% { transform: translate3d(0, -9px, 50px) scale(1.04); }
}

.showroom-orbit {
  position: absolute;
  inset: 70px 18px 34px 54px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(137, 233, 0, 0.12), transparent 62%),
    rgba(22, 22, 22, 0.36);
  box-shadow: inset 0 0 60px rgba(137, 233, 0, 0.08), 0 0 90px rgba(137, 233, 0, 0.1);
}

.product-collage {
  position: relative;
  height: 100%;
}

.collage-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(43, 43, 43, 0.88), rgba(22, 22, 22, 0.94));
  box-shadow: var(--shadow-deep), var(--shadow-glow);
}

.collage-card-1 {
  left: 11%;
  top: 6%;
  width: 64%;
}

.collage-card-2 {
  left: 2%;
  bottom: 12%;
  width: 42%;
}

.collage-card-3 {
  right: 3%;
  bottom: 7%;
  width: 40%;
}

.collage-image {
  width: 100%;
  height: 255px;
  object-fit: cover;
  background: linear-gradient(145deg, #303030, #171717);
}

.collage-card-2 .collage-image,
.collage-card-3 .collage-image {
  height: 165px;
}

.collage-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.72);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.stat-tile,
.feature,
.contact-card,
.spec-card,
.text-panel,
.form-card,
.admin-form,
.login-card,
.admin-panel,
.stat-card {
  border: 1px solid var(--border-accent);
  background: linear-gradient(145deg, rgba(43, 43, 43, 0.78), rgba(22, 22, 22, 0.82));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.stat-tile {
  min-height: 118px;
  padding: 24px;
  border-radius: 20px;
}

.stat-tile strong {
  display: block;
  color: var(--color-accent);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.stat-tile strong::after {
  content: "+";
}

.stat-tile strong:not([data-counter])::after {
  content: "";
}

.stat-tile span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 800;
}

.section {
  position: relative;
  padding: 112px 0;
}

.showroom-section {
  background:
    radial-gradient(circle at 5% 20%, rgba(137, 233, 0, 0.06), transparent 24rem),
    var(--color-dark);
}

.section-deep {
  border-top: 1px solid rgba(137, 233, 0, 0.1);
  border-bottom: 1px solid rgba(137, 233, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.78), rgba(22, 22, 22, 0.94)),
    var(--color-black);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  min-width: 80px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transform: translateY(-12px);
}

.section-link {
  position: relative;
  z-index: 2;
  min-width: max-content;
  color: var(--color-accent);
  font-weight: 900;
}

.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.products-filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(137, 233, 0, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.products-filter-field {
  display: grid;
  gap: 8px;
}

.products-filter-field label {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.products-filter-field input,
.products-filter-field select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(137, 233, 0, .2);
  border-radius: 12px;
  background: rgba(20, 20, 20, .5);
  color: var(--color-white);
  font: inherit;
}

.products-filter-field input:focus,
.products-filter-field select:focus {
  outline: none;
  border-color: rgba(137, 233, 0, .52);
  box-shadow: 0 0 0 3px rgba(137, 233, 0, .12);
}

.products-filter-actions {
  display: flex;
  gap: 10px;
}

.category-grid.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(137, 233, 0, 0.12);
  border-radius: var(--radius-lg);
  background: var(--color-dark-soft);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(137, 233, 0, 0.62);
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.36), 0 0 44px rgba(137, 233, 0, 0.18);
}

.category-media,
.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(137, 233, 0, 0.12), transparent 52%),
    linear-gradient(145deg, #303030, #171717);
}

.category-media::after,
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.78));
}

.card-image {
  width: 100%;
  height: 275px;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card .card-image {
  height: 250px;
}

.category-card:hover .card-image,
.product-card:hover .card-image {
  transform: scale(1.055);
}

.visual-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(137, 233, 0, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.08), transparent 46%),
    #292929;
}

.visual-placeholder span {
  max-width: 80%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.count-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(137, 233, 0, 0.42);
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.68);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.category-content,
.product-content {
  padding: 26px;
}

.category-content h3,
.product-content h3 {
  min-height: 58px;
}

.category-content p,
.product-content p {
  min-height: 78px;
  color: var(--color-muted);
  font-size: 15px;
}

.product-code {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(137, 233, 0, 0.42);
  border-radius: 999px;
  background: rgba(137, 233, 0, 0.09);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
}

.product-code.large {
  margin: 0;
  font-size: 14px;
}

.mini-specs {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.mini-specs li {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: rgba(22, 22, 22, 0.58);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.split,
.detail-grid,
.form-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.premium-split {
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  min-height: 170px;
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(137, 233, 0, 0.52);
  box-shadow: var(--shadow-glow);
}

.feature strong,
.feature span {
  display: block;
}

.feature strong {
  font-size: 20px;
  line-height: 1.25;
}

.feature span {
  margin-top: 10px;
  color: var(--color-muted);
}

.compact-feature-grid {
  grid-template-columns: 1fr;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sector-pill {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-accent);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(43, 43, 43, 0.78), rgba(22, 22, 22, 0.86));
  color: var(--color-white);
  font-size: 17px;
  font-weight: 900;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sector-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(137, 233, 0, 0.58);
  box-shadow: var(--shadow-glow);
}

.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, #89e900, #baff42);
  color: var(--color-black);
}

.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 22, 22, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner .neon-label {
  color: var(--color-black);
}

.cta-inner .neon-label::before {
  background: var(--color-black);
  box-shadow: none;
}

.cta-inner h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
}

.cta-inner p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(22, 22, 22, .78);
  font-weight: 800;
}

.cta-inner .btn {
  min-width: max-content;
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 88px;
  border-bottom: 1px solid var(--border-accent);
  background:
    radial-gradient(circle at 18% 18%, rgba(137, 233, 0, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(22, 22, 22, 0.72), rgba(34, 34, 34, 0.98)),
    var(--color-black);
}

.page-hero.compact {
  padding: 92px 0 74px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.catalog-detail-hero {
  text-align: center;
}

.catalog-detail-hero h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.catalog-detail-hero p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-intro-hero {
  text-align: center;
}

.about-intro-inner {
  max-width: 920px;
  margin-inline: auto;
}

.about-intro-inner .breadcrumb {
  justify-content: center;
}

.about-year-badge {
  margin-top: 28px;
}

.about-intro-title {
  max-width: 920px;
  margin: 18px auto 22px;
}

.about-intro-title span {
  color: var(--color-accent);
}

.about-intro-inner p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.corporate-profile-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(137, 233, 0, .08), transparent 24rem),
    linear-gradient(180deg, var(--color-dark), var(--color-black));
}

.corporate-section-head {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.corporate-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
}

.corporate-section-head span {
  display: block;
  width: 76px;
  height: 4px;
  margin: 18px auto 16px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 18px rgba(137, 233, 0, .3);
}

.corporate-section-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 700;
}

.corporate-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.corporate-visual-card,
.corporate-info-card,
.values-panel,
.corporate-long-copy {
  border: 1px solid rgba(137, 233, 0, .18);
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.corporate-visual-card {
  overflow: hidden;
  border-radius: 22px;
}

.corporate-visual-scene {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(137, 233, 0, .2), transparent 34%),
    radial-gradient(circle at 58% 36%, rgba(137, 233, 0, .16), transparent 18rem),
    linear-gradient(145deg, #2f2f2f, #171717);
}

.corporate-visual-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(137, 233, 0, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, .13) 1px, transparent 1px);
  background-size: 34px 34px;
}

.corporate-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.corporate-visual-logo {
  position: relative;
  z-index: 2;
  width: min(270px, 62%);
  aspect-ratio: 1.4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 26px;
  background: rgba(22, 22, 22, .46);
  box-shadow: 0 22px 70px rgba(137, 233, 0, .18);
}

.corporate-visual-logo img {
  width: 74%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(137, 233, 0, .32));
}

.corporate-visual-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.corporate-visual-lines i {
  position: absolute;
  width: 160px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(137, 233, 0, .55), transparent);
}

.corporate-visual-lines i:nth-child(1) { left: 8%; top: 24%; transform: rotate(18deg); }
.corporate-visual-lines i:nth-child(2) { right: 7%; top: 34%; transform: rotate(-22deg); }
.corporate-visual-lines i:nth-child(3) { left: 18%; bottom: 25%; transform: rotate(-14deg); }
.corporate-visual-lines i:nth-child(4) { right: 18%; bottom: 18%; transform: rotate(16deg); }

.production-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(137, 233, 0, .35);
}

.corporate-story-copy h3,
.values-panel h3 {
  margin: 0 0 22px;
  font-size: clamp(24px, 2.2vw, 32px);
}

.corporate-story-copy p,
.corporate-info-card p,
.value-item p,
.corporate-long-copy p {
  color: var(--color-muted);
}

.corporate-story-copy p strong,
.corporate-long-copy p strong {
  color: var(--color-accent);
}

.corporate-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.corporate-stat-row div {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(137, 233, 0, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.corporate-stat-row strong {
  color: var(--color-accent);
  font-size: 34px;
  line-height: 1;
}

.corporate-stat-row span {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.corporate-info-card {
  min-height: 246px;
  padding: 34px;
  border-radius: 18px;
}

.corporate-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: rgba(137, 233, 0, .16);
  color: var(--color-accent);
}

.corporate-icon svg {
  width: 22px;
  height: 22px;
}

.corporate-icon.small {
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin: 0;
  border-radius: 10px;
}

.corporate-icon.small svg {
  width: 18px;
  height: 18px;
}

.corporate-info-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.corporate-info-card p {
  margin: 0;
}

.values-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 18px;
  margin-bottom: 60px;
}

.values-panel::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(137, 233, 0, .09);
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 34px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-white);
  font-size: 18px;
}

.value-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.corporate-long-copy {
  padding: 36px;
  border-radius: 18px;
}

.corporate-long-copy p {
  font-size: 16px;
  line-height: 1.85;
}

.corporate-long-copy blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--color-accent);
  background: rgba(137, 233, 0, .08);
}

.corporate-long-copy blockquote p {
  margin: 0;
  color: var(--color-white);
  font-style: italic;
}

.corporate-long-copy cite {
  display: block;
  margin-top: 18px;
  color: var(--color-white);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.history-hero h1 {
  color: var(--color-white);
}

.history-timeline-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(137, 233, 0, .08), transparent 24rem),
    var(--color-dark);
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 34px;
  max-width: 1080px;
  margin: 0 auto;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(137, 233, 0, .4), transparent);
  box-shadow: 0 0 24px rgba(137, 233, 0, .18);
}

.history-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
  gap: 26px;
}

.history-timeline-item.from-left .history-card {
  grid-column: 1;
}

.history-timeline-item.from-right .history-card {
  grid-column: 3;
}

.history-timeline-item.from-left .history-year,
.history-timeline-item.from-right .history-year {
  grid-column: 2;
}

.history-year {
  position: relative;
  z-index: 2;
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(137, 233, 0, .38);
  border-radius: 999px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(137, 233, 0, .16);
}

.history-card {
  overflow: hidden;
  border: 1px solid rgba(137, 233, 0, .18);
  border-radius: 22px;
  background: var(--color-dark-soft);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transition: transform .28s var(--motion-ease), border-color .28s var(--motion-ease), box-shadow .28s var(--motion-ease);
}

.history-card:hover {
  transform: translateY(-7px);
  border-color: rgba(137, 233, 0, .5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38), 0 0 42px rgba(137, 233, 0, .16);
}

.history-card-image {
  height: 230px;
  overflow: hidden;
  background: var(--color-black);
}

.history-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--motion-ease);
}

.history-card:hover .history-card-image img {
  transform: scale(1.06);
}

.history-card-content {
  padding: 28px;
}

.history-card-content h2 {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: 24px;
}

.history-card-content p {
  margin: 0;
  color: var(--color-muted);
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 255, 255, .12);
}

.history-stats div {
  text-align: center;
}

.history-stats strong {
  display: block;
  color: var(--color-accent);
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(137, 233, 0, .24);
}

.history-stats span {
  display: block;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.history-note,
.history-award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 16px;
  border: 1px solid rgba(137, 233, 0, .24);
  border-radius: 12px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.history-note {
  max-width: 100%;
  color: #bfff75;
}

.history-note i,
.history-award i {
  flex: 0 0 auto;
  color: var(--color-accent);
}

.history-future-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(137, 233, 0, .1), transparent 22rem),
    var(--color-black);
}

.history-future-card {
  padding: 42px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(137, 233, 0, .09), rgba(255, 255, 255, .035)),
    var(--color-dark-soft);
  box-shadow: var(--shadow-deep), 0 0 42px rgba(137, 233, 0, .12);
}

.history-future-card h2 {
  max-width: 840px;
  margin: 12px 0 14px;
}

.history-future-card p {
  max-width: 760px;
  color: var(--color-muted);
}

@media (min-width: 992px) {
  .history-future-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .history-future-card h2 {
    margin: 0;
    max-width: 980px;
    text-wrap: balance;
  }

  .history-future-card .hero-actions {
    margin-top: 22px;
    justify-content: center;
  }
}

.quality-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 72px 0 82px;
  border-top: 1px solid rgba(137, 233, 0, .14);
  border-bottom: 1px solid rgba(137, 233, 0, .18);
  background:
    radial-gradient(circle at 18% 35%, rgba(137, 233, 0, .18), transparent 26rem),
    radial-gradient(circle at 48% 58%, rgba(255, 255, 255, .035), transparent 22rem),
    linear-gradient(180deg, #171717, #202020 52%, #191919);
}

.quality-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(137, 233, 0, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, .08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5) 58%, rgba(0,0,0,.25));
}

.quality-hero-wave {
  display: none;
}

.quality-hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  max-width: 920px;
  text-align: center;
}

.quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(137, 233, 0, .3);
  border-radius: 999px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .28), 0 0 22px rgba(137, 233, 0, .12);
}

.quality-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 18px var(--glow-accent);
}

.quality-hero h1 {
  max-width: 920px;
  margin: 42px auto 22px;
  font-size: clamp(46px, 4.7vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

.quality-hero h1 span {
  color: var(--color-accent);
}

.quality-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
  font-weight: 600;
}

.quality-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.quality-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s var(--motion-ease), box-shadow .25s var(--motion-ease), border-color .25s var(--motion-ease), background .25s var(--motion-ease);
}

.quality-btn svg {
  width: 17px;
  height: 17px;
}

.quality-btn:hover {
  transform: translateY(-2px);
}

.quality-btn-primary {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: 0 18px 34px rgba(137, 233, 0, .22);
}

.quality-btn-ghost {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.quality-btn-muted {
  background: rgba(255, 255, 255, .08);
  color: var(--color-white);
}

.quality-gallery-section {
  padding: 126px 0 82px;
  background: var(--color-black);
}

.quality-section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.quality-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 48px);
}

.quality-section-head span {
  display: block;
  width: 90px;
  height: 3px;
  margin: 16px auto 22px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 18px var(--glow-accent);
}

.quality-section-head p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--color-muted);
  font-size: 18px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.certificate-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(137, 233, 0, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32);
  transition: transform .28s var(--motion-ease), border-color .28s var(--motion-ease), box-shadow .28s var(--motion-ease);
}

.certificate-card:hover {
  z-index: 80;
  overflow: visible;
  transform: translateY(-7px);
  border-color: rgba(137, 233, 0, .34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42), 0 0 34px rgba(137, 233, 0, .12);
}

.certificate-preview {
  min-height: 184px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  overflow: visible;
}

.certificate-image {
  width: auto;
  height: 160px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 2px;
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  transform-origin: center;
  transition: transform .34s var(--motion-ease), box-shadow .34s var(--motion-ease), filter .34s var(--motion-ease);
}

.certificate-card:hover .certificate-image {
  position: relative;
  z-index: 90;
  transform: scale(5.5);
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .62), 0 0 54px rgba(137, 233, 0, .28);
}

.certificate-paper {
  position: relative;
  width: 118px;
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 18px 12px;
  border: 1px solid rgba(137, 233, 0, .18);
  background: var(--color-dark-soft);
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.certificate-paper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-black));
}

.certificate-paper b {
  position: absolute;
  left: -52px;
  top: 56px;
  width: 122px;
  color: var(--color-black);
  font-size: 8px;
  letter-spacing: .08em;
  transform: rotate(-90deg);
}

.certificate-paper strong {
  font-size: 15px;
  line-height: 1.1;
}

.certificate-paper small {
  font-size: 8px;
  color: var(--color-muted);
}

.certificate-paper em {
  max-width: 86px;
  color: var(--color-muted);
  font-size: 7px;
  font-style: normal;
  line-height: 1.25;
}

.certificate-content {
  padding: 20px;
}

.certificate-title-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.certificate-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--color-accent);
}

.certificate-icon svg {
  width: 17px;
  height: 17px;
}

.certificate-icon.smile,
.certificate-icon.award,
.certificate-icon.briefcase,
.certificate-icon.leaf {
  color: var(--color-accent);
}

.certificate-title-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.certificate-title-row p {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.certificate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 15px 0;
  color: var(--color-muted);
  font-size: 11px;
}

.certificate-paper-large {
  width: 292px;
  min-height: 390px;
  gap: 16px;
  padding: 42px 26px 34px 48px;
  box-shadow: none;
}

.certificate-paper-large::before {
  width: 46px;
}

.certificate-paper-large b {
  left: -43px;
  top: 128px;
  width: 210px;
  font-size: 16px;
}

.certificate-paper-large strong {
  font-size: 33px;
}

.certificate-paper-large small {
  font-size: 13px;
}

.certificate-paper-large em {
  max-width: 210px;
  font-size: 12px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover,
.breadcrumb strong {
  color: var(--color-accent);
}

.product-page-hero {
  padding: 50px 0 10px;
  border-bottom: 0;
}

.product-detail {
  padding-top: 64px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: center;
}

.detail-image-shell {
  overflow: hidden;
  border: 1px solid var(--border-accent);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 12%, rgba(137, 233, 0, 0.12), transparent 50%),
    linear-gradient(145deg, #303030, #171717);
  box-shadow: var(--shadow-deep);
}

.detail-image {
  width: 100%;
  min-height: 560px;
  max-height: 680px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--color-black);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 22px rgba(137, 233, 0, 0.18);
  transform: translateY(-2px);
}

.gallery-image {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.detail-copy h1 {
  font-size: clamp(38px, 4.8vw, 66px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.detail-meta > span:not(.product-code) {
  padding: 6px 11px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

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

.spec-card {
  min-height: 128px;
  padding: 22px;
  border-radius: 18px;
}

.spec-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-card strong {
  display: block;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.35;
}

.text-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
}

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

.text-panel p:last-child {
  margin-bottom: 0;
}

.form-card,
.admin-form,
.login-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.form-card h2 {
  font-size: 32px;
}

label {
  display: grid;
  gap: 9px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
select:focus,
textarea:focus,
.field-focused input,
.field-focused select,
.field-focused textarea {
  border-color: var(--color-accent);
  background: #121212;
  box-shadow: 0 0 0 4px rgba(137, 233, 0, 0.1), 0 0 24px rgba(137, 233, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.quote-layout {
  grid-template-columns: .82fr 1.18fr;
}

.quote-features {
  grid-template-columns: 1fr;
}

.alert {
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  font-weight: 800;
}

.alert.success {
  border-color: rgba(137, 233, 0, 0.42);
  background: rgba(137, 233, 0, 0.1);
}

.alert.error {
  border-color: rgba(255, 77, 77, 0.5);
  background: rgba(255, 77, 77, 0.12);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  min-height: 190px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(137, 233, 0, 0.54);
  box-shadow: var(--shadow-glow);
}

.contact-card span {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 16px 0 0;
  color: var(--color-white);
  font-size: 19px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 74px;
  border-bottom: 1px solid var(--border-accent);
  background:
    radial-gradient(circle at 22% 20%, rgba(137, 233, 0, .16), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(137, 233, 0, .08), transparent 24rem),
    linear-gradient(180deg, rgba(22, 22, 22, .88), rgba(34, 34, 34, .98));
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(137, 233, 0, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 72%);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(137, 233, 0, .34);
  border-radius: 999px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(137, 233, 0, 0);
  animation: supportBadgePulse 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  will-change: transform, box-shadow;
}

.contact-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 18px var(--glow-accent);
  animation: supportDotPulse 1.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  will-change: transform, opacity;
}

@keyframes supportBadgePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(137, 233, 0, 0), inset 0 0 0 rgba(137, 233, 0, 0);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(137, 233, 0, .14), inset 0 0 22px rgba(137, 233, 0, .08);
  }
}

@keyframes supportDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: .8;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.contact-hero-title {
  margin-bottom: 22px;
}

.contact-hero-title span {
  color: var(--color-accent);
}

.contact-hero-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-muted);
  font-size: 18px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.contact-mini-btn {
  min-width: 150px;
}

.contact-section {
  background:
    radial-gradient(circle at 6% 18%, rgba(137, 233, 0, .06), transparent 24rem),
    var(--color-dark);
}

.eska-contact-grid,
.contact-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 26px;
  align-items: start;
}

.eska-contact-card,
.contact-form-card,
.map-box,
.social-box,
.quick-card {
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(43, 43, 43, .82), rgba(22, 22, 22, .86));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.eska-contact-card,
.contact-form-card,
.social-box {
  padding: 30px;
}

.eska-contact-card h2,
.contact-form-card h2,
.social-box-title {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
}

.eska-contact-card p,
.social-box p,
.quick-card p {
  color: var(--color-muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(22, 22, 22, .62);
}

.contact-label {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-value {
  color: var(--color-white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-control {
  border-radius: 15px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.required-note {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.consent-row {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.consent-text a {
  color: var(--color-accent);
  font-weight: 900;
}

.contact-submit-btn {
  width: 100%;
}

.contact-media-grid {
  margin-top: 28px;
}

.map-box {
  overflow: hidden;
  padding: 12px;
}

.map-inner {
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-black);
}

.map-embed {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.25) brightness(1.16) contrast(1.04) saturate(.9);
}

.contact-map-action {
  margin-top: 16px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(137, 233, 0, .32);
  border-radius: 14px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .22s var(--motion-ease), box-shadow .22s var(--motion-ease), border-color .22s var(--motion-ease);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(137, 233, 0, .72);
  box-shadow: 0 0 26px rgba(137, 233, 0, .18);
}

.social-info-list {
  display: grid;
  gap: 14px;
}

.social-info-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(22, 22, 22, .58);
}

.social-info-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-accent);
  color: var(--color-black);
  font-weight: 900;
}

.social-info-card h3 {
  min-height: 0;
  margin-bottom: 4px;
  font-size: 18px;
}

.social-info-card p {
  margin: 0;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.quick-card {
  display: block;
  padding: 24px;
  transition: transform .22s var(--motion-ease), border-color .22s var(--motion-ease), box-shadow .22s var(--motion-ease);
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(137, 233, 0, .62);
  box-shadow: 0 0 34px rgba(137, 233, 0, .14), 0 22px 70px rgba(0, 0, 0, .3);
}

.quick-card h3 {
  min-height: 0;
  margin-bottom: 8px;
  color: var(--color-accent);
}

.legal-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(137, 233, 0, .07), transparent 24rem),
    var(--color-dark);
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(43, 43, 43, .84), rgba(22, 22, 22, .9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1.25;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--color-muted);
}

.legal-card strong {
  color: var(--color-white);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  background: var(--glass);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 26px 0 12px;
  border-top: 1px solid var(--border-accent);
  background: var(--color-black);
}

.footer-glow {
  position: absolute;
  left: 10%;
  top: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(137, 233, 0, 0.08);
  filter: blur(18px);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) .72fr 1fr 1.35fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-company p {
  max-width: 420px;
  color: var(--color-muted);
}

.footer-company {
  align-self: center;
}

.footer-cta {
  margin-top: 24px;
  min-width: 136px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-col a {
  max-width: 220px;
}

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

.footer-contact {
  min-width: 260px;
}

.footer-contact a,
.footer-contact p {
  max-width: 320px;
}

.footer-legal a {
  max-width: 190px;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 179, 40, 0.26);
  border-radius: 999px;
  background: #ffffff;
  color: #1eb328;
  box-shadow: 0 12px 28px rgba(20, 32, 48, .18), 0 0 20px rgba(30, 179, 40, .14);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.whatsapp-float i {
  font-size: 44px;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(20, 32, 48, .22), 0 0 22px rgba(30, 179, 40, .2);
  filter: saturate(1.06);
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .68s ease, transform .68s ease;
}

body.js-ready .reveal.fade-right {
  transform: translateX(34px);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.js-ready .reveal.fade-right.is-visible {
  transform: translateX(0);
}

.delay-1 {
  transition-delay: .14s;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(920px 420px at 14% -8%, rgba(137, 233, 0, 0.14), transparent 65%),
    radial-gradient(700px 360px at 100% 100%, rgba(137, 233, 0, 0.08), transparent 64%),
    linear-gradient(180deg, #131619 0%, #0f1215 100%);
}

.login-shell {
  width: min(470px, 100%);
}

.login-card {
  display: grid;
  gap: 15px;
  border: 1px solid rgba(137, 233, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(24, 28, 33, 0.94) 0%, rgba(18, 22, 26, 0.98) 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 6px 22px rgba(137, 233, 0, 0.08);
  backdrop-filter: blur(10px);
}

.login-card h1 {
  margin: 0 0 2px;
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
  color: #f4f8fc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.login-card p {
  margin: 0 0 8px;
  color: rgba(240, 245, 250, 0.88);
}

.admin-login .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #99ef22 0%, #77c900 100%);
  color: #0f171f;
  box-shadow: 0 16px 34px rgba(137, 233, 0, 0.24);
}

.admin-login .login-card label {
  color: rgba(248, 251, 255, 0.94);
  font-weight: 700;
}

.admin-login .login-card input {
  border-color: rgba(137, 233, 0, 0.2);
  background: rgba(9, 12, 15, 0.88);
  color: #f4f8fb;
  border-radius: 12px;
  min-height: 48px;
}

.admin-login .login-card input::placeholder {
  color: rgba(207, 216, 228, 0.52);
}

.admin-login .login-card input:focus {
  border-color: rgba(137, 233, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(137, 233, 0, 0.17), 0 0 0 1px rgba(137, 233, 0, 0.35) inset;
}

.admin-login .login-card .btn {
  margin-top: 6px;
  min-height: 50px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
}

.admin-login .login-card .alert.error {
  border: 1px solid rgba(255, 84, 84, 0.45);
  background: rgba(96, 22, 22, 0.38);
  color: #ffd7d7;
}

.admin-body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #202020;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  border-right: 1px solid var(--border-soft);
  background: var(--color-black);
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.admin-sidebar nav a {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--color-muted);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  color: var(--color-white);
  background: var(--color-dark-soft);
}

.admin-sidebar b {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-black);
}

.admin-main {
  min-width: 0;
  padding: 34px;
}

.admin-topbar,
.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-topbar h1,
.admin-panel-head h2 {
  margin: 0;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.stat-card {
  padding: 22px;
  border-radius: 18px;
}

.stat-card span {
  color: var(--color-muted);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--color-accent);
  font-size: 36px;
}

.admin-panel {
  margin-top: 22px;
  padding: 22px;
  border-radius: 18px;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--color-accent);
  font-size: 13px;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.on {
  background: rgba(137, 233, 0, 0.1);
  color: var(--color-accent);
}

.status.off {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.row-actions a,
.row-actions button,
.gallery-admin-item button {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 8px 10px;
  cursor: pointer;
}

.row-actions a:hover,
.row-actions button:hover,
.gallery-admin-item button:hover {
  border-color: var(--color-accent);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.compact-grid {
  grid-template-columns: repeat(2, max-content);
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input {
  width: 18px;
  height: 18px;
}

.thumb-preview {
  width: 180px;
}

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.admin-gallery-upload {
  display: grid;
  gap: 8px;
}

.admin-gallery-upload small {
  color: #7c8a9c;
  font-size: 13px;
  line-height: 1.5;
}

.gallery-admin-item {
  display: grid;
  gap: 8px;
}

.unread-row {
  background: rgba(137, 233, 0, 0.06);
}

.quote-message {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--color-black);
  color: var(--color-muted);
}

@media (max-width: 1120px) {
  .hero-layout,
  .detail-grid,
  .split,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .category-grid,
  .product-grid,
  .category-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-filter-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .spec-grid,
  .eska-contact-grid,
  .contact-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .history-timeline::before {
    left: 45px;
  }

  .history-timeline-item {
    grid-template-columns: 92px 1fr;
    align-items: start;
  }

  .history-timeline-item.from-left .history-year,
  .history-timeline-item.from-right .history-year {
    grid-column: 1;
  }

  .history-timeline-item.from-left .history-card,
  .history-timeline-item.from-right .history-card {
    grid-column: 2;
  }

  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .nav-shell {
    min-height: 76px;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .site-header.is-scrolled .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .nav-actions {
    display: flex;
    justify-self: end;
    grid-column: 4;
    gap: 8px;
  }

  .header-search-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .nav-doc-link {
    min-height: 42px;
    padding: 0 11px;
    border-radius: 13px;
    font-size: 12px;
  }

  .cart-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .cart-link-icon {
    width: 20px;
    height: 20px;
  }

  .site-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border-accent);
    border-radius: 18px;
    background: rgba(22, 22, 22, 0.96);
    box-shadow: var(--shadow-deep);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-dropdown-toggle {
    padding: 12px 14px;
  }

  .site-nav a::after,
  .site-nav .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-toggle::before {
    transform: rotate(45deg) translateY(-2px);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 360px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .btn-header {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 36px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-showcase {
    min-height: 460px;
  }

  .showcase-panel {
    min-height: 520px;
  }

  .showcase-depth-back {
    margin-top: 0;
  }

  .showcase-main-card {
    grid-template-columns: 150px 1fr;
  }

  .showcase-main-image {
    height: 140px;
  }

  .collage-card-1 {
    width: 78%;
    left: 8%;
  }

  .collage-card-2,
  .collage-card-3 {
    width: 48%;
  }

  .hero-stats,
  .sector-grid,
  .feature-grid,
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head::after {
    width: 120px;
    flex: none;
    transform: none;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-image {
    min-height: 420px;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .preloader-content {
    width: min(100% - 30px, 440px);
  }

  .preloader-title {
    font-size: 34px;
  }

  .preloader-subtitle {
    max-width: 330px;
  }

  .nav-shell {
    grid-template-columns: auto auto auto auto;
    gap: 8px;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo {
    width: 136px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 128px;
  }

  .nav-doc-link {
    min-height: 38px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 11px;
  }

  .cart-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .cart-link-icon {
    width: 18px;
    height: 18px;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-showcase {
    min-height: 390px;
  }

  .showcase-panel {
    min-height: 500px;
    padding: 16px;
    border-radius: 22px;
  }

  .showcase-main-card {
    grid-template-columns: 130px 1fr;
    max-width: none;
    width: 100%;
    margin-bottom: 8px;
    padding: 14px;
    transform: translate3d(0, 0, 50px) scale(1.04);
    animation-name: showcaseMainFloatMobile;
  }

  .showcase-main-image {
    height: 122px;
  }

  .showcase-marquee {
    margin-inline: -16px;
  }

  .showcase-depth {
    margin-inline: -16px;
  }

  .showcase-depth-back {
    transform: translate3d(0, 0, -60px) scale(.82);
  }

  .showcase-track-back {
    animation-duration: 70s;
  }

  .showcase-product-card {
    width: 178px;
    flex-basis: 178px;
  }

  .showcase-product-image {
    height: 96px;
  }

  .showroom-orbit {
    inset: 30px 0;
  }

  .collage-image {
    height: 230px;
  }

  .collage-card-2 .collage-image,
  .collage-card-3 .collage-image {
    height: 145px;
  }

  .hero-stats,
  .category-grid,
  .product-grid,
  .category-grid.wide,
  .sector-grid,
  .feature-grid,
  .contact-grid,
  .eska-contact-grid,
  .contact-media-grid,
  .spec-grid,
  .form-grid,
  .footer-grid,
  .quick-actions,
  .admin-gallery {
    grid-template-columns: 1fr;
  }

  .corporate-section-head {
    margin-bottom: 42px;
  }

  .corporate-visual-scene {
    min-height: 250px;
  }

  .mission-vision-grid,
  .corporate-stat-row,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .history-timeline {
    gap: 24px;
  }

  .history-timeline::before {
    display: none;
  }

  .history-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .history-timeline-item.from-left .history-year,
  .history-timeline-item.from-right .history-year,
  .history-timeline-item.from-left .history-card,
  .history-timeline-item.from-right .history-card {
    grid-column: 1;
  }

  .history-year {
    width: max-content;
    min-width: 92px;
    min-height: 46px;
  }

  .history-card-content,
  .history-future-card {
    padding: 24px;
  }

  .history-stats {
    grid-template-columns: 1fr;
  }

  .history-stats div {
    text-align: left;
  }

  .quality-hero {
    min-height: 380px;
    padding: 62px 0 68px;
    background:
      radial-gradient(circle at 12% 30%, rgba(137, 233, 0, .18), transparent 18rem),
      linear-gradient(180deg, #171717, #202020 52%, #191919);
  }

  .quality-hero h1 {
    margin-top: 28px;
    font-size: clamp(38px, 10vw, 52px);
  }

  .quality-hero p {
    font-size: 15px;
    font-weight: 600;
  }

  .quality-hero-actions {
    margin-top: 24px;
  }

  .quality-gallery-section {
    padding-top: 86px;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-paper-large {
    width: min(260px, 100%);
    min-height: 350px;
  }

  .corporate-info-card,
  .values-panel,
  .corporate-long-copy {
    padding: 24px;
  }

  .corporate-long-copy cite {
    text-align: left;
  }

  .stat-tile,
  .feature,
  .contact-card {
    min-height: auto;
  }

  .category-content h3,
  .product-content h3,
  .category-content p,
  .product-content p {
    min-height: 0;
  }

  .card-image,
  .product-card .card-image {
    height: 230px;
  }

  .page-hero,
  .page-hero.compact {
    padding: 70px 0 54px;
  }

  .detail-image {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-card,
  .admin-form,
  .login-card {
    padding: 22px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .contact-hero {
    padding: 72px 0 54px;
  }

  .eska-contact-card,
  .contact-form-card,
  .social-box {
    padding: 22px;
  }

  .map-embed {
    min-height: 320px;
  }

  .admin-main {
    padding: 20px 14px;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    gap: 6px;
  }

  .brand-logo {
    width: 118px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 112px;
  }

  .nav-doc-link {
    min-height: 36px;
    padding: 0 7px;
    font-size: 10px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .cart-link {
    width: 38px;
    height: 38px;
  }
}

/* Professional mobile experience */
.mobile-drawer,
.mobile-drawer-overlay {
  display: none;
}

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  body.drawer-open {
    overflow: hidden;
    touch-action: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .site-header {
    z-index: 120;
    background: rgba(34, 34, 34, .92);
    backdrop-filter: blur(14px);
  }

  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: min(190px, 54vw);
  }

  .site-nav,
  .nav-actions {
    display: none !important;
  }

  .nav-toggle {
    display: grid;
    grid-column: 2;
    place-items: center;
    align-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(137, 233, 0, .22);
    border-radius: 14px;
    background: rgba(43, 43, 43, .82);
    box-shadow: 0 0 22px rgba(137, 233, 0, .08);
  }

  .nav-toggle span {
    width: 20px;
    margin: 0;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: block;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s var(--motion-ease), visibility .28s var(--motion-ease);
  }

  .mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-drawer-overlay[hidden] {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 140;
    width: min(86vw, 390px);
    height: 100vh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background:
      radial-gradient(circle at 80% 0%, rgba(137, 233, 0, .1), transparent 18rem),
      #222222;
    border-left: 1px solid rgba(137, 233, 0, .2);
    box-shadow: -30px 0 100px rgba(0, 0, 0, .55);
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }

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

  .mobile-drawer-head {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(137, 233, 0, .14);
  }

  .mobile-drawer-brand .brand-logo {
    width: min(180px, 55vw);
  }

  .mobile-drawer-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(137, 233, 0, .22);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    color: var(--color-white);
    font-size: 18px;
  }

  .mobile-drawer-nav {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 18px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-drawer-link,
  .mobile-accordion-toggle {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
    color: var(--color-white);
    font: inherit;
    font-weight: 850;
    text-align: left;
  }

  .mobile-drawer-link i,
  .mobile-accordion-toggle i {
    color: var(--color-accent);
  }

  .mobile-accordion-toggle > span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-drawer-link:hover,
  .mobile-accordion-toggle:hover,
  .mobile-drawer-link:focus-visible,
  .mobile-accordion-toggle:focus-visible {
    color: var(--color-accent);
    border-color: rgba(137, 233, 0, .28);
    background: rgba(137, 233, 0, .07);
  }

  .mobile-accordion-toggle .fa-chevron-down {
    transition: transform .24s var(--motion-ease);
  }

  .mobile-accordion.is-open .mobile-accordion-toggle .fa-chevron-down {
    transform: rotate(180deg);
  }

  .mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 8px;
    transition: max-height .32s var(--motion-ease), opacity .24s ease, padding .24s ease;
  }

  .mobile-accordion.is-open .mobile-accordion-panel {
    max-height: 580px;
    opacity: 1;
    padding: 8px 8px 2px;
  }

  .mobile-accordion-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-accordion-panel a:hover,
  .mobile-accordion-panel a:focus-visible {
    color: var(--color-accent);
    background: rgba(137, 233, 0, .08);
  }

  .mobile-drawer-actions {
    display: grid;
    gap: 10px;
    padding: 16px 20px 22px;
    border-top: 1px solid rgba(137, 233, 0, .14);
    background: rgba(22, 22, 22, .72);
  }

  .mobile-drawer-utility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-utility-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid rgba(137, 233, 0, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-utility-cart {
    position: relative;
  }

  .mobile-utility-cart em {
    min-width: 22px;
    min-height: 22px;
    display: inline-grid;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #1b1f12;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-drawer-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .mobile-drawer-search {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-drawer-search input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(137, 233, 0, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    color: var(--color-white);
  }

  .mobile-drawer-search input::placeholder {
    color: rgba(255, 255, 255, .58);
  }

  .mobile-drawer-search button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(137, 233, 0, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    color: var(--color-accent);
    cursor: pointer;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid,
  .category-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card,
  .product-card {
    border-radius: 18px;
  }

  .category-content,
  .product-content {
    padding: 20px;
  }

  .category-content p,
  .product-content p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .btn,
  .btn-small,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  .detail-grid,
  .form-layout,
  .quote-cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-media {
    order: 1;
  }

  .detail-copy {
    order: 2;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-actions .btn,
  .detail-actions .inline-cart-form,
  .detail-actions .inline-cart-form .btn {
    width: 100%;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .gallery-thumb {
    flex: 0 0 112px;
    scroll-snap-align: start;
  }

  .quote-cart-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(137, 233, 0, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
  }

  .cart-update-form {
    display: grid;
    gap: 14px;
  }

  .cart-item-media {
    grid-row: span 2;
    overflow: hidden;
    border-radius: 14px;
    background: var(--color-black);
  }

  .cart-item-media img,
  .cart-item-media .gallery-image {
    width: 100%;
    height: 96px;
    object-fit: contain;
  }

  .cart-qty,
  .cart-remove {
    grid-column: 1 / -1;
  }

  .cart-qty input {
    width: 100%;
    min-height: 48px;
  }

  .cart-remove {
    min-height: 46px;
  }

  input,
  select,
  textarea {
    width: 100%;
    min-height: 48px;
  }

  .form-card .btn,
  .form-card button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding: 42px 0 36px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: clamp(38px, 10vw, 58px);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-showcase,
  .showcase-panel {
    min-height: 0;
  }

  .hero-showcase {
    overflow: hidden;
  }

  .showcase-panel {
    padding: 14px;
  }

  .category-grid,
  .product-grid,
  .category-grid.wide,
  .sector-grid,
  .feature-grid,
  .contact-grid,
  .eska-contact-grid,
  .contact-media-grid,
  .form-grid,
  .footer-grid,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-actions .btn,
  .product-actions .inline-cart-form,
  .product-actions .inline-cart-form .btn {
    width: 100%;
  }

  .detail-image {
    min-height: 300px;
    object-fit: contain;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .form-card,
  .admin-form,
  .login-card,
  .contact-form-card,
  .eska-contact-card,
  .social-box {
    padding: 22px;
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-col a,
  .footer-col p {
    max-width: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: min(156px, 58vw);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .mobile-drawer {
    width: min(90vw, 390px);
  }

  .mobile-drawer-head {
    padding-inline: 16px;
  }

  .mobile-drawer-nav {
    padding-inline: 14px;
  }

  .mobile-drawer-actions {
    padding-inline: 16px;
  }

  .page-hero,
  .page-hero.compact {
    padding: 62px 0 46px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .quote-cart-item {
    grid-template-columns: 82px 1fr;
  }
}

/* Admin login final contrast overrides */
body.admin-login .login-card h1 {
  color: #eef5ff !important;
  opacity: 1 !important;
}

body.admin-login .login-card p {
  color: rgba(231, 240, 252, 0.9) !important;
  opacity: 1 !important;
}

body.admin-login .login-card label {
  color: #f3f8ff !important;
  opacity: 1 !important;
}

/* Premium B2B quote builder */
.quote-builder-hero h1 {
  max-width: 900px;
}

.quote-builder-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 86px;
  background:
    radial-gradient(circle at 10% 18%, rgba(137, 233, 0, .08), transparent 24rem),
    linear-gradient(180deg, var(--color-dark), var(--color-black));
}

.quote-builder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(rgba(137, 233, 0, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, .12) 1px, transparent 1px);
  background-size: 78px 78px;
}

.quote-builder-section > .container {
  position: relative;
  z-index: 2;
}

.quote-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 34px;
}

.quote-stepper span {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
}

.quote-stepper b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--color-white);
  font-size: 12px;
}

.quote-stepper .is-active {
  border-color: rgba(137, 233, 0, .45);
  color: var(--color-accent);
  box-shadow: 0 0 24px rgba(137, 233, 0, .12);
}

.quote-stepper .is-active b {
  background: var(--color-accent);
  color: var(--color-black);
}

.quote-builder-alert {
  max-width: 980px;
  margin: 0 auto 18px;
}

.quote-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.quote-builder-head {
  margin-bottom: 22px;
}

.quote-builder-head h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3vw, 44px);
}

.quote-product-list {
  display: grid;
  gap: 18px;
}

.quote-product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(137, 233, 0, .14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(43, 43, 43, .72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
  transition: transform .28s var(--motion-ease), border-color .28s ease, box-shadow .28s ease;
}

.quote-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(137, 233, 0, .42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34), 0 0 34px rgba(137, 233, 0, .12);
}

.quote-product-media {
  min-height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 22%, rgba(137, 233, 0, .16), transparent 9rem),
    linear-gradient(145deg, #161616, #252525);
}

.quote-product-image,
.quote-product-media img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  padding: 18px;
  transition: transform .35s var(--motion-ease);
}

.quote-product-card:hover .quote-product-image,
.quote-product-card:hover .quote-product-media img {
  transform: scale(1.06);
}

.quote-product-body {
  min-width: 0;
}

.quote-product-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.quote-product-category {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.quote-product-body h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.quote-product-body p {
  max-width: 660px;
  margin: 0 0 14px;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quote-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.quote-mini-specs li {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(137, 233, 0, .16);
  border-radius: 999px;
  background: rgba(22, 22, 22, .48);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.quote-product-actions {
  display: grid;
  grid-template-columns: 108px max-content max-content max-content;
  align-items: end;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.quote-product-actions::-webkit-scrollbar {
  display: none;
}

.quote-qty-form {
  display: contents;
}

.quote-qty-form button,
.quote-detail-link,
.quote-remove-btn {
  align-self: end;
}

.quote-qty-form label {
  display: grid;
  gap: 5px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.quote-qty-form input {
  width: 108px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(137, 233, 0, .18);
  border-radius: 12px;
  background: var(--color-black);
  color: var(--color-white);
}

.quote-qty-form button,
.quote-remove-btn,
.quote-detail-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  transition: transform .22s var(--motion-ease), border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.quote-qty-form button {
  border: 1px solid rgba(137, 233, 0, .32);
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  cursor: pointer;
}

.quote-detail-link {
  border: 1px solid rgba(137, 233, 0, .18);
  color: var(--color-accent);
}

.quote-remove-btn {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  color: var(--color-muted);
  cursor: pointer;
}

.quote-qty-form button:hover,
.quote-qty-form button.is-ready,
.quote-detail-link:hover,
.quote-remove-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 22px rgba(137, 233, 0, .12);
}

.quote-summary-panel {
  position: sticky;
  top: 104px;
}

.quote-summary-card {
  padding: 24px;
  border: 1px solid rgba(137, 233, 0, .2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(137, 233, 0, .14), transparent 12rem),
    rgba(22, 22, 22, .86);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
  backdrop-filter: blur(16px);
}

.quote-summary-card h2 {
  margin: 8px 0 18px;
  font-size: 30px;
}

.quote-summary-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.quote-summary-stats div {
  padding: 14px;
  border: 1px solid rgba(137, 233, 0, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.quote-summary-stats strong {
  display: block;
  color: var(--color-accent);
  font-size: 28px;
  line-height: 1;
}

.quote-summary-stats span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.quote-summary-list {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.quote-summary-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .04);
}

.quote-summary-list span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 900;
}

.quote-summary-list strong {
  min-width: 0;
  color: var(--color-white);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quote-summary-list small,
.quote-summary-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.quote-whatsapp-box {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(137, 233, 0, .2);
  border-radius: 18px;
  background: rgba(137, 233, 0, .07);
}

.quote-whatsapp-box strong,
.quote-whatsapp-box span {
  display: block;
}

.quote-whatsapp-box strong {
  color: var(--color-white);
}

.quote-whatsapp-box span {
  color: var(--color-muted);
  font-size: 13px;
}

.quote-whatsapp-box .btn {
  width: 100%;
}

.quote-compact-form {
  display: grid;
  gap: 10px;
}

.quote-compact-form label {
  display: grid;
  gap: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.quote-compact-form input,
.quote-compact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  background: #101010;
  color: var(--color-white);
  outline: 0;
}

.quote-compact-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.quote-compact-form input:focus,
.quote-compact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(137, 233, 0, .08);
}

.quote-compact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.quote-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 32px;
  text-align: center;
  border: 1px solid rgba(137, 233, 0, .2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .16), transparent 18rem),
    rgba(255, 255, 255, .04);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.quote-empty-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(137, 233, 0, .28);
  border-radius: 24px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-size: 34px;
  box-shadow: 0 0 36px rgba(137, 233, 0, .16);
}

.quote-empty-state h2 {
  margin: 12px 0;
  font-size: clamp(32px, 4vw, 52px);
}

.quote-empty-state p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .quote-builder-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .quote-summary-panel {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .quote-builder-section {
    padding: 46px 0 58px;
    overflow-x: hidden;
  }

  .quote-stepper {
    display: flex;
    max-width: none;
    margin: 0 -16px 24px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .quote-stepper::-webkit-scrollbar {
    display: none;
  }

  .quote-stepper span {
    flex: 0 0 auto;
    min-width: 156px;
    min-height: 46px;
    scroll-snap-align: start;
  }

  .quote-product-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
  }

  .quote-product-media {
    min-height: 210px;
    width: 100%;
  }

  .quote-product-image,
  .quote-product-media img {
    height: 206px;
    padding: 14px;
  }

  .quote-product-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .quote-product-top .product-code,
  .quote-product-category {
    width: fit-content;
    max-width: 100%;
  }

  .quote-product-body h3 {
    font-size: 22px;
  }

  .quote-mini-specs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-product-actions,
  .quote-qty-form {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .quote-qty-form label,
  .quote-qty-form input,
  .quote-qty-form button,
  .quote-detail-link,
  .quote-remove-btn {
    width: 100%;
  }

  .quote-qty-form input,
  .quote-qty-form button,
  .quote-detail-link,
  .quote-remove-btn {
    min-height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }

  .quote-summary-card {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    border-radius: 22px;
  }

  .quote-summary-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .quote-whatsapp-box .btn,
  .quote-compact-form .btn {
    min-height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  .quote-compact-form input,
  .quote-compact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .quote-builder-section {
    padding: 38px 0 48px;
  }

  .quote-stepper span {
    min-width: 142px;
    padding: 0 12px;
    font-size: 13px;
  }

  .quote-product-card {
    padding: 12px;
  }

  .quote-product-media {
    min-height: 184px;
  }

  .quote-product-image,
  .quote-product-media img {
    height: 184px;
  }

  .quote-summary-stats {
    grid-template-columns: 1fr;
  }

  .quote-empty-state {
    padding: 36px 18px;
    border-radius: 22px;
  }

  .quote-empty-state .btn {
    width: 100%;
  }
}

/* Premium home landing */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 78% 28%, rgba(137, 233, 0, .18), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(137, 233, 0, .08), transparent 24rem),
    linear-gradient(180deg, #222222, #1d1d1d 58%, #222222);
}

.home-hero-grid,
.home-section::before {
  pointer-events: none;
  position: absolute;
  inset: 0;
  content: "";
  opacity: .26;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .88), transparent 88%);
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.home-hero-copy {
  max-width: 760px;
}

.home-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.home-label::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 18px rgba(137, 233, 0, .45);
}

.home-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.home-hero-title-animated {
  position: relative;
  color: #26313d;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .home-hero-title-animated::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    color: transparent;
    background-image: linear-gradient(
      105deg,
      rgba(38, 49, 61, 0) 0%,
      rgba(38, 49, 61, 0) 44%,
      rgba(165, 245, 45, .94) 50%,
      rgba(38, 49, 61, 0) 56%,
      rgba(38, 49, 61, 0) 100%
    );
    background-size: 230% 100%;
    background-position: 140% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: homeTitleSweep 5.2s linear infinite;
  }
}

@keyframes homeTitleSweep {
  to {
    background-position: -120% 50%;
  }
}

.home-hero-copy p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.72;
}

.home-hero-actions,
.home-product-actions,
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-stat-chips span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  border: 1px solid rgba(137, 233, 0, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 850;
}

.home-stat-chips strong {
  color: var(--color-accent);
}

.home-showcase {
  position: relative;
  min-width: 0;
  perspective: 1000px;
}

.home-showcase-orb {
  position: absolute;
  inset: 10% 0 auto 8%;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(137, 233, 0, .28), transparent 68%);
  filter: blur(34px);
  opacity: .78;
  animation: showcasePulse 6s var(--motion-ease) infinite;
}

.home-showcase-panel {
  position: relative;
  min-height: 560px;
  padding: 26px;
  border: 1px solid rgba(137, 233, 0, .24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
    rgba(34, 34, 34, .72);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .48), 0 0 60px rgba(137, 233, 0, .1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .35s var(--motion-ease);
}

.home-showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(137, 233, 0, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 233, 0, .08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.home-showcase-header,
.home-showcase-main,
.home-showcase-marquee {
  position: relative;
  z-index: 2;
}

.home-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.home-showcase-header span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-showcase-header strong {
  color: var(--color-muted);
  font-size: 13px;
}

.home-showcase-main {
  width: min(92%, 590px);
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 18px;
  margin: 10px auto 28px;
  padding: 20px;
  border: 1px solid rgba(137, 233, 0, .36);
  border-radius: 24px;
  background: rgba(22, 22, 22, .76);
  box-shadow: 0 26px 72px rgba(0, 0, 0, .42), 0 0 48px rgba(137, 233, 0, .18);
  animation: showcaseMainFloat 6s var(--motion-ease) infinite;
}

.home-showcase-main img {
  width: 100%;
  height: 166px;
  object-fit: contain;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .2), transparent 70%), #161616;
}

.home-showcase-main span,
.home-showcase-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(137, 233, 0, .28);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(137, 233, 0, .12);
}

.home-showcase-main h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.6vw, 38px);
}

.home-showcase-main p {
  margin: 0;
  color: var(--color-muted);
}

.home-showcase-marquee {
  margin-inline: -26px;
  overflow: hidden;
}

.home-showcase-track {
  gap: 16px;
  padding: 4px 0 12px;
}

.home-showcase-card {
  width: 210px;
  flex: 0 0 210px;
  padding: 14px;
  border: 1px solid rgba(137, 233, 0, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--motion-ease), border-color .25s ease, box-shadow .25s ease;
}

.home-showcase-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.home-showcase-card:hover {
  transform: translateY(-7px) scale(1.05);
  border-color: rgba(137, 233, 0, .62);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .35), 0 0 34px rgba(137, 233, 0, .18);
}

.home-showcase-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 15px;
  background: radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .18), transparent 70%), #161616;
}

.home-showcase-card strong,
.home-showcase-card small {
  display: block;
}

.home-showcase-card strong {
  min-height: 42px;
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.28;
}

.home-showcase-card small {
  margin-top: 6px;
  color: var(--color-muted);
  font-weight: 800;
}

.home-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--color-dark);
}

.home-section-deep {
  background: #1b1b1b;
}

.home-section-black {
  background: #161616;
}

.home-section-head {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 42px;
}

.home-section-head h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4.4vw, 64px);
}

.home-section-head p {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 17px;
}

.home-category-grid,
.home-product-grid,
.home-advantage-grid,
.home-sector-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.home-category-grid,
.home-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-advantage-grid,
.home-sector-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-card,
.home-product-card,
.home-advantage-card,
.home-sector-card {
  min-width: 0;
  border: 1px solid rgba(137, 233, 0, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  overflow: hidden;
  transition: transform .28s var(--motion-ease), border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.home-category-card:hover,
.home-product-card:hover,
.home-advantage-card:hover,
.home-sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(137, 233, 0, .65);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .3), 0 0 34px rgba(137, 233, 0, .16);
}

.home-category-media,
.home-product-media {
  display: block;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .16), transparent 70%), #161616;
}

.home-category-media img,
.home-product-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 18px;
  transition: transform .35s var(--motion-ease);
}

.home-product-media img {
  height: 250px;
}

.home-category-card:hover img,
.home-product-card:hover img {
  transform: scale(1.055);
}

.home-category-content,
.home-product-content {
  padding: 24px;
}

.home-category-content h3,
.home-product-content h3,
.home-advantage-card h3,
.home-sector-card h3 {
  color: var(--color-white);
  font-size: 22px;
}

.home-category-content p,
.home-product-content p,
.home-advantage-card p,
.home-sector-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-category-content a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--color-accent);
  font-weight: 950;
}

.home-mini-specs {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.home-mini-specs li {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 10px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.home-advantage-card,
.home-sector-card {
  position: relative;
  padding: 28px;
}

.home-card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(137, 233, 0, .3);
  font-size: 13px;
  font-weight: 950;
}

.home-advantage-card > i,
.home-sector-card > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 15px;
  background: rgba(137, 233, 0, .08);
  color: var(--color-accent);
  font-size: 21px;
  box-shadow: 0 0 24px rgba(137, 233, 0, .12);
}

.home-cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  border: 1px solid rgba(137, 233, 0, .22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 50%, rgba(137, 233, 0, .18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

.home-cta-banner h2 {
  max-width: 850px;
  margin-bottom: 12px;
}

.home-cta-banner p {
  max-width: 720px;
  color: var(--color-muted);
}

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

  .home-category-grid,
  .home-product-grid,
  .home-advantage-grid,
  .home-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 58px 0 54px;
  }

  .home-hero-copy h1 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .home-hero-copy p {
    font-size: 16px;
  }

  .home-hero-actions,
  .home-product-actions,
  .home-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero-actions .btn,
  .home-product-actions .btn,
  .home-product-actions .inline-cart-form,
  .home-product-actions .inline-cart-form .btn,
  .home-cta-actions .btn {
    width: 100%;
  }

  .home-showcase-panel {
    min-height: auto;
    padding: 18px;
  }

  .home-showcase-main {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-showcase-main img {
    height: 190px;
  }

  .home-showcase-marquee {
    margin-inline: -18px;
  }

  .home-category-grid,
  .home-product-grid,
  .home-advantage-grid,
  .home-sector-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 72px 0;
  }

  .home-section-head h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .home-cta-banner {
    padding: 28px;
    border-radius: 22px;
  }
}

@media (max-width: 430px) {
  .home-stat-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-stat-chips span {
    justify-content: center;
  }

  .home-category-media img,
  .home-product-media img {
    height: 210px;
  }

  .home-showcase-card {
    width: 178px;
    flex-basis: 178px;
  }

  .home-showcase-card img {
    height: 96px;
  }
}

/* Global spacing and title alignment refinements */
.page-hero,
.page-hero.compact {
  padding: 68px 0 50px;
}

.contact-hero {
  padding: 72px 0 54px;
}

.quality-hero {
  min-height: 360px;
  padding: 70px 0 54px;
}

.hero {
  padding: 66px 0 50px;
}

.home-hero {
  padding: 72px 0 64px;
}

.section,
.home-section {
  padding: 76px 0;
}

.cta-band {
  padding: 56px 0;
}

.page-hero .container,
.contact-hero-inner,
.quality-hero-inner,
.about-intro-inner,
.section-head,
.home-section-head,
.corporate-section-head,
.quality-section-head {
  text-align: center;
}

.page-hero .container,
.about-intro-inner,
.section-head,
.home-section-head,
.corporate-section-head,
.quality-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1,
.contact-hero-title,
.quality-hero h1,
.hero h1,
.home-hero-copy h1,
.section-head h2,
.home-section-head h2,
.corporate-section-head h2,
.quality-section-head h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero p,
.contact-hero-text,
.quality-hero p,
.hero-copy p,
.home-hero-copy p,
.section-head p,
.home-section-head p,
.corporate-section-head p,
.quality-section-head p,
.lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.breadcrumb,
.hero-actions,
.home-hero-actions,
.contact-hero-actions,
.quality-hero-actions {
  justify-content: center;
}

.section-head {
  align-items: center;
  gap: 18px;
}

.section-head::after {
  width: 96px;
  max-width: 96px;
  flex: none;
  transform: none;
}

.home-section-head {
  margin-bottom: 40px;
}

.corporate-section-head {
  margin-bottom: 46px;
}

.quality-gallery-section {
  padding-top: 72px;
}

@media (max-width: 1024px) {
  .page-hero,
  .page-hero.compact,
  .contact-hero,
  .quality-hero {
    padding: 58px 0 44px;
  }

  .hero,
  .home-hero {
    padding: 58px 0 48px;
  }

  .section,
  .home-section {
    padding: 62px 0;
  }
}

@media (max-width: 768px) {
  .page-hero,
  .page-hero.compact,
  .contact-hero,
  .quality-hero {
    padding: 48px 0 36px;
  }

  .hero,
  .home-hero {
    padding: 46px 0 38px;
  }

  .section,
  .home-section {
    padding: 52px 0;
  }

  .home-section-head,
  .corporate-section-head {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .page-hero,
  .page-hero.compact,
  .contact-hero,
  .quality-hero {
    padding: 42px 0 32px;
  }

  .section,
  .home-section {
    padding: 44px 0;
  }
}

/* Premium polish layer: preserves homepage structure, softens motion and neon. */
:root {
  --glow-accent: rgba(137, 233, 0, 0.18);
  --border-accent: rgba(137, 233, 0, 0.14);
  --shadow-glow: 0 18px 48px rgba(137, 233, 0, 0.08);
  --shadow-premium: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shadow-premium-hover: 0 34px 92px rgba(0, 0, 0, 0.42), 0 18px 46px rgba(137, 233, 0, 0.07);
}

.site-header {
  border-bottom-color: rgba(137, 233, 0, 0.08);
  background: rgba(18, 18, 18, 0.72);
}

.site-header.is-scrolled {
  border-color: rgba(137, 233, 0, 0.12);
  background: rgba(18, 18, 18, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  min-height: 82px;
  gap: 36px;
}

.site-nav {
  gap: 10px;
}

.site-nav a,
.site-nav .nav-dropdown-toggle {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 750;
}

.site-nav a::after,
.site-nav .nav-dropdown-toggle::after {
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0.35);
}

.nav-doc-link,
.nav-lang-link,
.cart-link {
  border-color: rgba(137, 233, 0, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.nav-doc-link:hover,
.nav-lang-link:hover,
.cart-link:hover {
  border-color: rgba(137, 233, 0, 0.34);
  background: rgba(137, 233, 0, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: none;
  transition: transform .28s var(--motion-ease), box-shadow .28s ease, border-color .28s ease, background .28s ease, color .28s ease;
}

.btn:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), 0 10px 26px rgba(137, 233, 0, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #89e900 0%, #aaf238 100%);
}

.btn-secondary,
.btn-ghost,
.btn-outline {
  border-color: rgba(137, 233, 0, 0.28);
  background: rgba(255, 255, 255, 0.035);
}

.home-hero {
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at 72% 30%, rgba(137, 233, 0, .12), transparent 34rem),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .045), transparent 30rem),
    linear-gradient(180deg, #222222 0%, #1b1b1b 58%, #242424 100%);
}

.home-hero-grid,
.home-section::before {
  opacity: .15;
}

.home-hero-layout {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 72px;
}

.home-hero-copy {
  max-width: 720px;
}

.home-label {
  gap: 14px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
}

.home-label::before {
  width: 48px;
  height: 1px;
  box-shadow: 0 0 12px rgba(137, 233, 0, .22);
}

.home-hero-copy h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(48px, 4.2vw, 66px);
  font-weight: 780;
  line-height: .98;
  letter-spacing: 0;
}

.home-hero-copy p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.76;
}

.home-hero-actions,
.home-product-actions,
.home-cta-actions {
  gap: 16px;
  margin-top: 32px;
}

.home-stat-chips {
  gap: 12px;
  margin-top: 32px;
}

.home-stat-chips span {
  border-color: rgba(137, 233, 0, .18);
  background: rgba(255, 255, 255, .035);
  font-weight: 760;
}

.home-showcase-orb {
  inset: 8% -4% auto 10%;
  height: 450px;
  background: radial-gradient(circle, rgba(137, 233, 0, .16), transparent 70%);
  filter: blur(44px);
  opacity: .55;
}

.home-showcase-panel {
  min-height: 590px;
  padding: 30px;
  border-color: rgba(137, 233, 0, .16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .026)),
    rgba(28, 28, 28, .78);
  box-shadow: var(--shadow-premium), 0 20px 70px rgba(137, 233, 0, .045);
}

.home-showcase-panel::before {
  opacity: .16;
}

.home-showcase-main {
  width: min(96%, 630px);
  grid-template-columns: 210px 1fr;
  gap: 24px;
  margin: 14px auto 32px;
  padding: 22px;
  border-color: rgba(137, 233, 0, .24);
  border-radius: 24px;
  background: rgba(16, 16, 16, .7);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .36), 0 18px 52px rgba(137, 233, 0, .07);
  animation: none;
}

.home-showcase-main img {
  height: 188px;
  background: radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .11), transparent 72%), #151515;
}

.home-showcase-main span,
.home-showcase-card span,
.product-code {
  border-color: rgba(137, 233, 0, .22);
  box-shadow: none;
  font-weight: 850;
}

.home-showcase-main h2 {
  font-weight: 800;
  line-height: 1.04;
}

.showcase-track {
  animation-duration: 46s;
}

.home-showcase-track {
  gap: 18px;
}

.home-showcase-card {
  width: 220px;
  flex-basis: 220px;
  padding: 16px;
  border-color: rgba(137, 233, 0, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}

.home-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(137, 233, 0, .28);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .34), 0 14px 34px rgba(137, 233, 0, .06);
}

.home-showcase-card img {
  height: 122px;
  padding: 8px;
  background: radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .09), transparent 72%), #151515;
}

.home-section {
  padding: 96px 0;
}

.home-section-head {
  margin-bottom: 48px;
}

.home-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 780;
  line-height: 1.02;
}

.home-section-head p {
  font-size: 16px;
  line-height: 1.74;
}

.home-category-grid,
.home-product-grid,
.home-advantage-grid,
.home-sector-grid {
  gap: 24px;
}

.home-category-card,
.home-product-card,
.home-advantage-card,
.home-sector-card {
  border-color: rgba(137, 233, 0, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .038);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .2);
  transition: transform .32s var(--motion-ease), border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.home-category-card:hover,
.home-product-card:hover,
.home-advantage-card:hover,
.home-sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(137, 233, 0, .26);
  background: rgba(255, 255, 255, .052);
  box-shadow: var(--shadow-premium-hover);
}

.home-category-media,
.home-product-media {
  background: radial-gradient(circle at 50% 4%, rgba(137, 233, 0, .09), transparent 68%), #151515;
}

.home-category-media img,
.home-product-media img {
  height: 232px;
  padding: 22px;
  transition: transform .38s var(--motion-ease), filter .38s ease;
}

.home-product-media img {
  height: 270px;
}

.home-category-card:hover img,
.home-product-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.02);
}

.home-category-content,
.home-product-content {
  padding: 28px;
}

.home-category-content h3,
.home-product-content h3,
.home-advantage-card h3,
.home-sector-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}

.home-category-content p,
.home-product-content p,
.home-advantage-card p,
.home-sector-card p {
  line-height: 1.66;
}

.home-category-content a:not(.btn) {
  margin-top: 12px;
  font-weight: 850;
}

.home-mini-specs {
  gap: 10px;
  margin-top: 20px;
}

.home-mini-specs li {
  border-color: rgba(255, 255, 255, .08);
  border-radius: 9px;
  background: rgba(0, 0, 0, .12);
}

.home-advantage-card,
.home-sector-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.028));
  backdrop-filter: blur(14px);
}

.home-card-number {
  color: rgba(137, 233, 0, .22);
}

.home-advantage-card > i,
.home-sector-card > i {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-color: rgba(137, 233, 0, .16);
  border-radius: 13px;
  background: rgba(137, 233, 0, .055);
  box-shadow: none;
}

.home-cta-banner {
  gap: 48px;
  padding: 48px;
  border-color: rgba(137, 233, 0, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 50%, rgba(137, 233, 0, .13), transparent 34rem),
    linear-gradient(135deg, rgba(255, 255, 255, .072), rgba(255, 255, 255, .028) 58%, rgba(137, 233, 0, .035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3), 0 20px 60px rgba(137, 233, 0, .045);
}

.home-cta-banner h2 {
  margin-bottom: 16px;
  font-weight: 780;
  line-height: 1.04;
}

.reveal {
  transform: translateY(18px);
  transition: opacity .72s var(--motion-ease), transform .72s var(--motion-ease);
}

.reveal.fade-right {
  transform: translateX(18px);
}

.whatsapp-float {
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28), 0 10px 24px rgba(137, 233, 0, .08);
}

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

  .home-showcase-panel {
    min-height: auto;
  }

  .home-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 64px 0 56px;
  }

  .home-hero-copy h1 {
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1;
  }

  .home-showcase-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .home-showcase-main {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-showcase-main img {
    height: 210px;
  }

  .home-category-media img,
  .home-product-media img {
    height: 230px;
  }

  .home-category-content,
  .home-product-content,
  .home-advantage-card,
  .home-sector-card {
    padding: 24px;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-section-head h2 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .home-cta-banner {
    gap: 28px;
    padding: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-showcase-orb,
  .showcase-track,
  .reveal,
  .home-category-card,
  .home-product-card,
  .home-advantage-card,
  .home-sector-card {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* Category product listing: show only product code, product name and actions. */
.product-card-compact .mini-specs,
.product-card-compact .product-content > p {
  display: none;
}

.product-card-compact .product-content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 30px;
}

.product-card-compact .product-code {
  align-self: center;
  margin-bottom: 16px;
  padding: 8px 13px;
  font-size: 18px;
  line-height: 1;
}

.product-card-compact .product-content h3 {
  min-height: 0;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.product-card-compact .product-actions {
  margin-top: auto;
}

@media (max-width: 768px) {
  .product-card-compact .product-content {
    padding: 24px;
  }

  .product-card-compact .product-content h3 {
    margin-bottom: 24px;
    font-size: 13px;
  }
}

/* Product detail spacing polish */
.product-detail {
  padding-top: 88px;
}

.product-detail .detail-grid {
  gap: 96px;
  align-items: center;
}

.detail-copy {
  padding-left: 18px;
}

.detail-copy .neon-label {
  margin-bottom: 26px;
}

.detail-copy h1 {
  margin-bottom: 28px;
  line-height: 1.04;
}

.detail-copy .lead {
  margin-top: 28px;
}

.detail-actions {
  margin-top: 34px;
}

@media (max-width: 1120px) {
  .product-detail {
    padding-top: 64px;
  }

  .product-detail .detail-grid {
    gap: 48px;
  }

  .detail-copy {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .product-detail {
    padding-top: 48px;
  }

  .product-detail .detail-grid {
    gap: 36px;
  }
}

/* Product detail alternate showroom layout */
.product-page-hero {
  padding: 34px 0 0;
  min-height: 120px;
}

.product-page-hero .breadcrumb {
  margin-bottom: 0;
}

.product-detail {
  padding: 56px 0 82px;
  background: #f4f6f8;
  color: #2e3742;
}

.product-detail .detail-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 72px;
  align-items: start;
}

.product-detail .detail-media {
  min-width: 0;
}

.product-detail .detail-image-shell {
  position: relative;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.product-detail .detail-image {
  min-height: 520px;
  max-height: 620px;
  object-fit: contain;
  padding: 48px;
  background: #ffffff;
}

.product-detail .gallery-grid {
  margin-top: 0;
  padding: 28px 0 0;
  border-top: 1px solid #dde4ea;
}

.product-detail .gallery-thumb {
  border-color: #dce4ea;
  background: #ffffff;
}

.product-detail .gallery-thumb.active {
  border-color: rgba(137, 233, 0, .45);
}

.detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(137, 233, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2d3a4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 18px 32px rgba(45, 58, 77, 0.14);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.detail-gallery-arrow.is-prev {
  left: 18px;
}

.detail-gallery-arrow.is-next {
  right: 18px;
}

.detail-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  border-color: rgba(137, 233, 0, 0.45);
  color: #89e900;
  box-shadow: 0 22px 38px rgba(137, 233, 0, 0.16);
}

.detail-spec-panel {
  padding: 10px 0 0;
  color: #6f7f91;
}

.detail-spec-panel > .product-code {
  display: none;
}

.detail-spec-panel .detail-meta {
  display: none;
}

.detail-spec-panel h1 {
  margin: 0 0 34px;
  color: #6f7f91;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 850;
  line-height: 1.1;
  text-align: right;
}

.detail-spec-box {
  display: grid;
  gap: 9px;
  margin-bottom: 28px;
  padding: 22px 28px;
  border-radius: 2px;
  background: #e9f0f4;
  color: #718297;
}

.detail-spec-row {
  display: grid;
  grid-template-columns: 22px minmax(130px, .72fr) 1fr;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.detail-spec-row i {
  color: #7b8794;
  font-size: 15px;
  text-align: center;
}

.detail-spec-row span {
  font-weight: 800;
  text-transform: uppercase;
}

.detail-spec-row span::after {
  content: " :";
}

.detail-spec-row strong {
  color: #6a7a8d;
  font-weight: 700;
}

.detail-option-box {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.detail-option-box > span {
  color: #738397;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-option-box button {
  width: min(260px, 100%);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: #e9f0f4;
  color: #728397;
  cursor: default;
}

.detail-spec-panel .lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: #728397;
  text-align: left;
}

.product-detail .detail-actions {
  gap: 12px;
  margin-top: 30px;
}

.product-detail .detail-actions .btn {
  min-height: 46px;
}

.product-tabs-section {
  padding-top: 10px;
}

.product-tabs {
  border: 1px solid #dce4ec;
  border-radius: 16px;
  background: #f9fbfd;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(31, 45, 60, .08);
}

.product-tabs-nav {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #dce4ec;
  background: #f1f5f8;
}

.product-tab-btn {
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-right: 1px solid #dce4ec;
  background: transparent;
  color: #5e6e80;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.product-tab-btn:last-child {
  border-right: 0;
}

.product-tab-btn.is-active {
  color: #26313d;
  background: #ffffff;
  box-shadow: inset 0 -2px 0 #89e900;
}

.product-tab-panel {
  display: none;
  padding: 30px 32px;
}

.product-tab-panel.is-active {
  display: block;
}

.product-detail-text p {
  margin: 0;
  color: #4e5f72;
  font-size: 18px;
  line-height: 1.7;
}

.shipment-accordion {
  margin: 6px 0 18px;
}

.shipment-toggle {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(137, 233, 0, .4);
  border-radius: 10px;
  background: #ffffff;
  color: #2b3a48;
  font-weight: 800;
  cursor: pointer;
}

.shipment-toggle i {
  color: #6ea90b;
  transition: transform .2s ease;
}

.shipment-toggle.is-open i {
  transform: rotate(180deg);
}

.shipment-panel {
  border: 1px solid rgba(137, 233, 0, .34);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin-top: 10px;
  max-height: 1000px;
  opacity: 1;
  transition: max-height .28s ease, opacity .2s ease, margin-top .2s ease;
}

.shipment-panel.is-collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  border-width: 0;
}

.shipment-panel-head {
  padding: 14px 18px;
  background: #89e900;
  border-bottom: 1px solid rgba(137, 233, 0, .45);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.shipment-panel-body {
  padding: 0;
}

.shipment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid #edf2f6;
}

.shipment-row:last-child {
  border-bottom: 0;
}

.shipment-row-head {
  background: #f6f8fa;
  color: #667689;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.shipment-row strong {
  color: #4f8f00;
  font-weight: 800;
}

.shipment-empty {
  padding: 16px 18px;
  color: #738397;
  font-size: 14px;
}

.shipment-warning {
  margin: 12px 14px 14px;
  padding: 14px 16px;
  border: 1px solid rgba(137, 233, 0, .28);
  border-radius: 10px;
  background: rgba(137, 233, 0, .08);
}

.shipment-warning p {
  margin: 0;
  color: #4f5f72;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .product-detail .detail-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .detail-spec-panel h1 {
    text-align: left;
  }

  .product-tab-btn {
    font-size: 17px;
    padding: 0 18px;
  }
}

@media (max-width: 768px) {
  .product-page-hero {
    min-height: auto;
    padding: 26px 0 0;
  }

  .product-detail {
    padding: 36px 0 58px;
  }

  .product-detail .detail-image {
    min-height: 300px;
    padding: 24px;
  }

  .detail-spec-box {
    padding: 18px;
  }

  .detail-spec-row {
    grid-template-columns: 20px 1fr;
    gap: 6px 10px;
  }

  .detail-spec-row strong {
    grid-column: 2;
  }

  .detail-spec-panel h1 {
    font-size: 24px;
  }

  .product-tabs-nav {
    flex-wrap: wrap;
  }

  .product-tab-btn {
    flex: 1 1 50%;
    min-height: 52px;
    font-size: 16px;
  }

  .product-tab-panel {
    padding: 20px;
  }

  .product-detail-text p {
    font-size: 16px;
  }
}

/* Product detail light premium theme */
body.light-product-detail {
  background: #f6f8fa;
  color: #26313d;
}

body.light-product-detail .site-header {
  border-bottom-color: rgba(137, 233, 0, .14);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 42px rgba(21, 31, 42, .06);
}

body.light-product-detail .site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(21, 31, 42, .08);
}

body.light-product-detail .site-nav a,
body.light-product-detail .site-nav .nav-dropdown-toggle {
  color: #526170;
}

body.light-product-detail .site-nav a:hover,
body.light-product-detail .site-nav a.active,
body.light-product-detail .site-nav .nav-dropdown-toggle:hover,
body.light-product-detail .site-nav .nav-dropdown-toggle.active,
body.light-product-detail .nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--color-accent);
}

body.light-product-detail .nav-doc-link,
body.light-product-detail .cart-link {
  border-color: rgba(137, 233, 0, .24);
  background: #ffffff;
  color: #26313d;
}

body.light-product-detail .nav-dropdown-menu,
body.light-product-detail .nav-mega-dropdown .nav-products-mega {
  background: rgba(255, 255, 255, .97);
  border-color: rgba(137, 233, 0, .14);
  box-shadow: 0 28px 90px rgba(21, 31, 42, .12);
}

body.light-product-detail .nav-dropdown-menu a,
body.light-product-detail .mega-category-body small,
body.light-product-detail .mega-menu-intro p {
  color: #657486;
}

body.light-product-detail .mega-menu-intro,
body.light-product-detail .mega-category-card {
  background: rgba(246, 248, 250, .9);
}

body.light-product-detail .mega-menu-intro h3,
body.light-product-detail .mega-category-body strong {
  color: #26313d;
}

body.light-product-detail .page-fade {
  background: #f6f8fa;
}

body.light-product-detail .product-page-hero {
  border-bottom: 1px solid #e5ebf0;
  background:
    radial-gradient(circle at 18% 32%, rgba(137, 233, 0, .09), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

body.light-product-detail .product-page-hero::before {
  opacity: .08;
}

body.light-product-detail .breadcrumb a,
body.light-product-detail .breadcrumb span {
  color: #7a8795;
}

body.light-product-detail .breadcrumb strong {
  color: var(--color-accent);
}

body.light-product-detail .product-detail {
  background:
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 45%, #f6f8fa 100%);
}

body.light-product-detail .product-detail .detail-image-shell,
body.light-product-detail .product-detail .detail-image,
body.light-product-detail .product-detail .gallery-thumb {
  background: #ffffff;
}

body.light-product-detail .product-detail .detail-image-shell {
  box-shadow: 0 30px 90px rgba(31, 45, 60, .08);
}

body.light-product-detail .section,
body.light-product-detail .section-deep {
  background: #ffffff;
  color: #26313d;
}

body.light-product-detail .section-deep {
  border-top: 1px solid #e7edf2;
  border-bottom: 1px solid #e7edf2;
  background: #f6f8fa;
}

body.light-product-detail .section-head h2,
body.light-product-detail .split h2,
body.light-product-detail .form-layout h2 {
  color: #26313d;
}

body.light-product-detail .lead,
body.light-product-detail .text-panel,
body.light-product-detail .text-panel p,
body.light-product-detail .section-head p {
  color: #657486;
}

body.light-product-detail .spec-card,
body.light-product-detail .form-card,
body.light-product-detail .text-panel,
body.light-product-detail .product-card {
  border-color: #e0e8ee;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(31, 45, 60, .08);
}

body.light-product-detail .spec-card span,
body.light-product-detail .spec-card strong {
  color: #26313d;
}

body.light-product-detail .form-card input,
body.light-product-detail .form-card textarea,
body.light-product-detail .form-card select {
  border-color: #dce5ec;
  background: #f8fafb;
  color: #26313d;
}

/* Global public light premium theme */
body:not(.admin-body) {
  background:
    radial-gradient(circle at 16% 0%, rgba(137, 233, 0, .08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 48%, #ffffff 100%);
  color: #26313d;
}

body:not(.admin-body) #preloader {
  background: #ffffff;
}

body:not(.admin-body) .preloader-bar {
  background: #e6edf2;
  box-shadow: inset 0 0 10px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .site-header {
  border-bottom-color: rgba(137, 233, 0, .14);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 42px rgba(21, 31, 42, .06);
}

body:not(.admin-body) .site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(21, 31, 42, .08);
}

body:not(.admin-body) .site-nav a,
body:not(.admin-body) .site-nav .nav-dropdown-toggle,
body:not(.admin-body) .mobile-drawer-nav a,
body:not(.admin-body) .mobile-accordion-toggle {
  color: #526170;
}

body:not(.admin-body) .site-nav a:hover,
body:not(.admin-body) .site-nav a.active,
body:not(.admin-body) .site-nav .nav-dropdown-toggle:hover,
body:not(.admin-body) .site-nav .nav-dropdown-toggle.active,
body:not(.admin-body) .nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--color-accent);
}

body:not(.admin-body) .nav-doc-link,
body:not(.admin-body) .nav-lang-link,
body:not(.admin-body) .header-search-toggle,
body:not(.admin-body) .cart-link,
body:not(.admin-body) .nav-toggle,
body:not(.admin-body) .mobile-drawer-close {
  border-color: rgba(137, 233, 0, .40);
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 8px 18px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .mobile-utility-link {
  border-color: rgba(137, 233, 0, .32);
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 8px 18px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .header-search-form {
  border-color: rgba(137, 233, 0, .22);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 40px rgba(31, 45, 60, .12);
}

body:not(.admin-body) .header-search-form input,
body:not(.admin-body) .mobile-drawer-search input {
  border-color: #dce5ec;
  background: #f8fafb;
  color: #26313d;
}

body:not(.admin-body) .header-search-form input::placeholder,
body:not(.admin-body) .mobile-drawer-search input::placeholder {
  color: #8a96a3;
}

body:not(.admin-body) .header-search-form button,
body:not(.admin-body) .mobile-drawer-search button {
  border-color: rgba(137, 233, 0, .34);
  background: rgba(137, 233, 0, .10);
  color: #5ca400;
  box-shadow: 0 8px 18px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .mobile-utility-cart em {
  background: #89e900;
  color: #1f2d3c;
}

body:not(.admin-body) .nav-doc-link:hover,
body:not(.admin-body) .nav-lang-link:hover,
body:not(.admin-body) .header-search-toggle:hover,
body:not(.admin-body) .cart-link:hover {
  border-color: rgba(137, 233, 0, .62);
  box-shadow: 0 12px 24px rgba(31, 45, 60, .12), 0 8px 18px rgba(137, 233, 0, .12);
}

body:not(.admin-body) .cart-link span {
  color: #26313d;
}

body:not(.admin-body) .nav-dropdown-menu,
body:not(.admin-body) .nav-mega-dropdown .nav-products-mega,
body:not(.admin-body) .mobile-drawer {
  border-color: rgba(137, 233, 0, .14);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 28px 90px rgba(21, 31, 42, .12);
}

body:not(.admin-body) .nav-dropdown-menu a,
body:not(.admin-body) .mega-category-body small,
body:not(.admin-body) .mega-menu-intro p,
body:not(.admin-body) .mobile-accordion-panel a {
  color: #657486;
}

body:not(.admin-body) .mega-menu-intro,
body:not(.admin-body) .mega-category-card,
body:not(.admin-body) .mobile-accordion-panel {
  border-color: #e0e8ee;
  background: rgba(246, 248, 250, .92);
}

body:not(.admin-body) .mega-menu-intro h3,
body:not(.admin-body) .mega-category-body strong {
  color: #26313d;
}

body:not(.admin-body) .mega-all-link {
  border-color: rgba(137, 233, 0, .42);
  background: #89e900;
  color: #1f2d3c;
  box-shadow: 0 10px 24px rgba(137, 233, 0, .24), 0 8px 18px rgba(31, 45, 60, .12);
}

body:not(.admin-body) .mega-all-link:hover {
  border-color: rgba(137, 233, 0, .68);
  background: #98f11d;
  color: #182433;
  box-shadow: 0 14px 26px rgba(137, 233, 0, .3), 0 10px 20px rgba(31, 45, 60, .16);
}

body:not(.admin-body) .page-fade,
body:not(.admin-body) main {
  background: #f6f8fa;
}

body:not(.admin-body) .hero,
body:not(.admin-body) .home-hero,
body:not(.admin-body) .page-hero,
body:not(.admin-body) .contact-hero,
body:not(.admin-body) .quality-hero,
body:not(.admin-body) .about-intro-hero,
body:not(.admin-body) .product-page-hero {
  border-bottom: 1px solid #e5ebf0;
  background:
    radial-gradient(circle at 18% 22%, rgba(137, 233, 0, .08), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(31, 45, 60, .035), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
  color: #26313d;
}

body:not(.admin-body) .hero::before,
body:not(.admin-body) .page-hero::before,
body:not(.admin-body) .contact-hero::after,
body:not(.admin-body) .quality-hero::before,
body:not(.admin-body) .home-hero-grid,
body:not(.admin-body) .home-section::before {
  opacity: .08;
}

body:not(.admin-body) h1,
body:not(.admin-body) h2,
body:not(.admin-body) h3,
body:not(.admin-body) .hero h1,
body:not(.admin-body) .home-hero-copy h1,
body:not(.admin-body) .page-hero h1,
body:not(.admin-body) .contact-hero-title,
body:not(.admin-body) .quality-hero h1,
body:not(.admin-body) .section-head h2,
body:not(.admin-body) .home-section-head h2,
body:not(.admin-body) .corporate-section-head h2,
body:not(.admin-body) .quality-section-head h2 {
  color: #26313d;
}

body:not(.admin-body) p,
body:not(.admin-body) .lead,
body:not(.admin-body) .hero-copy p,
body:not(.admin-body) .home-hero-copy p,
body:not(.admin-body) .page-hero p,
body:not(.admin-body) .section-head p,
body:not(.admin-body) .home-section-head p,
body:not(.admin-body) .contact-hero-text,
body:not(.admin-body) .quality-hero p,
body:not(.admin-body) .corporate-section-head p,
body:not(.admin-body) .quality-section-head p {
  color: #657486;
}

body:not(.admin-body) .breadcrumb a,
body:not(.admin-body) .breadcrumb span {
  color: #7a8795;
}

body:not(.admin-body) .breadcrumb strong,
body:not(.admin-body) .breadcrumb a:hover {
  color: var(--color-accent);
}

body:not(.admin-body) .section,
body:not(.admin-body) .home-section,
body:not(.admin-body) .showroom-section,
body:not(.admin-body) .quote-builder-section {
  background: #ffffff;
  color: #26313d;
}

body:not(.admin-body) .section-deep,
body:not(.admin-body) .home-section-deep,
body:not(.admin-body) .home-section-black,
body:not(.admin-body) .cta-band {
  border-top: 1px solid #e7edf2;
  border-bottom: 1px solid #e7edf2;
  background: #f6f8fa;
  color: #26313d;
}

body:not(.admin-body) .legal-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(137, 233, 0, .08), transparent 26rem),
    #f6f8fa;
}

body:not(.admin-body) .legal-card {
  border-color: #e0e8ee;
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 22px 70px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .legal-card h2 {
  color: #2f4d00;
}

body:not(.admin-body) .legal-card p {
  color: #657486;
}

body:not(.admin-body) .legal-card strong {
  color: #26313d;
}

body:not(.admin-body) .category-card,
body:not(.admin-body) .product-card,
body:not(.admin-body) .feature,
body:not(.admin-body) .stat-tile,
body:not(.admin-body) .home-category-card,
body:not(.admin-body) .home-product-card,
body:not(.admin-body) .home-advantage-card,
body:not(.admin-body) .home-sector-card,
body:not(.admin-body) .spec-card,
body:not(.admin-body) .form-card,
body:not(.admin-body) .text-panel,
body:not(.admin-body) .quote-product-card,
body:not(.admin-body) .quote-summary-card,
body:not(.admin-body) .contact-card,
body:not(.admin-body) .info-card,
body:not(.admin-body) .quality-card,
body:not(.admin-body) .certificate-card {
  border-color: #e0e8ee;
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 22px 70px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .products-filter-bar {
  border-color: #e0e8ee;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 45, 60, .06);
}

body:not(.admin-body) .products-filter-field label {
  color: #657486;
}

body:not(.admin-body) .products-filter-field input,
body:not(.admin-body) .products-filter-field select {
  border-color: #d5e0e8;
  background: #f8fafb;
  color: #26313d;
}

body:not(.admin-body) input,
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  border-color: #d5e0e8;
  background: #f8fafb;
  color: #26313d;
}

body:not(.admin-body) input:focus,
body:not(.admin-body) select:focus,
body:not(.admin-body) textarea:focus,
body:not(.admin-body) .field-focused input,
body:not(.admin-body) .field-focused select,
body:not(.admin-body) .field-focused textarea {
  border-color: rgba(137, 233, 0, .55);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(137, 233, 0, .10);
}

body:not(.admin-body) .form-card h2,
body:not(.admin-body) .feature strong {
  color: #26313d;
}

body:not(.admin-body) .alert.success {
  color: #2f4d00;
  border-color: rgba(137, 233, 0, .34);
  background: #f4fae9;
}

body:not(.admin-body) .alert.error {
  color: #8a2020;
  border-color: rgba(255, 77, 77, .28);
  background: #fff1f1;
}

body:not(.admin-body) .category-card:hover,
body:not(.admin-body) .product-card:hover,
body:not(.admin-body) .home-category-card:hover,
body:not(.admin-body) .home-product-card:hover,
body:not(.admin-body) .home-advantage-card:hover,
body:not(.admin-body) .home-sector-card:hover,
body:not(.admin-body) .quote-product-card:hover {
  border-color: rgba(137, 233, 0, .28);
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(31, 45, 60, .12), 0 18px 46px rgba(137, 233, 0, .07);
}

body:not(.admin-body) .category-media,
body:not(.admin-body) .product-media,
body:not(.admin-body) .home-category-media,
body:not(.admin-body) .home-product-media,
body:not(.admin-body) .quote-product-media,
body:not(.admin-body) .home-showcase-main img,
body:not(.admin-body) .home-showcase-card img,
body:not(.admin-body) .card-image {
  background:
    radial-gradient(circle at 50% 0%, rgba(137, 233, 0, .08), transparent 70%),
    #f8fafb;
}

body:not(.admin-body) .category-content h3,
body:not(.admin-body) .product-content h3,
body:not(.admin-body) .home-category-content h3,
body:not(.admin-body) .home-product-content h3,
body:not(.admin-body) .home-advantage-card h3,
body:not(.admin-body) .home-sector-card h3,
body:not(.admin-body) .quote-product-body h3 {
  color: #26313d;
}

body:not(.admin-body) .category-content p,
body:not(.admin-body) .product-content p,
body:not(.admin-body) .home-category-content p,
body:not(.admin-body) .home-product-content p,
body:not(.admin-body) .home-advantage-card p,
body:not(.admin-body) .home-sector-card p,
body:not(.admin-body) .quote-product-body p,
body:not(.admin-body) .text-panel p {
  color: #657486;
}

body:not(.admin-body) .mini-specs li,
body:not(.admin-body) .home-mini-specs li,
body:not(.admin-body) .quote-mini-specs li {
  border-color: #e0e8ee;
  background: #f8fafb;
  color: #657486;
}

body:not(.admin-body) .home-showcase-panel,
body:not(.admin-body) .showcase-panel {
  border-color: rgba(137, 233, 0, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,248,250,.92));
  box-shadow: 0 28px 80px rgba(31, 45, 60, .10), 0 20px 70px rgba(137, 233, 0, .045);
}

body:not(.admin-body) .home-showcase-main,
body:not(.admin-body) .showcase-main-card,
body:not(.admin-body) .home-showcase-card,
body:not(.admin-body) .showcase-product-card {
  border-color: #e0e8ee;
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 22px 64px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .home-showcase-header strong,
body:not(.admin-body) .home-showcase-main p,
body:not(.admin-body) .home-showcase-card small {
  color: #657486;
}

body:not(.admin-body) .home-stat-chips span,
body:not(.admin-body) .hero-stat,
body:not(.admin-body) .count-badge,
body:not(.admin-body) .product-code,
body:not(.admin-body) .neon-label,
body:not(.admin-body) .home-label {
  border-color: rgba(137, 233, 0, .22);
}

body:not(.admin-body) .home-stat-chips span,
body:not(.admin-body) .hero-stat {
  background: #ffffff;
  color: #26313d;
}

body:not(.admin-body) .home-cta-banner,
body:not(.admin-body) .cta-inner,
body:not(.admin-body) .quote-whatsapp-box {
  border-color: rgba(137, 233, 0, .18);
  background:
    radial-gradient(circle at 84% 50%, rgba(137, 233, 0, .12), transparent 32rem),
    linear-gradient(135deg, #ffffff, #f6f8fa 58%, rgba(137, 233, 0, .045));
  color: #26313d;
  box-shadow: 0 30px 90px rgba(31, 45, 60, .10), 0 20px 60px rgba(137, 233, 0, .045);
}

body:not(.admin-body) .home-cta-banner p,
body:not(.admin-body) .cta-inner p,
body:not(.admin-body) .quote-whatsapp-box span {
  color: #657486;
}

body:not(.admin-body) .quote-whatsapp-box strong {
  color: #1f2d3c;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
}

body:not(.admin-body) .quote-qty-form label {
  color: #657486;
}

body:not(.admin-body) .quote-qty-form input {
  border-color: #dce5ec;
  background: #ffffff;
  color: #26313d;
}

body:not(.admin-body) .quote-qty-form button {
  border-color: rgba(137, 233, 0, .42);
  background: #ffffff;
  color: #3f7a00;
}

body:not(.admin-body) .quote-detail-link {
  border-color: rgba(137, 233, 0, .42);
  background: #ffffff;
  color: #3f7a00;
}

body:not(.admin-body) .quote-remove-btn {
  border-color: #dce5ec;
  background: #ffffff;
  color: #657486;
}

body:not(.admin-body) .quote-qty-form button:hover,
body:not(.admin-body) .quote-detail-link:hover,
body:not(.admin-body) .quote-remove-btn:hover {
  border-color: #89e900;
  background: rgba(137, 233, 0, .08);
  color: #2e5f00;
}

body:not(.admin-body) input,
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  border-color: #dce5ec;
  background: #f8fafb;
  color: #26313d;
}

body:not(.admin-body) input:focus,
body:not(.admin-body) select:focus,
body:not(.admin-body) textarea:focus {
  border-color: rgba(137, 233, 0, .55);
  box-shadow: 0 0 0 3px rgba(137, 233, 0, .10);
}

body:not(.admin-body) .site-footer {
  border-top-color: #e5ebf0;
  background: #ffffff;
  color: #26313d;
}

body:not(.admin-body) .footer-glow {
  opacity: .16;
}

body:not(.admin-body) .footer-company-text,
body:not(.admin-body) .footer-col a,
body:not(.admin-body) .footer-col p,
body:not(.admin-body) .footer-bottom {
  color: #657486;
}

body:not(.admin-body) .footer-col h3 {
  color: #26313d;
}

body:not(.admin-body) .whatsapp-float {
  box-shadow: 0 18px 38px rgba(31, 45, 60, .18), 0 10px 24px rgba(137, 233, 0, .12);
}

body:not(.admin-body) .btn-primary,
body:not(.admin-body) button.btn-primary,
body:not(.admin-body) a.btn-primary {
  border-color: #89e900;
  background: linear-gradient(135deg, #89e900 0%, #a9f238 100%);
  color: #111820;
  box-shadow: 0 16px 34px rgba(137, 233, 0, .18);
}

body:not(.admin-body) .btn-primary:hover,
body:not(.admin-body) button.btn-primary:hover,
body:not(.admin-body) a.btn-primary:hover {
  color: #111820;
  border-color: #78cf00;
  background: linear-gradient(135deg, #92f20b 0%, #b7fa55 100%);
  box-shadow: 0 20px 42px rgba(137, 233, 0, .24), 0 12px 26px rgba(31, 45, 60, .10);
}

body:not(.admin-body) .btn-secondary,
body:not(.admin-body) .btn-ghost,
body:not(.admin-body) .btn-outline,
body:not(.admin-body) button.btn-secondary,
body:not(.admin-body) a.btn-secondary {
  border-color: rgba(137, 233, 0, .42);
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 12px 28px rgba(31, 45, 60, .06);
}

body:not(.admin-body) .btn-secondary:hover,
body:not(.admin-body) .btn-ghost:hover,
body:not(.admin-body) .btn-outline:hover,
body:not(.admin-body) button.btn-secondary:hover,
body:not(.admin-body) a.btn-secondary:hover {
  border-color: #89e900;
  background: rgba(137, 233, 0, .08);
  color: #4a8500;
  box-shadow: 0 16px 36px rgba(31, 45, 60, .10), 0 10px 24px rgba(137, 233, 0, .12);
}

body:not(.admin-body) .home-hero-actions .btn-secondary,
body:not(.admin-body) .hero-actions .btn-secondary,
body:not(.admin-body) .home-cta-actions .btn-secondary,
body:not(.admin-body) .detail-actions .btn-secondary,
body:not(.admin-body) .product-actions .btn-secondary {
  color: #26313d;
  background: #ffffff;
}

body:not(.admin-body) .home-hero-actions .btn-secondary:hover,
body:not(.admin-body) .hero-actions .btn-secondary:hover,
body:not(.admin-body) .home-cta-actions .btn-secondary:hover,
body:not(.admin-body) .detail-actions .btn-secondary:hover,
body:not(.admin-body) .product-actions .btn-secondary:hover {
  color: #4a8500;
}

/* Contact page light premium overrides */
body:not(.admin-body) .contact-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(137, 233, 0, .07), transparent 28rem),
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
}

body:not(.admin-body) .eska-contact-card,
body:not(.admin-body) .contact-form-card,
body:not(.admin-body) .map-box,
body:not(.admin-body) .social-box,
body:not(.admin-body) .quick-card {
  border-color: #e0e8ee;
  background: #ffffff;
  color: #26313d;
  box-shadow: 0 24px 80px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .eska-contact-card h2,
body:not(.admin-body) .contact-form-card h2,
body:not(.admin-body) .social-box-title,
body:not(.admin-body) .quick-card h3,
body:not(.admin-body) .social-info-card h3 {
  color: #26313d;
}

body:not(.admin-body) .eska-contact-card p,
body:not(.admin-body) .social-box p,
body:not(.admin-body) .quick-card p,
body:not(.admin-body) .social-info-card p,
body:not(.admin-body) .required-note,
body:not(.admin-body) .consent-text {
  color: #657486;
}

body:not(.admin-body) .contact-item,
body:not(.admin-body) .social-info-card {
  border-color: #e0e8ee;
  background: #f8fafb;
  box-shadow: none;
}

body:not(.admin-body) .contact-value {
  color: #26313d;
}

body:not(.admin-body) .contact-label,
body:not(.admin-body) .consent-text a {
  color: #5ca400;
}

body:not(.admin-body) .contact-form .form-control,
body:not(.admin-body) .contact-form input,
body:not(.admin-body) .contact-form select,
body:not(.admin-body) .contact-form textarea {
  border: 1px solid #dce5ec;
  background: #f8fafb;
  color: #26313d;
}

body:not(.admin-body) .contact-form .form-control::placeholder,
body:not(.admin-body) .contact-form textarea::placeholder {
  color: #8a96a3;
}

body:not(.admin-body) .contact-form .form-control:focus,
body:not(.admin-body) .contact-form input:focus,
body:not(.admin-body) .contact-form select:focus,
body:not(.admin-body) .contact-form textarea:focus {
  border-color: rgba(137, 233, 0, .55);
  box-shadow: 0 0 0 3px rgba(137, 233, 0, .10);
}

body:not(.admin-body) .consent-checkbox {
  accent-color: #89e900;
}

body:not(.admin-body) .contact-submit-btn {
  border-color: #89e900;
  background: linear-gradient(135deg, #89e900 0%, #a9f238 100%);
  color: #111820;
  box-shadow: 0 16px 34px rgba(137, 233, 0, .18);
}

body:not(.admin-body) .map-inner {
  background: #eef3f7;
}

body:not(.admin-body) .map-embed {
  filter: grayscale(.12) brightness(1.03) contrast(1.02) saturate(.95);
}

/* About page light premium overrides */
body:not(.admin-body) .corporate-profile-section,
body:not(.admin-body) .history-timeline-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(137, 233, 0, .07), transparent 28rem),
    #f6f8fa;
}

body:not(.admin-body) .corporate-visual-card,
body:not(.admin-body) .corporate-info-card,
body:not(.admin-body) .values-panel,
body:not(.admin-body) .corporate-long-copy {
  border-color: #e0e8ee;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .corporate-story-copy h3,
body:not(.admin-body) .values-panel h3,
body:not(.admin-body) .corporate-info-card h3 {
  color: #26313d;
}

body:not(.admin-body) .value-item strong {
  color: #26313d;
}

body:not(.admin-body) .value-item p,
body:not(.admin-body) .corporate-story-copy p,
body:not(.admin-body) .corporate-info-card p,
body:not(.admin-body) .corporate-long-copy p {
  color: #657486;
}

body:not(.admin-body) .corporate-long-copy blockquote {
  border-left-color: #89e900;
  background: #f4fae9;
}

body:not(.admin-body) .corporate-long-copy blockquote p {
  color: #26313d;
}

body:not(.admin-body) .corporate-long-copy cite {
  color: #2f4d00;
}

/* History page light premium overrides */
body:not(.admin-body) .history-hero h1,
body:not(.admin-body) .history-hero p,
body:not(.admin-body) .history-future-card h2 {
  color: #26313d;
}

body:not(.admin-body) .history-timeline::before {
  background: linear-gradient(180deg, transparent, rgba(137, 233, 0, .28), transparent);
  box-shadow: none;
}

body:not(.admin-body) .history-year {
  border-color: rgba(137, 233, 0, .34);
  background: rgba(137, 233, 0, .10);
  color: #5ca400;
  box-shadow: 0 8px 20px rgba(137, 233, 0, .12);
}

body:not(.admin-body) .history-card {
  border-color: #dce5ec;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .history-card:hover {
  border-color: rgba(137, 233, 0, .38);
  box-shadow: 0 22px 52px rgba(31, 45, 60, .12), 0 10px 26px rgba(137, 233, 0, .08);
}

body:not(.admin-body) .history-card-image {
  background: #edf2f6;
}

body:not(.admin-body) .history-card-content h2 {
  color: #26313d;
}

body:not(.admin-body) .history-card-content p,
body:not(.admin-body) .history-stats span {
  color: #657486;
}

body:not(.admin-body) .history-stats {
  border-top-color: #e3e9ef;
}

body:not(.admin-body) .history-stats strong {
  color: #6cc300;
  text-shadow: none;
}

body:not(.admin-body) .history-note,
body:not(.admin-body) .history-award {
  border-color: rgba(137, 233, 0, .26);
  background: #f5faec;
  color: #365500;
}

body:not(.admin-body) .history-note i,
body:not(.admin-body) .history-award i {
  color: #6ac000;
}

body:not(.admin-body) .history-future-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(137, 233, 0, .08), transparent 22rem),
    #f6f8fa;
}

body:not(.admin-body) .history-future-card {
  border-color: #dce5ec;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .history-future-card p {
  color: #657486;
}

/* Quality certificates page light premium overrides */
body:not(.admin-body) .quality-gallery-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(137, 233, 0, .07), transparent 28rem),
    #f6f8fa;
}

body:not(.admin-body) .quality-section-head h2 {
  color: #26313d;
}

body:not(.admin-body) .quality-section-head p {
  color: #657486;
}

body:not(.admin-body) .certificate-preview {
  background: #f3f7fa;
}

body:not(.admin-body) .certificate-title-row h3 {
  color: #26313d;
}

body:not(.admin-body) .certificate-title-row p,
body:not(.admin-body) .certificate-meta span {
  color: #657486;
}

body:not(.admin-body) .quality-btn-ghost {
  border-color: rgba(137, 233, 0, .48);
  background: #ffffff;
  color: #2f4d00;
  box-shadow: 0 12px 28px rgba(31, 45, 60, .08);
}

body:not(.admin-body) .quality-btn-ghost:hover {
  border-color: #89e900;
  background: rgba(137, 233, 0, .1);
  color: #2f4d00;
}

body:not(.admin-body) .social-link,
body:not(.admin-body) .social-info-icon {
  border-color: rgba(137, 233, 0, .24);
  background: #f8fafb;
  color: #5ca400;
}

body:not(.admin-body) .quick-card:hover,
body:not(.admin-body) .social-link:hover {
  border-color: rgba(137, 233, 0, .42);
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(31, 45, 60, .11), 0 18px 44px rgba(137, 233, 0, .08);
}

body:not(.admin-body) .mega-category-image {
  right: 12px;
  width: 118px;
  height: 118px;
  opacity: .18;
  color: var(--color-accent);
  filter: drop-shadow(0 16px 28px rgba(137, 233, 0, .08));
}

body:not(.admin-body) .mega-category-image img {
  filter: grayscale(1) brightness(1.1) sepia(1) saturate(4) hue-rotate(36deg);
}

body:not(.admin-body) .mega-category-image i {
  color: var(--color-accent);
  font-size: 94px;
}

body:not(.admin-body) .mega-category-image .mega-svg-icon {
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}

body:not(.admin-body) .mega-category-image .mega-lucide-icon,
body:not(.admin-body) .mega-category-image .mega-lucide-icon svg {
  width: 94px;
  height: 94px;
  color: #89e900;
  opacity: .96;
  stroke-width: 1.85;
}

body:not(.admin-body) .mega-category-card:hover .mega-category-image {
  opacity: .28;
  filter: drop-shadow(0 14px 26px rgba(137, 233, 0, .14));
}

body:not(.admin-body) .mega-category-body {
  padding-right: 92px;
}

/* Homepage hero vertical balance after showcase removal */
body.premium-home .home-hero {
  padding: 36px 0 52px;
}

body.premium-home .home-hero-layout {
  align-items: start;
}

body.premium-home .home-showcase-panel {
  min-height: 500px;
  padding: 24px;
}

body.premium-home .home-showcase-main {
  margin: 8px auto 20px;
}

body.premium-home .home-showcase-main img {
  height: 168px;
}

@media (max-width: 768px) {
  body.premium-home .home-hero {
    padding: 28px 0 40px;
  }
}

/* Hide hero/section labels across public site */
body:not(.admin-body) .neon-label,
body:not(.admin-body) .home-label,
body:not(.admin-body) .eyebrow {
  display: none !important;
}

/* Contact cards: keep proportional heights */
body:not(.admin-body) .eska-contact-grid,
body:not(.admin-body) .contact-media-grid {
  align-items: stretch;
}

body:not(.admin-body) .contact-media-grid > .reveal {
  display: flex;
  flex-direction: column;
}

body:not(.admin-body) .map-box,
body:not(.admin-body) .social-box {
  height: 100%;
}

/* Home fair/news slider */
.home-news-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(137, 233, 0, 0.18);
  box-shadow: 0 20px 50px rgba(15, 24, 35, 0.16);
  min-height: 520px;
}

.home-carousel-slides {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.home-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.home-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.home-carousel-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 34px;
  background: linear-gradient(180deg, rgba(6, 10, 14, 0) 0%, rgba(6, 10, 14, 0.78) 78%);
}

.home-carousel-overlay h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 54px);
  line-height: .96;
  font-weight: 800;
}

.home-carousel-overlay p {
  margin: 10px 0 0;
  color: rgba(236, 245, 255, .9);
  font-size: 18px;
}

.home-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 20, 27, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.home-carousel-nav.prev {
  left: 14px;
}

.home-carousel-nav.next {
  right: 14px;
}

.home-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 3;
}

.home-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.home-carousel-dots button.is-active {
  background: #89e900;
}

.home-news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  width: 100%;
  cursor: grab;
}

.home-news-track::-webkit-scrollbar {
  height: 8px;
}

.home-news-track::-webkit-scrollbar-thumb {
  background: rgba(137, 233, 0, 0.28);
  border-radius: 999px;
}

.home-news-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.home-news-card {
  scroll-snap-align: start;
  border: 1px solid rgba(137, 233, 0, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(16, 22, 30, 0.14);
}

.home-news-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9eef2;
}

.home-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-content {
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}

.home-news-year {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(137, 233, 0, 0.14);
  color: #4f7a00;
  font-weight: 800;
  font-size: 12px;
}

.home-news-content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  color: #243142;
}

.home-news-content p {
  margin: 0;
  color: #5f7288;
  font-size: 15px;
  line-height: 1.5;
}

.home-news-content a {
  color: #72bf00;
  font-weight: 700;
  font-size: 14px;
}

.home-news-nav {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(137, 233, 0, 0.32);
  background: #f7faf4;
  color: #5c9d00;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.home-news-nav:hover {
  background: #89e900;
  color: #18220b;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .home-news-track {
    grid-auto-columns: minmax(260px, 82vw);
  }
}

@media (max-width: 640px) {
  .home-news-wrap {
    min-height: 340px;
  }

  .home-carousel-slides {
    min-height: 340px;
  }

  .home-carousel-overlay {
    padding: 18px 18px 22px;
  }

  .home-carousel-overlay p {
    font-size: 14px;
  }

  .home-carousel-nav {
    width: 36px;
    height: 36px;
  }
}

/* Mobile stabilization patch - 2026-06-01 */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 1024px) {
  .nav-toggle {
    color: #26313d !important;
  }

  .nav-toggle span {
    background: currentColor !important;
  }

  .mobile-drawer {
    width: min(92vw, 380px);
    height: 100dvh;
    max-height: 100dvh;
  }

  .mobile-drawer-nav {
    gap: 8px;
    padding: 14px 16px 18px;
  }

  .mobile-drawer-link {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 14px;
    min-height: 48px;
  }

  .mobile-drawer-link i {
    width: 18px;
    text-align: center;
  }

  .mobile-drawer-link span {
    flex: 1 1 auto;
  }

  .mobile-accordion-toggle {
    min-height: 48px;
    padding: 0 14px;
  }

  .mobile-accordion-toggle > span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .mobile-drawer-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    gap: 8px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid #e3e9ef;
  }

  .mobile-drawer-actions .btn {
    min-height: 46px;
    font-size: 17px;
  }

  body.drawer-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 34px 0 30px !important;
  }

  .home-hero-copy h1 {
    max-width: 100% !important;
    font-size: clamp(30px, 10vw, 42px) !important;
    line-height: 1.06 !important;
  }

  .home-hero-copy p {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.62 !important;
  }

  .home-hero-actions {
    margin-top: 22px !important;
    gap: 10px !important;
  }

  .home-hero-actions .btn {
    min-height: 56px;
    font-size: 18px;
  }

  .home-stat-chips {
    margin-top: 20px !important;
    gap: 10px !important;
  }

  .home-stat-chips span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    min-height: 44px;
    font-size: 14px;
  }

  .home-showcase-panel {
    min-height: 0 !important;
    padding: 16px !important;
  }

  .home-showcase-main {
    gap: 14px !important;
  }

  .home-showcase-main h2 {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.03;
  }

  .home-section {
    padding: 46px 0 !important;
  }

  .home-section-head h2 {
    font-size: clamp(30px, 8.3vw, 38px) !important;
  }

  .whatsapp-float {
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
  }

  .whatsapp-float i {
    font-size: 38px !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container)) !important;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: min(176px, 54vw) !important;
  }

  .home-stat-chips span {
    font-size: 13px;
    padding: 0 10px;
  }
}

/* Featured showcase premium border glow */
body:not(.admin-body) .home-showcase {
  position: relative;
}

body:not(.admin-body) .home-showcase-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(137, 233, 0, .34) !important;
  box-shadow:
    0 24px 56px rgba(24, 34, 46, .14),
    0 0 0 1px rgba(137, 233, 0, .20) inset,
    0 0 48px rgba(137, 233, 0, .20);
}

body:not(.admin-body) .home-showcase-panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  z-index: 3;
  background: conic-gradient(
    from 0deg,
    rgba(137, 233, 0, 0) 0deg,
    rgba(137, 233, 0, 0) 290deg,
    rgba(137, 233, 0, .90) 325deg,
    rgba(196, 255, 89, .98) 343deg,
    rgba(137, 233, 0, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: showcaseBorderSpin 4.8s linear infinite;
}

body:not(.admin-body) .home-showcase::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 32px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 58% 40%, rgba(137, 233, 0, .18), rgba(137, 233, 0, 0) 64%);
  filter: blur(18px);
}

@keyframes showcaseBorderSpin {
  to { transform: rotate(1turn); }
}

@media (max-width: 768px) {
  body:not(.admin-body) .home-showcase-panel {
    box-shadow:
      0 16px 34px rgba(24, 34, 46, .12),
      0 0 0 1px rgba(137, 233, 0, .18) inset,
      0 0 30px rgba(137, 233, 0, .16);
  }

  body:not(.admin-body) .home-showcase-panel::after {
    padding: 1.5px;
    animation-duration: 5.4s;
  }
}

/* Showcase images: remove gray ambient background */
body:not(.admin-body) .home-showcase-main img,
body:not(.admin-body) .home-showcase-card img,
body:not(.admin-body) .home-category-media img {
  background: #ffffff !important;
}

/* Featured product strip: column layout + larger visuals */
body:not(.admin-body) .home-showcase-track {
  align-items: stretch;
}

body:not(.admin-body) .home-showcase-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: center;
  min-height: 252px;
  padding: 14px 12px 6px !important;
}

body:not(.admin-body) .home-showcase-card img {
  width: 100% !important;
  max-width: 220px !important;
  height: 165px !important;
  object-fit: contain !important;
  margin: 0 auto 10px !important;
}

body:not(.admin-body) .home-showcase-card span {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  padding: 10px 14px !important;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body:not(.admin-body) .home-showcase-card > *:last-child {
  margin-bottom: 0 !important;
}

/* LIVE HOTFIX - home hero blocks must stay visible */
body:not(.admin-body) .home-hero-layout {
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr) !important;
  align-items: center !important;
}

body:not(.admin-body) .home-showcase {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:not(.admin-body) .home-showcase-panel,
body:not(.admin-body) .home-showcase-main,
body:not(.admin-body) .home-showcase-marquee {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:not(.admin-body) .home-hero-actions,
body:not(.admin-body) .home-stat-chips {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  body:not(.admin-body) .home-hero-layout {
    grid-template-columns: 1fr !important;
  }
}
