:root {
  --primary: #39ef00;
  --primary-dark: #25c900;
  --accent: #e9ff00;
  --dark: #202631;
  --text: #3e4652;
  --muted: #737d8b;
  --light: #f3f5f7;
  --border: #dfe4ea;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(32, 38, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.mb-0 {
  margin-bottom: 0 !important;
}

body {
  margin: 0;
  font-family: 'Nunito', 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.developer-link {
  width: 100%;
  display: flex;
  margin-top: 24px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.developer-link a {
  color: var(--primary) !important;
  font-weight: 700;
}

.nav-brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.announcement {
  background: var(--dark);
  color: var(--accent);
  text-align: center;
  padding: 9px 16px;
  font: 600 13px/1.4 'Poppins', sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(32, 38, 49, .97);
  border-bottom: 1px solid rgba(233, 255, 0, .16);
  backdrop-filter: blur(10px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  width: 190px;
  height: 82px;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  width: 100%;
  font: 600 14px/1 'Poppins', sans-serif;
  color: var(--white);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-btn {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 11px 18px !important;
  border-radius: 4px !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--white);
}

.nav-btn.menu-toggle {
  font-size: 14px;
  padding: 8px 12px !important;
}

.hero {
  background: linear-gradient(115deg, #f5f7f8 0%, #ffffff 54%, #efffe9 100%);
  padding: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns:
    max(16px, calc((100% - 1180px) / 2)) minmax(0, 1fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 28px;
  width: 100%;
}

.hero-content {
  grid-column: 2;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 24px;
  color: #20b900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font: 700 13px/1.2 'Poppins', sans-serif;
}

h1,
h2,
h3 {
  color: var(--dark);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.04;
  max-width: 720px;
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
}

h3 {
  font-size: 20px;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 30px;
  font-size: 18px;
  color: #596675;
  font-family: 'Nunito', sans-serif;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font: 700 14px/1 'Poppins', sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #343d4b;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--dark);
  color: var(--dark);
  background: white;
}

.btn-outline:hover {
  border-color: #20b900;
  color: #20b900;
}

.hero-card {
  grid-column: 3;
  text-align: center;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: clamp(320px, 45vw, 500px);
  min-height: 320px;
  display: grid;
  place-items: center;
  /* padding: 18px 18px 10px; */
  overflow: hidden;
  border-radius: 16px;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px) scale(.97);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .65s;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 0s;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide.is-exit {
  opacity: 0;
  visibility: visible;
  transform: translateX(-24px) scale(.98);
  transition:
    opacity .55s cubic-bezier(.4, 0, .2, 1),
    transform .55s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}

.hero-slide-image {
  width: 100%;
  height: 500px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-slide-stage {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 12px 0; */
}

.hero-slide-stage img {
  width: auto;
  height: 500px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 28px rgba(32, 38, 49, 0.14));
  animation: none;
}

.hero-slide.is-active .hero-slide-stage img {
  animation: visualPulse .9s cubic-bezier(.22, 1, .36, 1);
}

.hero-slide-fallback {
  display: none;
  place-items: center;
  width: 70%;
  max-width: 320px;
  aspect-ratio: 1;
  background: transparent;
  font-size: clamp(72px, 10vw, 112px);
}

.hero-slide-image.is-fallback img {
  display: none;
}

.hero-slide-image.is-fallback .hero-slide-fallback {
  display: grid;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 16px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8dee7;
  cursor: pointer;
  transition: width .35s cubic-bezier(.22, 1, .36, 1), background .3s ease;
}

.hero-dot.is-active {
  width: 24px;
  background: var(--primary);
}

@keyframes visualPulse {
  0% {
    transform: scale(.94);
  }

  60% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-slide,
  .hero-slide.is-active,
  .hero-slide.is-exit,
  .hero-dot {
    transition: none;
  }

  .hero-slide.is-active .hero-slide-stage img {
    animation: none;
  }
}

.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.service-strip {
  background: white;
  border-block: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-grid div {
  padding: 24px 18px;
  border-right: 1px solid var(--border);
}

.service-grid div:last-child {
  border-right: 0;
}

.service-grid strong {
  display: block;
  color: var(--dark);
  font: 700 17px/1.2 'Montserrat', sans-serif;
}

.service-grid span {
  color: var(--muted);
  font-size: 14px;
}

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

.category-card,
.product-card,
.blog-card,
.about-box,
.enquiry-card,
.split-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(32, 38, 49, .06);
}

.category-card {
  padding: 28px;
  transition: .25s ease;
}

.category-card:hover,
.product-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #efffdc;
  font-size: 28px;
  margin-bottom: 18px;
}

.category-card p,
.product-card p,
.blog-card p {
  color: var(--muted);
}

.category-card a,
.product-card a,
.blog-card a {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.categories-section {
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(57, 239, 0, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 82%, rgba(32, 38, 49, 0.05), transparent 55%),
    linear-gradient(180deg, #f7ffe9 0%, #ffffff 48%, #f3f5f7 100%);
}

.categories-section .section-title {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  margin: 14px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

.categories-section .category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.categories-section .category-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(231, 234, 240, 0.95);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.categories-section .category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 239, 0, 0.42);
  box-shadow: 0 18px 36px rgba(32, 38, 49, 0.12);
}

.category-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 22px;
  background:
    linear-gradient(145deg, #f2ffd9 0%, #efffb2 48%, #f3f5f7 100%);
  overflow: hidden;
}

.category-media::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(57, 239, 0, 0.14);
}

.category-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 148px;
  object-fit: contain;
}

.category-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 36px;
  box-shadow: inset 0 0 0 1px rgba(57, 239, 0, 0.16);
}

.category-image[hidden],
.category-fallback[hidden] {
  display: none;
}

.category-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
  text-align: left;
}

.categories-section .category-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.categories-section .category-card p {
  margin: 0 0 18px;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.categories-section .category-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  width: fit-content;
}

.categories-section .category-card a::after {
  content: "→";
  transition: transform .25s ease;
}

.categories-section .category-card:hover a::after {
  transform: translateX(3px);
}

.catalog-browser-section[hidden] {
  display: none;
}

.catalog-browser-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(57, 239, 0, 0.1), transparent 26%),
    linear-gradient(180deg, #f5ffe9 0%, #ffffff 42%, #f3f5f7 100%);
}

