:root {
  --navy: #171229;
  --green: #58bd2b;
  --green-dark: #328f19;
  --ink: #111318;
  --muted: #5c646b;
  --page: #eef1f5;
  --card: #ffffff;
  --line: #d9dde3;
  --footer: #202122;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  padding-top: 172px;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.site-header,
main,
.footer {
  transition: opacity 520ms ease, transform 520ms ease;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--page);
  color: var(--green-dark);
  overflow: hidden;
  transition: transform 620ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader.is-hidden {
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(620px, calc(100% - 48px));
  text-align: center;
}

.loader-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(220px, 18vw, 300px);
  height: clamp(220px, 18vw, 300px);
  border-radius: 50%;
}

.loader-logo-wrap img {
  position: relative;
  z-index: 2;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(23, 18, 41, 0.14);
}

.loader-ring,
.loader-ring::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loader-ring {
  background: conic-gradient(var(--green) var(--loader-progress, 30deg), rgba(88, 189, 43, 0.16) 0);
  animation: loader-ring-spin 900ms linear infinite;
  z-index: 1;
}

.loader-ring::before {
  content: "";
  inset: 9px;
  background: var(--page);
}

.loader-count {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(138px, 11vw, 178px));
  transform: translateX(-50%);
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

@keyframes loader-ring-spin {
  to {
    transform: rotate(360deg);
  }
}


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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(1720px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(238, 241, 245, 0.94);
  border-bottom: 1px solid rgba(217, 221, 227, 0.9);
  backdrop-filter: blur(18px);
  transition: background-color 360ms ease, border-color 360ms ease, box-shadow 360ms ease, backdrop-filter 360ms ease;
  will-change: background-color, backdrop-filter;
}