.catalog-page-back {
  display: inline-flex;
  margin-bottom: 30px;
  color: #20b900;
  font: 700 13px/1.2 'Poppins', sans-serif;
}

.catalog-page-back:hover {
  color: var(--dark);
}

.catalog-browser-header {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 30px;
}

.catalog-browser-header .section-lead {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  max-width: 620px;
}

.catalog-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 8px 12px 8px 20px;
  background: var(--dark);
  border: 1px solid rgba(233, 255, 0, .22);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(32, 38, 49, .14);
}

.catalog-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(57, 239, 0, .14), 0 18px 36px rgba(32, 38, 49, .14);
}

.catalog-search-icon {
  color: var(--accent);
  font-size: 29px;
  line-height: 1;
  transform: rotate(-20deg);
}

.catalog-search-box input {
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: 600 15px/1.4 'Nunito', sans-serif;
  box-shadow: none;
}

.catalog-search-box input::placeholder {
  color: #b6bec8;
}

.catalog-search-clear {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.catalog-search-clear:hover {
  background: var(--accent);
  color: var(--dark);
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  gap: 24px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(32, 38, 49, .05);
}

.catalog-filter-group {
  flex: 1;
  min-width: 0;
}

.catalog-filter-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font: 700 11px/1.2 'Poppins', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filter-button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  font: 700 12px/1 'Poppins', sans-serif;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.catalog-filter-button:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.catalog-filter-button.is-active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--accent);
}

.catalog-subcategory-filter {
  width: min(220px, 100%);
  flex: 0 0 220px;
}

.catalog-subcategory-filter select {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  font: 600 13px/1.2 'Nunito', sans-serif;
  outline: none;
}

.catalog-subcategory-filter select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 239, 0, .14);
}

.catalog-result-count {
  flex: 0 0 auto;
  margin: 0 0 8px auto;
  color: var(--muted);
  font: 700 12px/1.3 'Poppins', sans-serif;
  white-space: nowrap;
}

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

.catalog-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(32, 38, 49, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.catalog-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 239, 0, .42);
  box-shadow: 0 18px 34px rgba(32, 38, 49, .12);
}

.catalog-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #efffdc 0%, #f8fff0 54%, #e9eef2 100%);
}

.catalog-product-visual::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(233, 255, 0, .2);
}

.catalog-product-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 142px;
  object-fit: contain;
  mix-blend-mode: darken;
}

.catalog-product-image[hidden],
.catalog-product-fallback[hidden] {
  display: none;
}

.catalog-product-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .8);
  font-size: 40px;
  box-shadow: inset 0 0 0 1px rgba(57, 239, 0, .18);
}

.catalog-product-category {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(32, 38, 49, .9);
  color: var(--accent);
  font: 700 10px/1 'Poppins', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.catalog-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.catalog-product-path {
  margin: 0 0 8px;
  color: #20b900;
  font: 700 11px/1.3 'Poppins', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.catalog-product-path span {
  margin: 0 3px;
  color: var(--muted);
}

.catalog-product-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.catalog-product-description {
  flex: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.catalog-enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--dark);
  color: var(--accent);
  font: 700 12px/1 'Poppins', sans-serif;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.catalog-enquiry-button:hover {
  background: #343d4b;
  color: var(--accent);
  transform: translateY(-1px);
}

.catalog-empty-state {
  grid-column: 1 / -1;
  padding: 46px 24px;
  text-align: center;
  background: rgba(255, 255, 255, .8);
  border: 1px dashed var(--border);
  border-radius: 16px;
}

.catalog-empty-state>span {
  display: block;
  margin-bottom: 10px;
  color: #20b900;
  font-size: 42px;
  transform: rotate(-20deg);
}

.catalog-empty-state h3 {
  margin-bottom: 6px;
}

.catalog-empty-state p {
  max-width: 460px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.product-modal-open {
  overflow: hidden;
}

body.guide-modal-open {
  overflow: hidden;
}

.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility 0s linear .25s;
}

.guide-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease;
}

.guide-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, .58);
  backdrop-filter: blur(3px);
}

.guide-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: min(88vh, 680px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(57, 239, 0, .25);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(32, 38, 49, .34);
  transform: translateY(12px) scale(.98);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.guide-modal.is-open .guide-modal-dialog {
  transform: none;
}

.guide-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.guide-modal-close:hover,
.guide-modal-close:focus-visible {
  background: #f3f5f7;
  color: var(--dark);
}

.guide-modal-dialog .eyebrow {
  margin: 0 44px 8px 0;
}

.guide-modal-dialog h2 {
  margin: 0 34px 18px 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.25;
}

.guide-modal-content>p:first-child {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.guide-modal-content ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-modal-content li {
  position: relative;
  padding: 11px 12px 11px 34px;
  border-radius: 9px;
  background: rgba(57, 239, 0, .07);
  color: #3e4652;
  font-size: 14px;
  line-height: 1.55;
}

.guide-modal-content li::before {
  position: absolute;
  left: 13px;
  color: #20b900;
  content: '✓';
  font-weight: 900;
}

.guide-modal-tip {
  margin: 18px 0 0;
  padding: 11px 13px;
  border-left: 3px solid #20b900;
  border-radius: 0 8px 8px 0;
  background: #f7fff3;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.product-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility 0s linear .25s;
}

.product-enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, visibility 0s linear 0s;
}

.product-enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, .7);
  backdrop-filter: blur(5px);
}