.site-header.is-scrolled {
  background: rgba(238, 241, 245, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 38px rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
}

.topbar {
  overflow: hidden;
  max-height: 112px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 360ms ease, opacity 260ms ease, transform 360ms ease, border-color 360ms ease;
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  border-bottom-width: 0;
  border-bottom-color: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.topbar .shell,
.topbar-brand-wrap,
.topbar-links,
.nav-shell,
.main-nav,
.nav-actions,
.brand {
  display: flex;
  align-items: center;
}

.topbar .shell {
  justify-content: space-between;
  min-height: 98px;
  gap: 28px;
}

.topbar-brand-wrap {
  min-width: 0;
  gap: 18px;
}

.topbar-brand-wrap .brand {
  gap: 14px;
}

.topbar-tagline {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.topbar-links {
  margin-left: auto;
  gap: 24px;
}

.topbar-links p{
  border: 2px solid black;
  padding: 8px;
  color: white;
  background-color: var(--navy);
  border-radius: 20px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.social-link:hover {
  background: rgba(88, 189, 43, 0.1);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.social-link[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-shell {
  position: relative;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: min-height 360ms ease, background-color 360ms ease, border-color 360ms ease, box-shadow 360ms ease, border-radius 360ms ease, padding 360ms ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 68px;
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  flex-shrink: 0;
  gap: 14px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--navy) url("logo.jpg") center / cover;
  color: var(--green);
  /*box-shadow: inset 0 0 0 3px var(--green), inset 0 0 0 8px var(--navy), inset 0 0 0 10px rgba(88, 189, 43, 0.8);*/
  font-weight: 900;
  font-size: 0;
  transition: width 360ms ease, height 360ms ease;
}

.site-header.is-scrolled .logo-mark {
  width: 58px;
  height: 58px;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  transition: font-size 360ms ease;
}

.site-header.is-scrolled .brand strong {
  font-size: 25px;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: opacity 260ms ease, transform 360ms ease;
}

.site-header.is-scrolled .brand small {
  opacity: 0.72;
  transform: translateY(-1px);
}

.main-nav {
  position: relative;
  flex: 1;
  min-width: 0;
  gap: 24px;
  color: #4c5359;
  font-size: 17px;
  white-space: nowrap;
}

.main-nav .catalog-link {
  flex-shrink: 0;
}

.main-nav > a:not(.catalog-link) {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.catalog-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 8px;
  font-weight: 800;
}

.catalog-link {
  padding: 0 20px;
  background: var(--navy);
  min-height: 80px;
  border-radius: 0;
  color: #fff;
  margin: -2px 0;
}

.catalog-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  z-index: 40;
  width: min(620px, calc(100vw - 48px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav:has(.catalog-link:hover) .catalog-dropdown,
.main-nav:has(.catalog-dropdown:hover) .catalog-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.catalog-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0px 0px 8px 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(17, 19, 24, 0.16);
  padding: 14px;
  backdrop-filter: blur(18px) saturate(140%);
}

.catalog-dropdown a {
  display: flex;
  gap: 5px;
  min-height: 44px;
  align-content: center;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  white-space: normal;
  transition: background-color 160ms ease, color 160ms ease;
}

.catalog-dropdown a:hover,
.catalog-dropdown a.is-active {
  background: var(--navy);
  color: var(--green);
}

.catalog-dropdown span {
  font-weight: 900;
}

.catalog-dropdown small {
  color: inherit;
  opacity: 0.72;
}

.catalog-dropdown {
  width: min(1180px, calc(100vw - 48px));
}

.catalog-dropdown-inner.catalog-mega {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-color: rgba(17, 19, 24, 0.1);
  background: #fff;
  padding: 0;
  color: var(--ink);
  backdrop-filter: none;
}

.catalog-mega-roots {
  display: flex;
  flex-direction: column;
  max-height: min(72vh, 620px);
  overflow: auto;
  background: #f3f4f6;
  padding-bottom: 12px;
}

.catalog-mega-root {
  display: flex;
  flex-direction: row;
  min-height: 54px;
  align-items: center;
  grid-template-columns: none;
  gap: 14px;
  border-radius: 0;
  padding: 0 22px;
  color: #1c2026;
}

.catalog-mega-root:hover,
.catalog-mega-root.is-active {
  flex-direction: row;
  background: #fff;
  color: var(--green-dark);
}

.catalog-mega-root-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: currentColor;
}

.catalog-category-icon {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-mega-panels {
  min-height: 460px;
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 34px 40px;
}

.catalog-mega-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 34px 42px;
}

.catalog-mega-panel.is-active {
  display: grid;
}

.catalog-mega-group {
  min-width: 0;
}

.catalog-mega-group-empty {
  max-width: 360px;
}

.catalog-mega-group-empty p {
  margin: 14px 0 0 40px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.catalog-mega-group-title {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: #111318;
}

.catalog-mega-group-title:hover,
.catalog-mega-group-title.is-active {
  background: transparent;
  color: var(--green-dark);
}
.catalog-mega-group-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: #111318;
}

.catalog-mega-group-title strong {
  font-size: 18px;
  line-height: 1.2;
}

.catalog-mega-leaves {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-left: 40px;
}

.catalog-mega-leaves a {
  min-height: 0;
  display: inline;
  padding: 0;
  color: #303640;
  font-size: 16px;
  line-height: 1.25;
}

.catalog-mega-leaves a:hover,
.catalog-mega-leaves a.is-active {
  background: transparent;
  color: var(--green-dark);
}

.catalog-mega-empty {
  padding: 34px;
  color: var(--muted);
}

.nav-actions {
  position: relative;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 130;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  border: 0;
  background: rgba(17, 12, 28, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

body.nav-open .nav-backdrop {
  opacity: 1 !important;
  pointer-events: auto;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  border: 0;
  background: rgba(17, 12, 28, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  width: min(85vw, 420px);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  background: var(--page);
  box-shadow: -28px 0 60px rgba(17, 19, 24, 0.3);
  padding: 22px 18px 34px;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  border-radius: 8px;
  background: var(--navy);
  padding: 0 8px 0 20px;
  color: #fff;
}

.mobile-menu-head strong {
  font-size: 24px;
  font-weight: 900;
}

.mobile-menu-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-link,
.catalog-toggle {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  padding: 0 20px;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.catalog-toggle {
  background: var(--navy);
  color: #fff;
}

.catalog-toggle span {
  color: var(--green);
  font-size: 22px;
}

.catalog-list {
  display: grid;
  max-height: 0;
  gap: 8px;
  overflow: hidden;
  border-left: 4px solid var(--green);
  margin: -4px 0 0 18px;
  padding: 0 0 0 14px;
  opacity: 0;
  transition: max-height 260ms ease, opacity 200ms ease, padding-top 260ms ease, padding-bottom 260ms ease;
}

.catalog-list.open {
  max-height: none;
  overflow: visible;
  padding-top: 10px;
  padding-bottom: 10px;
  opacity: 1;
}

.catalog-list a {
  display: grid;
  gap: 5px;
  min-height: 62px;
  align-content: center;
  border: 1px solid rgba(23, 18, 41, 0.06);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  padding: 12px 14px;
}

.catalog-list span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.catalog-list small {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.catalog-list a.catalog-list-child {
  margin-left: calc(14px * var(--catalog-depth, 1));
  background: rgba(255, 255, 255, 0.72);
}

.catalog-list a.catalog-list-child span {
  font-size: 16px;
}

.search {
  position: relative;
  display: block;
  width: clamp(200px, 15vw, 280px);
  transition: width 220ms ease;
}

.search:focus-within {
  width: clamp(230px, 18vw, 320px);
}

.search span {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  color: var(--muted);
}

.search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search input {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 0 16px 0 52px;
  outline: 2px solid transparent;
  font-size: 15px;
  transition: background-color 360ms ease;
}

.site-header.is-scrolled .search input {
  background: rgba(255, 255, 255, 0.72);
}

.search input:focus {
  outline-color: rgba(88, 189, 43, 0.45);
}

.icon-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #4f565b;
  cursor: pointer;
  padding: 0;
}

.icon-link svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 180ms ease, transform 180ms ease;
}

.icon-link:hover svg,
.icon-link.is-open svg {
  color: var(--green-dark);
  transform: translateY(-1px);
}

.icon-link b {
  position: absolute;
  right: -2px;
  bottom: -1px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--green);
  color: var(--navy);
  font-size: 12px;
}

.cart-popover {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(460px, 100vw);
  background: #11161b;
  color: #fff;
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.34);
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  border: 0;
  background: rgba(17, 12, 28, 0.72);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.cart-popover.is-open {
  pointer-events: auto;
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-popover-inner {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 100%;
  padding: 32px;
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 24px;
}

.cart-drawer-head strong {
  color: #fff;
  font-size: 28px;
}

.cart-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 30px;
  cursor: pointer;
}

.cart-popover p {
  color: rgba(255, 255, 255, 0.72);
}

.cart-empty {
  align-self: start;
  margin: 28px 0;
  font-size: 18px;
  line-height: 1.5;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: calc(100vh - 260px);
  overflow: auto;
  margin: 26px 0;
  padding-right: 6px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr 34px;
  gap: 14px;
  align-items: center;
  border-radius: 8px;
  background: #1b2128;
  padding: 12px;
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item b,
.cart-item small {
  display: block;
}

.cart-item b {
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.cart-item small {
  margin-top: 5px;
  color: var(--green);
  font-weight: 800;
}

.cart-item button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: 22px;
  cursor: pointer;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 22px;
  padding-top: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.cart-total strong {
  color: var(--green);
  font-size: 30px;
}

.cart-popover-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  background: var(--green);
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  height: 550px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 18, 41, 0.76), rgba(23, 18, 41, 0.2)),
    var(--hero-image, url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=2200&q=85")) center / cover;
  box-shadow: var(--shadow);
  transition: background-image 260ms ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 92%);
  padding: 86px 88px;
  color: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-card.is-changing .hero-content {
  opacity: 0;
  transform: translateY(12px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
}

.hero p {
  max-width: 540px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  line-height: 1.45;
}

.btn {
  padding: 0 24px;
  background: var(--green);
  color: var(--navy);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 42px;
  cursor: pointer;
}

.hero-arrow.left {
  left: 22px;
}

.hero-arrow.right {
  right: 22px;
}

.hero-arrow p{
  margin-top: 0px !important;
  color: var(--ink);
  font-size: 40px;
}

.warranty {
  position: absolute;
  right: 96px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  text-align: center;
  transform: rotate(-7deg);
}

.warranty strong {
  display: block;
  font-size: 27px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-top: 40px;
}

.warranty span {
  display: block;
  margin-top: -40px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slider-line {
  width: min(430px, 56%);
  height: 9px;
  margin: 34px auto 0;
  border-radius: 99px;
  background: #d5d9df;
}

.slider-line span {
  display: block;
  width: 26%;
  height: 100%;
  margin-left: var(--slider-offset, 0%);
  border-radius: inherit;
  background: #737980;
  transition: margin-left 260ms ease;
}

.categories,
.products-section{
  padding: 58px 0;
}

.page-section {
  padding: 20px;
}

.page-section  p{
  color: var(--line);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 30px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 0 42px;
  border-radius: 999px;
  background: #fff;
  color: #4f565b;
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.03);
  font-size: 26px;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.category-chip:hover,
.category-chip.is-active {
  background: var(--navy);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(17, 19, 24, 0.08);
}

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

h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 500;
  line-height: 1;
}

.section-head a,
.text-link {
  color: var(--green-dark);
  font-weight: 900;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(88, 189, 43, 0);
  border-radius: 8px;
  background: var(--card);
  color: inherit;
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.2;
  margin: 12px 12px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(50, 143, 25, 0.16);
  transform: translateY(-2px);
}

.product-card.out-of-stock {
  opacity: 0.5;
  filter: grayscale(0.45);
}

.product-card.out-of-stock:hover,
.product-card.out-of-stock:focus-within {
  border-color: rgba(101, 112, 131, 0.22);
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
  transform: none;
}

.product-card.out-of-stock .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.product-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 999px;
  background: #ff6633;
  color: #fff;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.tag.out-stock-tag {
  background: #66707d;
  color: #fff;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 12px;
}

.product-title {
  display: block;
  min-height: 44px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.price {
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 950;
  white-space: nowrap;
}

.price-old {
  color: #7a8494;
  font-size: 15px;
  font-weight: 850;
  text-decoration: line-through;
}

.price-discount {
  border-radius: 999px;
  background: #ffe8dc;
  color: #bd4216;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 950;
}

.price-installment {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-installment small {
  color: #657083;
  font-size: 12px;
  font-weight: 700;
}

.price-installment strong {
  color: var(--navy);
  font-size: 18px;
}

.add-cart-btn {
  width: calc(100% - 32px);
  min-height: 44px;
  margin: 0 16px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.add-cart-btn:hover,
.add-cart-btn:focus-visible,
.add-detail-cart:hover,
.add-detail-cart:focus-visible {
  background: #6ed43c;
  box-shadow: 0 12px 26px rgba(50, 143, 25, 0.22);
  transform: translateY(-1px);
}

.add-cart-btn:disabled,
.add-cart-btn:disabled:hover,
.add-cart-btn:disabled:focus-visible,
.add-detail-cart:disabled,
.add-detail-cart:disabled:hover,
.add-detail-cart:disabled:focus-visible {
  background: #9da7a0;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.add-cart-btn:focus-visible,
.add-detail-cart:focus-visible {
  outline: 3px solid rgba(88, 189, 43, 0.34);
  outline-offset: 3px;
}

.about-preview {
  padding: 68px 0 116px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: center;
}

.about-grid p,
.lead {
  margin: 0 0 28px;
  color: #1e2227;
  font-size: 26px;
  line-height: 1.45;
}

.page-hero {
  padding: 76px 0 0px;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.45;
}

.compact-section {
  padding-top: 0;
}

.about-story,
.services-intro,
.map-feature,
.visit-strip,
.service-cta {
  display: grid;
  gap: 34px;
}

.about-story {
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
}

.story-copy h2,
.map-feature h2,
.visit-strip h2,
.service-cta h2 {
  margin: 12px 0 22px;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
}

.services-intro h2{
  margin: 12px 0 22px;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
}

.map-feature h2{
  font-size: clamp(34px, 4vw, 58px);
}

.story-copy p,
.services-intro p,
.map-feature p,
.service-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.map-feature p{
  margin-bottom: 30px;
}

.story-image {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--navy);
}

.story-image img {
  width: 100%;
  height: min(560px, 56vw);
  min-height: 420px;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stats-row span {
  min-height: 118px;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.stats-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.info-grid,
.service-grid{
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.info-card,
.service-card,
.form-card {
  border-radius: 8px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
}

.contact-card{
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
}

.info-card h3,
.service-card h3,
.contact-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
}

.info-card p,
.service-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.contact-card {
  min-height: 182px;
}

.contact-card span,
.image-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e8f8e0;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-card a {
  color: inherit;
}

.services-intro {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  margin-bottom: 34px;
}

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

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.image-card div {
  padding: 34px;
}

.image-card h3 {
  font-size: 34px;
}

.service-cta,
.visit-strip,
.map-feature {
  border-radius: 8px;
  background: #fff;
  padding: 42px;
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
}

.service-cta {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.service-cta h2,
.service-cta p {
  grid-column: 1;
}

.service-cta .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.map-feature {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.map-feature iframe,
.contact-map iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
}

.contact-map iframe {
  height: 100%;
  min-height: 620px;
}

.visit-strip {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.visit-strip h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.promo-band {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.promo-band img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.78;
}

.promo-band div {
  padding: 34px;
}

.product-detail-hero {
  padding: 54px 0 74px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.product-detail-media {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: contain;
  padding: 18px;
}

.product-detail-copy {
  display: grid;
  gap: 20px;
}

.back-link {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 900;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}

.product-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.product-detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
}

.product-detail-price strong {
  color: var(--green);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.product-detail-price span {
  color: var(--muted);
  font-size: 22px;
  text-decoration: line-through;
}

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

.product-detail-actions .btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.secondary-btn {
  background: var(--navy);
  color: #fff;
}

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

.product-specs div {
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
}

.product-specs dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.product-characteristics {
  display: grid;
  gap: 12px;
  margin: 8px 0 2px;
  color: #000;
}

.product-characteristics h2 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-characteristics-table {
  display: grid;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.product-characteristics-table div {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 32px;
  padding: 8px 0;
}

.product-characteristics-table div:nth-child(odd) {
  background: #ededed;
}

.product-characteristics-table dt,
.product-characteristics-table dd {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.25;
}

.product-characteristics-table dd {
  white-space: pre-line;
}

.product-related {
  padding-top: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.category-hero {
  padding-bottom: 0;
}

.category-search-page {
  padding: 34px 0 92px;
}

.category-search-box {
  position: relative;
  display: block;
  width: min(760px, 100%);
  margin-bottom: 32px;
}

.category-search-box span {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--muted);
  transform: translateY(-50%);
}

.category-search-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-search-box input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 18px 0 58px;
  outline: 3px solid transparent;
  color: var(--ink);
  font-size: 18px;
  transition: border-color 180ms ease, outline-color 180ms ease;
}

.category-search-box input:focus {
  border-color: var(--green);
  outline-color: rgba(88, 189, 43, 0.2);
}

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

.category-search-card {
  display: grid;
  align-content: start;
  min-height: 236px;
  border: 1px solid rgba(88, 189, 43, 0);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.category-search-card:hover,
.category-search-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(50, 143, 25, 0.16), 0 0 0 3px rgba(88, 189, 43, 0.12);
  transform: translateY(-3px);
}

.category-search-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #e8f8e0;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
}

.category-search-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}

.category-search-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.category-no-results {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.category-no-results[hidden] {
  display: none;
}

.filter-btn {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0 20px;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--navy);
  color: #fff;
}

.catalog-page {
  padding: 34px 0 90px;
}

.catalog-loading {
  display: grid;
  min-height: 420px;
  place-items: center;
  align-content: center;
  gap: 22px;
  border-radius: 8px;
  background: var(--page);
  text-align: center;
}

.catalog-loading[hidden],
.catalog-layout[hidden] {
  display: none;
}

.catalog-loader-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
}

.catalog-loader-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(var(--green) 92deg, rgba(88, 189, 43, 0.16) 0);
  animation: catalog-spin 900ms linear infinite;
}

.catalog-loader-logo::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--page);
}

.catalog-loader-logo img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.catalog-loading p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 30px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 102px;
  max-height: calc(100dvh - 126px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 8px;
  background: #111318;
  padding: 0 28px 28px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(17, 19, 24, 0.14);
  scrollbar-color: rgba(88, 189, 43, 0.82) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.filter-panel::-webkit-scrollbar {
  width: 8px;
}

.filter-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.filter-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(88, 189, 43, 0.82);
}

.filter-title {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0;
  color: #fff;
  font-size: 26px;
}

.mobile-filter-head,
.mobile-filter-open,
.mobile-filter-apply,
.filter-backdrop {
  display: none;
}

.filter-backdrop[hidden] {
  display: none;
}

.filter-section {
  display: grid;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 28px 0 18px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.filter-section-head::-webkit-details-marker {
  display: none;
}

.filter-section-head span[aria-hidden="true"] {
  color: var(--green);
}

.filter-section-content {
  padding-bottom: 28px;
}

.filter-panel label {
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}


.price-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 21px;
  font-weight: 900;
}

.catalog-toolbar select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
}

.price-slider-wrap {
  padding-top: 4px;
}

.range-slider {
  position: relative;
  height: 72px;
  margin: 0 34px;
}

.range-slider::before,
.range-track {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 7px;
  border-radius: 99px;
  transform: translateY(-50%);
}

.range-slider::before {
  background: rgba(255, 255, 255, 0.2);
}

.range-track {
  right: var(--range-right, 0%);
  left: var(--range-left, 0%);
  background: var(--green);
}

.range-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 72px;
  padding: 0;
  margin: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 0 10px rgba(88, 189, 43, 0.18);
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 0 10px rgba(88, 189, 43, 0.18);
}

.brand-filter-options {
  display: grid;
  gap: 18px;
}

.filter-check-row,
.stock-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease;
}

.filter-check-row:hover,
.stock-filter:hover {
  color: var(--green);
}

.filter-check-row input[type="checkbox"],
.stock-filter input[type="checkbox"] {
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: 0;
  appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-check-row input[type="checkbox"]::before,
.stock-filter input[type="checkbox"]::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: var(--navy);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.filter-check-row input[type="checkbox"]:checked,
.stock-filter input[type="checkbox"]:checked {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(88, 189, 43, 0.16);
}

.filter-check-row input[type="checkbox"]:checked::before,
.stock-filter input[type="checkbox"]:checked::before {
  opacity: 1;
  transform: scale(1);
}

.filter-check-row input[type="checkbox"]:focus-visible,
.stock-filter input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(88, 189, 43, 0.32);
  outline-offset: 3px;
}

.brand-check-row {
  align-items: flex-start;
  min-height: 38px;
  padding: 5px 0;
}

.brand-check-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.filter-reset {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.filter-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 64px);
}

.catalog-toolbar p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.catalog-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

@keyframes catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "form map"
    "cards cards";
  gap: 30px;
  align-items: start;
}

.contact-form {
  grid-area: form;
}

.contact-map {
  grid-area: map;
  align-self: stretch;
}

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

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

.form-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
}

.form-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
}

.form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  background: var(--footer);
  color: #fff;
  padding: 70px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer .brand strong {
  color: #fff;
}

.footer .brand small,
.footer h3 {
  color: var(--green);
}

.footer h3 {
  margin: 0 0 22px;
  font-size: 28px;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.copyright {
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.5);
}

.filter-section-content span{
  font-size: 15px;
}


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

  .main-nav {
    gap: 16px;
    font-size: 15px;
  }

  .search {
    width: clamp(220px, 20vw, 300px);
  }

  .search:focus-within {
    width: clamp(240px, 22vw, 330px);
  }
}

@media (max-width: 1180px) {
  body {
    padding-top: 154px;
  }

  .shell {
    width: min(100% - 34px, 1040px);
  }

  .topbar {
    max-height: 86px;
  }

  .topbar .shell {
    min-height: 86px;
  }

  .topbar-links,
  .topbar-tagline {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .site-header.is-scrolled .nav-shell {
    min-height: 74px;
    padding: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    z-index: 10000;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  body.nav-open .brand,
  body.nav-open .nav-actions {
    visibility: hidden;
  }

  body.nav-open .main-nav {
    visibility: visible;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 10001;
    display: grid;
    width: min(440px, 88vw);
    height: 100vh;
    height: 100dvh;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    overflow-y: auto;
    padding: 26px 22px 34px;
    background: rgba(238, 241, 245, 0.98);
    box-shadow: -28px 0 60px rgba(17, 19, 24, 0.28);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 300ms;
    white-space: normal;
  }

  .main-nav:not(.is-open) .catalog-link {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) !important;
    transition-delay: 0s;
  }

  .main-nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    background: #fff;
    padding: 0 18px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
  }

  .main-nav.is-open .catalog-link {
    width: 100%;
    gap: 12px;
    background: var(--navy);
    color: #fff;
    margin-bottom: 2px;
  }

  .catalog-dropdown {
    left: 0;
    width: min(520px, calc(100vw - 34px));
  }

  .main-nav.is-open .catalog-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 260ms ease, opacity 200ms ease;
  }

  .main-nav.is-open:not(.catalog-open) .catalog-dropdown {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .main-nav.is-open.catalog-open .catalog-dropdown {
    max-height: 920px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .main-nav.is-open .catalog-dropdown-inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 10px 18px;
    border: 0;
    border-left: 4px solid var(--green);
    border-radius: 0;
    background: rgba(23, 18, 41, 0.05);
    box-shadow: none;
    padding: 10px 0 10px 14px;
  }

  .main-nav.is-open .catalog-dropdown a {
    display: flex;
    flex-direction: row;
    min-height: 58px;
    background: #fff;
    border: 1px solid rgba(23, 18, 41, 0.06);
    color: var(--navy);
    padding: 12px 14px;
  }

  .main-nav.is-open .catalog-dropdown span {
    font-size: 17px;
    line-height: 1.15;
  }

  .main-nav.is-open .catalog-dropdown small {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
  }

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

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

  .about-grid,
  .catalog-layout,
  .contact-layout,
  .product-detail-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .catalog-layout {
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
    gap: 28px;
  }

  .contact-layout {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .about-story,
  .services-intro,
  .map-feature {
    grid-template-columns: 1fr;
  }

  .story-image img {
    height: 460px;
    min-height: 0;
  }

  .service-grid-large {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 340px;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 88px;
  }

  .shell {
    width: min(100% - 24px, 640px);
  }

  .site-header {
    min-height: 88px;
  }

  .topbar {
    max-height: 88px;
    border-bottom: 0;
  }

  .site-header.is-scrolled .topbar {
    max-height: 88px;
    border-bottom-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .topbar .shell {
    min-height: 88px;
  }

  .topbar-brand-wrap {
    max-width: calc(100% - 116px);
  }

  .topbar-brand-wrap .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .nav-shell {
    position: absolute;
    inset: 0;
    width: min(100% - 24px, 640px);
    gap: 12px;
    justify-content: flex-end;
    min-height: 88px;
    pointer-events: none;
  }

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

  .site-header.is-scrolled .logo-mark {
    width: 54px;
    height: 54px;
  }

  .site-header.is-scrolled .brand strong {
    font-size: clamp(20px, 6.1vw, 28px);
  }

  .site-header.is-scrolled .brand small {
    opacity: 1;
    transform: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
    pointer-events: auto;
  }

  .logo-mark {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    overflow: hidden;
    font-size: clamp(20px, 6.1vw, 28px);
    line-height: 0.95;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    overflow: hidden;
    max-width: 100%;
    font-size: clamp(8px, 2.4vw, 10px);
    letter-spacing: 1.1px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

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

  .icon-link.cart-toggle svg {
    width: 34px;
    height: 34px;
  }

  .icon-link b {
    right: -4px;
    bottom: -2px;
  }

  .main-nav.is-open .catalog-link {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    font-size: 20px;
  }

  .catalog-link span {
    font-size: 22px;
  }

  .catalog-dropdown {
    top: calc(100% + 10px);
    width: min(360px, calc(100vw - 24px));
  }

  .catalog-dropdown-inner {
    grid-template-columns: 1fr;
    max-height: min(68vh, 560px);
    overflow: auto;
  }

  .main-nav.is-open {
    padding: 24px 18px 30px;
  }

  .main-nav.is-open .catalog-dropdown-inner {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    margin-left: 12px;
    padding-left: 12px;
  }

  .catalog-dropdown a {
    min-height: 62px;
  }

  .search,
  .icon-link[aria-label="Favorite"] {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-card {
    min-height: 610px;
    background: linear-gradient(180deg, rgba(23, 18, 41, 0.2), rgba(23, 18, 41, 0.9)), url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1100&q=80") center / cover;
  }

  .hero-content {
    width: 100%;
    padding: 160px 26px 34px;
  }

  .hero p {
    font-size: 18px;
  }

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

  .hero-arrow {
    top: 22px;
    width: 48px;
    height: 48px;
    font-size: 32px;
  }

  .hero-arrow.left {
    left: 22px;
  }

  .hero-arrow.right {
    right: 22px;
  }

  .warranty {
    right: 22px;
    bottom: 24px;
    width: 116px;
    height: 116px;
    border-width: 5px;
  }

  .warranty strong {
    font-size: 16px;
  }

  .warranty span {
    font-size: 9px;
  }

  .chip-grid {
    gap: 14px;
  }

  .category-chip {
    width: 100%;
    min-height: 78px;
    padding: 0 24px;
    font-size: 20px;
  }

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

  .product-grid,
  .category-card-grid,
  .about-grid,
  .info-grid,
  .service-grid,
  .catalog-layout,
  .contact-grid,
  .contact-layout,
  .product-detail-layout,
  .about-story,
  .services-intro,
  .map-feature,
  .visit-strip,
  .service-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-areas:
      "form"
      "map"
      "cards";
  }

  .story-copy h2,
  .services-intro h2,
  .map-feature h2,
  .visit-strip h2,
  .service-cta h2 {
    font-size: 38px;
    line-height: 1.05;
  }

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

  .story-image img,
  .image-card img {
    height: 280px;
  }

  .service-cta,
  .visit-strip,
  .map-feature {
    padding: 28px;
  }

  .service-cta h2,
  .service-cta p,
  .service-cta .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .map-feature iframe,
  .contact-map iframe {
    min-height: 320px;
  }

  .product-title {
    min-height: auto;
  }

  .product-detail-hero {
    padding: 28px 0 54px;
  }

  .product-detail-layout,
  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-detail-copy h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .product-characteristics-table div {
    grid-template-columns: minmax(118px, 0.62fr) minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
  }

  .product-characteristics-table dt,
  .product-characteristics-table dd {
    font-size: 14px;
  }

  .filter-panel {
    position: static;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .catalog-toolbar label,
  .catalog-toolbar select {
    width: 100%;
  }

  .catalog-loading {
    min-height: 320px;
  }

  body.catalog-filter-open {
    overflow: hidden;
  }

  .catalog-page {
    padding: 24px 0 68px;
  }

  .catalog-layout {
    display: block;
  }

  .filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: block;
    background: rgba(17, 19, 24, 0.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
  }

  .filter-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .filter-panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    width: 100%;
    height: 100dvh;
    max-width: none;
    overflow-y: auto;
    border-radius: 0;
    padding: 0 18px 140px;
    background: rgba(17, 19, 24, 0.98);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 280ms ease, opacity 240ms ease;
  }

  .filter-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-filter-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 -18px 14px;
    padding: 14px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 19, 24, 0.99);
  }

  .mobile-filter-kicker {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-filter-head h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.05;
  }

  .mobile-filter-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .filter-title {
    display: none;
  }

  .filter-section-head {
    min-height: 46px;
    padding: 14px 0 10px;
    font-size: 20px;
  }

  .filter-section-content {
    padding-bottom: 16px;
  }

  .price-values {
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .range-slider {
    height: 56px;
    margin: 0 18px;
  }

  .range-slider input[type="range"] {
    height: 56px;
  }

  .range-slider input[type="range"]::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
    box-shadow: 0 0 0 9px rgba(88, 189, 43, 0.2);
  }

  .range-slider input[type="range"]::-moz-range-thumb {
    width: 26px;
    height: 26px;
    box-shadow: 0 0 0 9px rgba(88, 189, 43, 0.2);
  }

  .filter-check-row,
  .stock-filter {
    min-height: 44px;
    font-size: 16px;
    gap: 12px;
  }

  .filter-check-row input[type="checkbox"],
  .stock-filter input[type="checkbox"] {
    width: 26px;
    height: 26px;
  }

  .brand-filter-options {
    gap: 8px;
    padding-bottom: 100px;
  }

  .filter-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1201;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 19, 24, 0.99);
  }

  .filter-reset,
  .mobile-filter-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }

  .filter-reset {
    border: 1px solid rgba(88, 189, 43, 0.72);
    background: transparent;
    color: #fff;
  }

  .mobile-filter-apply {
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--navy);
  }

  .catalog-toolbar {
    position: static;
    top: auto;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 12px;
    margin: -4px 0 22px;
    padding: 12px 0;
    background: var(--page);
  }

  .catalog-toolbar > div {
    grid-column: 1 / -1;
  }

  .catalog-toolbar h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1;
  }

  .catalog-toolbar p {
    margin-top: 6px;
    font-size: 15px;
  }

  .mobile-filter-open {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(88, 189, 43, 0.5);
    border-radius: 8px;
    background: #111318;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-filter-open span {
    color: var(--green);
    font-size: 18px;
  }

  .catalog-toolbar label {
    gap: 6px;
    min-width: 0;
    font-size: 13px;
  }

  .catalog-toolbar select {
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
    font-size: 14px;
  }

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

  .catalog-results .product-media {
    aspect-ratio: 1.05;
    margin: 6px 6px 0;
  }

  .catalog-results .product-body {
    padding: 10px 10px 12px;
  }

  .catalog-results .product-title {
    min-height: 42px;
    font-size: 13px;
    line-height: 1.2;
  }

  .catalog-results .price-row {
    min-height: 28px;
  }

  .catalog-results .price {
    font-size: 19px;
  }

  .catalog-results .add-cart-btn {
    width: calc(100% - 20px);
    min-height: 42px;
    margin: 0 10px 12px;
    font-size: 13px;
  }

  .price {
    font-size: 28px;
  }

  .category-search-page {
    padding: 24px 0 68px;
  }

  .category-search-box {
    margin-bottom: 20px;
  }

  .category-search-box input {
    min-height: 52px;
    font-size: 16px;
  }

  .category-search-card {
    min-height: 0;
    padding: 24px;
  }

  .category-search-card span {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .category-search-card p {
    font-size: 16px;
  }

  .about-preview {
    padding-bottom: 70px;
  }

  .about-grid p,
  .lead {
    font-size: 20px;
  }

  .page-hero {
    padding-top: 46px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.04;
  }

  .footer {
    padding-top: 48px;
  }
}

@media (max-width: 1180px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header,
  body.menu-open .brand,
  body.menu-open .nav-actions {
    visibility: visible;
  }

  .main-nav {
    position: relative;
    inset: auto;
    z-index: auto;
    display: none;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 0;
    background: transparent;
    box-shadow: none;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .main-nav.is-open,
  .main-nav.is-open.catalog-open {
    display: none;
    transform: none !important;
  }

  .nav-backdrop {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }
}

@media (max-width: 760px) {
  .mobile-menu {
    right: 0;
    left: 0;
    width: 100vw;
    max-width: none;
  }

  .catalog-list {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .catalog-list a,
  .catalog-list a.catalog-list-child {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 1181px) {
  .menu-backdrop,
  .mobile-menu,
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: 76px;
  }

  .site-header {
    min-height: 76px;
  }

  .topbar,
  .topbar .shell,
  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    min-height: 76px;
    max-height: 76px;
  }

  .site-header.is-scrolled .topbar {
    min-height: 76px;
    max-height: 76px;
  }

  .topbar-brand-wrap {
    max-width: calc(100% - 104px);
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .site-header.is-scrolled .logo-mark {
    width: 46px;
    height: 46px;
  }

  .topbar-brand-wrap .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .site-header.is-scrolled .brand strong {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .brand small {
    margin-top: 4px;
    font-size: clamp(7px, 2vw, 9px);
    letter-spacing: 0.8px;
  }

  .nav-actions {
    gap: 8px;
  }

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

  .nav-toggle svg {
    width: 23px;
    height: 23px;
  }

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

  .icon-link.cart-toggle svg {
    width: 31px;
    height: 31px;
  }

  .mobile-menu {
    width: 100vw;
    max-width: none;
    padding: 18px 12px 28px;
  }

  .mobile-menu-link,
  .catalog-toggle {
    min-height: 64px;
    padding: 0 16px;
    font-size: 20px;
  }

  .mobile-menu-head strong {
    font-size: 22px;
  }

  .catalog-list {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .menu-backdrop.open {
    background: rgba(0, 0, 0, 0.68);
  }

  .mobile-menu {
    inset: 0 !important;
    z-index: 10020 !important;
    display: block !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 0 !important;
    background:#eef2f6 !important;
    color:var(--navy) !important;
    box-shadow: none !important;
  }

  .mobile-catalog-shell {
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  .mobile-catalog-view {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    background:#eef2f6;
    transition: transform 240ms ease;
  }

  .mobile-catalog-sub-view [data-mobile-catalog-subcontent] {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
  }

  .mobile-catalog-main-view {
    transform: translateX(0);
  }

  .mobile-catalog-sub-view {
    transform: translateX(100%);
  }

  .mobile-menu.is-subview .mobile-catalog-main-view {
    transform: translateX(-100%);
  }

  .mobile-menu.is-subview .mobile-catalog-sub-view {
    transform: translateX(0);
  }

  .mobile-catalog-tabs,
  .mobile-catalog-subtop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 14px 20px 12px;
    border-bottom:1px solid rgba(17,19,24,.08);
    background:#fff;
  }

  .mobile-catalog-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
  }

  .mobile-catalog-tab.is-muted {
    color: rgba(23,18,41,.35);
  }

  .mobile-catalog-tab svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
  }

  .mobile-catalog-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    justify-self: end;
    border: 0;
    border-radius:8px;
    background:var(--navy);
    color:#fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 0.8;
    cursor: pointer;
  }

  .mobile-catalog-list,
  .mobile-catalog-sublist {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 120px;
    scrollbar-width: auto;
    scrollbar-color: var(--green) rgba(17,19,24,.1);
  }

  .mobile-catalog-list::-webkit-scrollbar,
  .mobile-catalog-sublist::-webkit-scrollbar {
    width: 5px;
  }

  .mobile-catalog-list::-webkit-scrollbar-thumb,
  .mobile-catalog-sublist::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: var(--green);
  }

  .mobile-catalog-list::-webkit-scrollbar-track,
  .mobile-catalog-sublist::-webkit-scrollbar-track {
    background: rgba(17,19,24,.1);
  }

  .mobile-catalog-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 26px;
    align-items: center;
    width: 100%;
    min-height: 72px;
    border: 0;
    border-top: 1px solid rgba(17,19,24,.08);
    background: #fff;
    color: var(--navy);
    padding: 0 20px;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-catalog-row:last-child {
    border-bottom: 1px solid rgba(17,19,24,.08);
  }

  .mobile-catalog-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--green-dark);
  }

  .mobile-catalog-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-catalog-title {
    min-width: 0;
    overflow: hidden;
    color: var(--navy);
    font-size: 21px;
    font-weight: 950;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-catalog-arrow {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-catalog-subtop {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding-top: 14px;
  }

  .mobile-catalog-back {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    border: 0;
    background: transparent;
    color: var(--navy);
    padding: 0;
    font: inherit;
    cursor: pointer;
  }

  .mobile-catalog-back span {
    font-size: 32px;
    line-height: 1;
  }

  .mobile-catalog-back strong {
    font-size: 20px;
    font-weight: 950;
  }

  .mobile-catalog-active-head {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    border-bottom: 1px solid rgba(17,19,24,.08);
    color: var(--green-dark);
    background:#fff;
    padding: 0 20px;
  }

  .mobile-catalog-active-head strong {
    min-width: 0;
    overflow: hidden;
    font-size: 21px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-catalog-active-head .is-down {
    stroke: var(--green-dark);
  }

  .mobile-catalog-sublist {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 16px 16px calc(96px + env(safe-area-inset-bottom));
  }

  .mobile-catalog-subheading,
  .mobile-catalog-subitem {
    display: block;
    color: var(--navy);
    text-decoration: none;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.15;
  }

  .mobile-catalog-subheading {
    color: var(--green-dark);
    margin: 8px 4px 4px;
  }

  .mobile-catalog-subitem {
    min-height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(17,19,24,.08);
    border-radius: 8px;
    background: #fff;
    padding: 0 14px;
    box-shadow: 0 1px 0 rgba(17,19,24,.03);
  }
}

@media (max-width: 1180px) {
  .catalog-dropdown-inner.catalog-mega {
    display: grid;
    grid-template-columns: 1fr;
    max-height: min(76vh, 620px);
    overflow: auto;
  }

  .catalog-mega-roots {
    max-height: none;
    background: #fff;
  }

  .catalog-mega-panels {
    min-height: 0;
    padding: 16px;
  }

  .catalog-mega-panel,
  .catalog-mega-panel.is-active {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-mega-leaves {
    padding-left: 0;
  }
}