.product-enquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 24px;
  background: linear-gradient(145deg, #f7fff0 0%, #ffffff 46%, #eef3f5 100%);
  border: 1px solid rgba(57, 239, 0, .24);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(32, 38, 49, .34);
  transform: translateY(12px) scale(.98);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.product-enquiry-modal.is-open .product-enquiry-dialog {
  transform: none;
}

.product-enquiry-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 38, 49, .08);
  color: var(--dark);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.product-enquiry-close:hover {
  background: var(--dark);
  color: var(--accent);
}

.product-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.product-enquiry-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, #efffdc 0%, #eaffbd 52%, #e8eef1 100%);
}

.product-enquiry-visual::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(233, 255, 0, .2);
}

.product-enquiry-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 245px;
  object-fit: contain;
}

.product-enquiry-visual img[hidden],
.product-enquiry-visual span[hidden] {
  display: none;
}

.product-enquiry-visual span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  font-size: 48px;
  box-shadow: inset 0 0 0 1px rgba(57, 239, 0, .18);
}

.product-enquiry-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 16px 8px 0;
}

.product-enquiry-details .eyebrow {
  margin-bottom: 12px;
}

.product-enquiry-category {
  margin: 0 0 8px;
  color: #20b900;
  font: 700 11px/1.3 'Poppins', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-enquiry-details h2 {
  margin-bottom: 18px;
  padding-right: 30px;
  font-size: clamp(25px, 3vw, 36px);
}

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

.product-enquiry-meta span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, .7);
}

.product-enquiry-meta strong {
  color: var(--muted);
  font: 700 10px/1.2 'Poppins', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-enquiry-meta b {
  overflow: hidden;
  color: var(--dark);
  font: 700 13px/1.3 'Nunito', sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-enquiry-message-wrap {
  margin-bottom: 18px;
}

.product-enquiry-message-label {
  margin: 0 0 7px;
  color: var(--muted);
  font: 700 11px/1.2 'Poppins', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-enquiry-message {
  max-height: 145px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(37, 211, 102, .22);
  border-radius: 10px;
  background: rgba(37, 211, 102, .07);
  color: #3e4652;
  font: 500 12px/1.55 'Nunito', sans-serif;
  white-space: pre-wrap;
}

.remote-battery-option {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(32, 185, 0, .2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(57, 239, 0, .07), rgba(255, 255, 255, .84));
}

.remote-battery-option[hidden] {
  display: none;
}

.remote-battery-option legend {
  grid-column: 1 / -1;
  padding: 0 4px;
  color: var(--dark);
  font: 800 12px/1.2 'Poppins', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.remote-battery-option-help {
  grid-column: 1 / -1;
  margin: -4px 0 2px;
  color: var(--muted);
  font: 600 12px/1.35 'Nunito', sans-serif;
}

.remote-battery-choice {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(62, 70, 82, .16);
  border-radius: 9px;
  background: rgba(255, 255, 255, .88);
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.remote-battery-choice:hover {
  border-color: rgba(32, 185, 0, .45);
  transform: translateY(-1px);
}

.remote-battery-choice input {
  appearance: none;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin: 0;
  border: 2px solid #aeb7c0;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

.remote-battery-choice input:checked {
  border-color: #20b900;
  background: #20b900;
  box-shadow: inset 0 0 0 3px #fff;
}

.remote-battery-choice:has(input:checked) {
  border-color: #20b900;
  background: rgba(57, 239, 0, .11);
  box-shadow: 0 5px 14px rgba(32, 185, 0, .12);
}

.remote-battery-choice input:focus-visible {
  outline: 3px solid rgba(32, 185, 0, .28);
  outline-offset: 2px;
}

.remote-battery-choice-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.remote-battery-choice-copy strong {
  font: 800 13px/1.25 'Nunito', sans-serif;
}

.remote-battery-choice-copy small {
  color: var(--muted);
  font: 600 11px/1.25 'Nunito', sans-serif;
}

@media (max-width: 500px) {
  .remote-battery-option {
    grid-template-columns: 1fr;
  }
}

.product-enquiry-whatsapp {
  margin-top: auto;
  text-align: center;
  text-transform: none;
}

.category-grid-empty,
.category-grid-error {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--border);
  border-radius: 12px;
}

.light-section,
.products-section,
.enquiry-section {
  background: var(--light);
}

.split-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.split-card p {
  max-width: 720px;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-box {
  padding: 32px;
  border-top: 4px solid var(--primary);
}

.about-box ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.about-box li {
  margin: 10px 0;
}

.about-content p {
  font-size: 17px;
}

.product-card {
  padding: 26px;
  text-align: center;
}

.product-card-media {
  position: relative;
  display: grid !important;
  place-items: center;
  min-height: 150px;
  margin: -2px 0 18px;
  padding: 16px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #efffdc 0%, #f8fff0 54%, #e9eef2 100%);
}

.product-card-media::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(233, 255, 0, .18);
}

.product-card-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
}

.product-card-media img[hidden],
.product-card-fallback[hidden] {
  display: none;
}

.product-card-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  font-size: 34px;
  box-shadow: inset 0 0 0 1px rgba(57, 239, 0, .18);
}

.product-card div {
  font-size: 44px;
  margin-bottom: 14px;
}

.product-card-media {
  font-size: initial !important;
  margin-bottom: 18px !important;
}

.blog-card {
  padding: 26px;
}

.blog-card span {
  color: var(--primary);
  font: 700 13px/1 'Poppins', sans-serif;
}

.enquiry-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  padding: 34px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 15px;
  font: 500 15px/1.4 'Nunito', sans-serif;
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 239, 0, .16);
}

.footer {
  background: var(--dark);
  color: #d9dde3;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.footer a,
.footer p {
  display: block;
  color: #c9ced6;
  margin: 7px 0;
  font-size: 14px;
}

.blog-read-more {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: 700 14px/1.4 'Nunito', sans-serif;
  cursor: pointer;
}

.blog-read-more:hover,
.blog-read-more:focus-visible {
  color: var(--dark);
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 30;
  font-family: 'Poppins', sans-serif;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s linear .28s;
}

.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .28s ease, visibility 0s linear 0s;
}

.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, 0.55);
  backdrop-filter: blur(3px);
}

.enquiry-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  background:
    linear-gradient(180deg, #f2fff6 0%, #ffffff 36%, #ffffff 100%);
  border: 1px solid rgba(231, 234, 240, 0.95);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(32, 38, 49, 0.3);
  padding: 28px 26px 26px;
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.enquiry-modal.is-open .enquiry-modal-dialog {
  transform: none;
}

.enquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.enquiry-modal-close:hover {
  color: var(--dark);
  background: #f3f5f7;
}

.enquiry-modal-content {
  display: grid;
  gap: 20px;
  text-align: center;
}

.enquiry-modal-header {
  padding: 0 24px;
}

.enquiry-modal-header h2 {
  /* max-width: 560px; */
  margin: 0 auto 12px;
  font-size: clamp(26px, 2.75vw, 34px);
  line-height: 1.3;
  text-transform: uppercase;
  text-wrap: balance;
}

.enquiry-modal-header p:last-child {
  /* max-width: 520px; */
  margin: 0 auto;
  color: #516170;
  font-size: 17px;
  font-weight: 700;
  padding-top: 24px;
}

.whatsapp-message-visual {
  position: relative;
  display: grid;
  place-items: center;
  /* min-height: 440px; */
  padding: 18px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.10), rgba(255, 255, 255, 0.96) 38%, rgba(57, 239, 0, 0.08)),
    radial-gradient(circle at 18% 18%, rgba(37, 211, 102, 0.14), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(233, 255, 0, 0.16), transparent 30%);
  border: 1px solid rgba(37, 211, 102, 0.14);
}

.whatsapp-message-image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(32, 38, 49, 0.2);
  background: white;
  object-fit: contain;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 0;
  width: 100%;
  margin-top: 4px;
  min-height: 52px;
  font: 800 15px/1 'Poppins', sans-serif;
  text-transform: uppercase;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .guide-modal {
    padding: 12px;
    align-items: end;
  }

  .guide-modal-dialog {
    max-height: 90vh;
    padding: 26px 18px 20px;
    border-radius: 16px 16px 0 0;
  }

  .enquiry-modal {
    padding: 12px;
    align-items: end;
  }

  .enquiry-modal-dialog {
    width: 100%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    padding: 22px 18px 18px;
  }

  .enquiry-modal-header {
    padding: 0 10px;
  }

  .whatsapp-message-visual {
    min-height: 260px;
    padding: 12px;
  }
}

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

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

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 78px;
    border-radius: 0px !important;
    background: var(--dark);
    /* border: 1px solid rgba(233, 255, 0, .18); */
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content,
  .hero-card {
    grid-column: 1;
  }

  .hero-content {
    max-width: none;
    padding-inline: 16px;
  }

  .about-grid,
  .enquiry-card {
    grid-template-columns: 1fr;
  }

  .catalog-browser-header {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    flex-wrap: wrap;
  }

  .catalog-filter-group {
    flex-basis: 100%;
  }

  .catalog-result-count {
    margin-left: 0;
  }

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

  .hero {
    padding: 0;
  }

  .hero-slides {
    height: clamp(300px, 52vw, 420px);
    min-height: 300px;
    padding: 14px 14px 10px;
    border-radius: 14px;
  }

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

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

  .service-grid div:nth-child(2) {
    border-right: 0;
  }

  .service-grid div:nth-child(1),
  .service-grid div:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .category-grid,
  .product-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {

  .container,
  .navbar {
    width: min(100% - 24px, 1180px);
  }

  .announcement {
    font-size: 12px;
  }

  .brand {
    width: 154px;
    height: 72px;
  }

  .navbar {
    min-height: 78px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-content {
    padding-inline: 12px;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .hero {
    padding: 0;
  }

  .hero-slides {
    height: 280px;
    min-height: 280px;
    padding: 12px 12px 8px;
    border-radius: 12px;
  }

  .service-grid,
  .category-grid,
  .product-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-browser-header {
    gap: 24px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .catalog-subcategory-filter {
    width: 100%;
    flex-basis: auto;
  }

  .catalog-result-count {
    margin: 0;
  }

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

  .product-enquiry-modal {
    padding: 12px;
    align-items: end;
  }

  .product-enquiry-dialog {
    width: 100%;
    max-height: 92vh;
    padding: 18px;
    border-radius: 18px 18px 0 0;
  }

  .product-enquiry-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-enquiry-visual {
    min-height: 190px;
    padding: 16px;
  }

  .product-enquiry-visual img {
    height: 160px;
  }

  .product-enquiry-details {
    padding: 0;
  }

  .product-enquiry-meta {
    grid-template-columns: 1fr;
  }

  .categories-section .category-grid {
    grid-template-columns: 1fr;
  }

  .service-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-grid div:last-child {
    border-bottom: 0;
  }

  .category-card,
  .product-card,
  .blog-card,
  .about-box,
  .split-card,
  .enquiry-card {
    padding: 22px;
  }

  .whatsapp-float {
    padding: 12px 15px;
    font-size: 14px;
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.brand-grid span {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  color: var(--dark);
  font: 700 15px/1.2 'Montserrat', sans-serif;
  box-shadow: 0 8px 20px rgba(32, 38, 49, .06);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 8px 20px rgba(32, 38, 49, .06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--dark);
  font: 700 17px/1.3 'Montserrat', sans-serif;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.newsletter-section {
  background: var(--white);
}

.newsletter-whatsapp {
  min-width: min(430px, 100%);
}

.newsletter-whatsapp-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.wa-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 4px;
  background: #25d366;
  color: #ffffff;
  font: 800 15px/1 'Poppins', sans-serif;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.wa-channel-btn:hover {
  background: #1ebe57;
  color: #ffffff;
  transform: translateY(-1px);
}

.wa-channel-btn:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px;
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

@media (max-width: 900px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-whatsapp {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-whatsapp .wa-channel-btn {
    width: 100%;
  }
}