@charset "UTF-8";
:root {
  --gm-green: #1A6B3C;
  --gm-dark-green: #144F2D;
  --gm-mid-green: #2D8A52;
  --gm-light-green-bg: #E8F3EC;
  --gm-amber: #F0A500;
  --gm-red: #DC2626;
  --gm-text-primary: #1A1A1A;
  --gm-text-muted: #666666;
  --gm-border: #DDDDDD;
  --gm-page-bg: #F7F6F3;
  --gm-card-bg: #FFFFFF;
  --gm-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06);
  --gm-shadow-dropdown: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.gm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition-property: background-color, border-color, color, box-shadow, transform, opacity;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}
.gm-button:hover {
  text-decoration: none;
}
.gm-button:focus-visible {
  border-color: #1A6B3C;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.14);
  outline: none;
}
.gm-button:active:not(:disabled):not(.is-disabled) {
  transform: scale(0.98);
}
.gm-button:disabled, .gm-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.gm-button--sm {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 13px;
}

.gm-button--lg {
  min-height: 46px;
  padding: 13px 20px;
  font-size: 15px;
}

.gm-button--full {
  width: 100%;
}

.gm-button--primary,
.gm-button--amber {
  background: #F0A500;
  border-color: #F0A500;
  color: #FFFFFF;
}
.gm-button--primary:hover,
.gm-button--amber:hover {
  background: #D89400;
  border-color: #D89400;
  color: #FFFFFF;
}

.gm-button--green {
  background: #1A6B3C;
  border-color: #1A6B3C;
  color: #FFFFFF;
}
.gm-button--green:hover {
  background: #144F2D;
  border-color: #144F2D;
  color: #FFFFFF;
}

.gm-button--secondary {
  background: #FFFFFF;
  border-color: #1A6B3C;
  color: #1A6B3C;
}
.gm-button--secondary:hover {
  background: #E8F3EC;
  color: #144F2D;
}

.gm-button--ghost {
  background: transparent;
  border-color: #DDDDDD;
  color: #1A1A1A;
}
.gm-button--ghost:hover {
  background: #F7F6F3;
  border-color: #666666;
  color: #1A1A1A;
}

.gm-button--danger {
  background: #FEE2E2;
  border-color: #FEE2E2;
  color: #DC2626;
}
.gm-button--danger:hover {
  background: #DC2626;
  border-color: #DC2626;
  color: #FFFFFF;
}

.gm-button__spinner {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: gm-spin 0.7s linear infinite;
}

@keyframes gm-spin {
  to {
    transform: rotate(360deg);
  }
}
.gm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Inter", "Manrope", Arial, sans-serif;
}

.gm-field__label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #666666;
}

.gm-field__required {
  color: #DC2626;
}

.gm-field__control {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}
.gm-field__control::placeholder {
  color: #666666;
}
.gm-field__control:focus {
  border-color: #1A6B3C;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.14);
  outline: none;
}
.gm-field__control:disabled {
  background: #F1F1F1;
  color: #9A9A9A;
  cursor: not-allowed;
}

textarea.gm-field__control {
  min-height: 96px;
  resize: vertical;
}

.gm-field--error .gm-field__control {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.gm-field__help,
.gm-field__error {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.gm-field__help {
  color: #666666;
}

.gm-field__error {
  color: #DC2626;
}

.gm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.gm-badge--green {
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-badge--amber {
  background: rgba(240, 165, 0, 0.14);
  color: #8A5D00;
}

.gm-badge--muted {
  background: #F7F6F3;
  color: #666666;
}

.gm-badge--danger {
  background: #FEE2E2;
  color: #DC2626;
}

.gm-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 6px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition-property: background-color, border-color, color, opacity;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}
.gm-pill:hover {
  background: #E8F3EC;
  border-color: #2D8A52;
  color: #1A6B3C;
  text-decoration: none;
}
.gm-pill:focus-visible {
  border-color: #1A6B3C;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.14);
  outline: none;
}
.gm-pill:disabled, .gm-pill.is-disabled {
  cursor: not-allowed;
  opacity: 0.35;
  text-decoration: line-through;
  pointer-events: none;
}

.gm-pill--selected {
  background: #1A6B3C;
  border-color: #1A6B3C;
  color: #FFFFFF;
}
.gm-pill--selected:hover {
  background: #144F2D;
  border-color: #144F2D;
  color: #FFFFFF;
}

.gm-stepper {
  display: flex;
  gap: 12px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Inter", "Manrope", Arial, sans-serif;
}

.gm-stepper__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  color: #666666;
}
.gm-stepper__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 34px;
  right: -6px;
  border-top: 1px solid #DDDDDD;
}

.gm-stepper__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
  background: #FFFFFF;
  color: #666666;
  font-size: 13px;
  font-weight: 500;
}

.gm-stepper__label {
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-stepper__item--completed,
.gm-stepper__item--active {
  color: #1A1A1A;
}

.gm-stepper__item--completed .gm-stepper__marker {
  background: #1A6B3C;
  border-color: #1A6B3C;
  color: #FFFFFF;
}

.gm-stepper__item--active .gm-stepper__marker {
  background: #E8F3EC;
  border-color: #1A6B3C;
  color: #1A6B3C;
}

.gm-toast-container {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100vw - 32px);
  max-width: 360px;
  pointer-events: none;
}

.gm-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border-left: 4px solid #1A6B3C;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #1A1A1A;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  pointer-events: auto;
  animation: gm-toast-slide-in 0.22s ease;
}

.gm-toast--error {
  border-left-color: #DC2626;
}

.gm-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 13px;
  font-weight: 700;
}

.gm-toast--error .gm-toast__icon {
  background: #FEE2E2;
  color: #DC2626;
}

.gm-toast__message {
  flex: 1 1 auto;
}

.gm-toast__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #666666;
  cursor: pointer;
}

.gm-toast__close:hover {
  background: #F7F6F3;
  color: #1A1A1A;
}

@keyframes gm-toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .gm-stepper {
    gap: 8px;
  }
  .gm-stepper__label {
    font-size: 12px;
  }
  .gm-stepper__item {
    align-items: flex-start;
    flex-direction: column;
  }
  .gm-stepper__item:not(:last-child)::after {
    left: 32px;
    right: -4px;
  }
  .gm-toast-container {
    top: 68px;
    right: 12px;
    width: calc(100vw - 24px);
  }
}
.gm-site-header,
.gm-site-footer,
.gm-home,
.gm-catalog-page,
.gm-about-page,
.gm-b2b-page,
.gm-contact-page,
.gm-cart-page,
.gm-checkout-page,
.gm-confirmation-page,
.gm-product-page,
.gm-product-card {
  font-family: "Inter", "Manrope", Arial, sans-serif;
}

.gm-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
}

.gm-site-header__inner,
.gm-site-footer__inner,
.gm-home-hero__inner,
.gm-usp-strip__inner,
.gm-home-section,
.gm-b2b-banner,
.gm-site-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: content-box;
}

.gm-site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
  min-height: 60px;
}

.gm-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  text-decoration: none;
  color: #144F2D;
}

.gm-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #1A6B3C;
  color: #FFFFFF;
}

.gm-brand--footer .gm-brand__mark {
  background: #F0A500;
}

.gm-brand--footer {
  color: #FFFFFF;
}

.gm-brand__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.gm-brand__text span {
  color: #F0A500;
}

.gm-site-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  flex: 1 1 auto;
  min-width: 0;
}

.gm-site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 6px;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition-property: background-color, color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-site-nav__link:hover,
.gm-mega-menu[open] .gm-site-nav__link {
  background: #E8F3EC;
  color: #1A6B3C;
  text-decoration: none;
}

.gm-mega-menu {
  position: relative;
}

.gm-mega-menu summary {
  list-style: none;
}

.gm-mega-menu summary::-webkit-details-marker {
  display: none;
}

.gm-mega-menu__panel {
  position: absolute;
  top: 44px;
  right: 0;
  width: min(760px, 100vw - 40px);
  padding: 18px;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gm-mega-menu__title {
  margin-bottom: 10px;
  color: #666666;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.gm-mega-menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px;
  border-radius: 7px;
  color: #1A1A1A;
  font-size: 14px;
  text-decoration: none;
}

.gm-mega-menu__item:hover {
  background: #E8F3EC;
  color: #1A6B3C;
  text-decoration: none;
}

.gm-mega-menu__icon {
  color: #1A6B3C;
}

.gm-mega-menu__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #144F2D;
  color: #FFFFFF;
  font-size: 13px;
  text-decoration: none;
}

.gm-mega-menu__strip strong {
  color: #F0A500;
}

.gm-site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

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

.gm-search__toggle,
.gm-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #666666;
  cursor: pointer;
  box-sizing: border-box;
}

.gm-search__toggle:hover,
.gm-search__submit:hover {
  background: #F7F6F3;
  color: #1A6B3C;
}

.gm-search.search_menu_active .gm-search__toggle {
  display: none;
}

.gm-search__box {
  display: none;
  position: relative;
  z-index: 120;
}

.gm-search.search_menu_active .gm-search__box {
  display: block;
}

.gm-search__field {
  position: relative;
  display: flex;
  align-items: center;
  width: 260px;
  height: 36px;
  padding: 0 34px;
  border: 1.5px solid #1A6B3C;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.14);
  box-sizing: border-box;
}

.gm-search__field .gm-search__submit {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  transform: translateY(-50%);
}

.gm-search__field-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  display: inline-flex;
  color: #666666;
  transform: translateY(-50%);
}

.gm-search__input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  color: #1A1A1A;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.gm-search__results {
  display: none;
  position: absolute;
  top: 42px;
  right: 0;
  width: 260px;
  max-height: 360px;
  overflow: auto;
  padding: 8px 0;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gm-search__results.search_inh_active {
  display: block;
}

.gm-search__results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gm-search__results-title {
  padding: 4px 12px 5px;
  color: #666666;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gm-search__results a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 72px;
  padding: 10px 12px;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
}

.gm-search__results a:hover {
  background: #F8F8F8;
  color: #1A1A1A;
}

.gm-search__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 6px;
  background: #F7F6F3;
  margin-top: 1px;
}

.gm-search__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-search__thumb-fallback {
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  background-image: linear-gradient(#dddddd 1px, transparent 1px), linear-gradient(90deg, #dddddd 1px, transparent 1px);
  background-size: 12px 12px;
}

.gm-search__item-text {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 2px;
}

.gm-search__item-text strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gm-search__item-text small {
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.gm-search__empty {
  padding: 14px 16px;
  color: #666666;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.gm-site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.gm-site-header__phone svg {
  color: #1A6B3C;
}

.gm-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: #1A6B3C;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
}

.gm-cart-link:hover {
  background: #144F2D;
  color: #FFFFFF;
  text-decoration: none;
}

.gm-cart-link__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #F0A500;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
}

.gm-mobile-menu {
  display: none;
  position: relative;
}

.gm-mobile-menu summary {
  list-style: none;
}

.gm-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.gm-mobile-menu__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
}

.gm-mobile-menu__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #1A1A1A;
  transition-property: transform, opacity;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-mobile-menu[open] .gm-mobile-menu__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.gm-mobile-menu[open] .gm-mobile-menu__toggle span:nth-child(2) {
  opacity: 0;
}

.gm-mobile-menu[open] .gm-mobile-menu__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.gm-mobile-menu__panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  max-height: calc(100vh - 60px);
  overflow: auto;
  padding: 0;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: none;
}

.gm-mobile-menu__search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #DDDDDD;
  color: #666666;
}

.gm-mobile-menu__search-input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  color: #1A1A1A;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 14px;
}

.gm-mobile-menu__panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 0;
  color: #1A1A1A;
  font-size: 15px;
  text-decoration: none;
}

.gm-mobile-menu__panel a:hover {
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-mobile-menu__phone {
  gap: 8px;
  color: #1A6B3C !important;
  font-size: 14px !important;
  font-weight: 600;
}

.gm-site-footer {
  background: #144F2D;
  color: #FFFFFF;
}

.gm-site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 36px;
}

.gm-site-footer__brand p,
.gm-site-footer__bottom,
.gm-site-footer__column a {
  color: rgba(255, 255, 255, 0.7);
}

.gm-site-footer__brand p {
  margin: 14px 0 0;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.7;
}

.gm-site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.gm-site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-site-footer__social a:hover {
  color: #FFFFFF;
}

.gm-site-footer__column h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-site-footer__column a {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.gm-site-footer__column a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.gm-site-footer__contact {
  display: flex;
  flex-direction: column;
}

.gm-site-footer__contact-link {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px !important;
}

.gm-site-footer__contact-link svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.gm-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.gm-home {
  background: #F7F6F3;
}

.gm-home-hero {
  position: relative;
  overflow: hidden;
  background-color: #144F2D;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 0 0 L 40 0 M 0 0 L 0 40 M 40 0 L 40 40 M 0 40 L 40 40' stroke='white' stroke-width='0.5' fill='none' opacity='0.07'/%3E%3Cpath d='M 10 0 L 10 40 M 20 0 L 20 40 M 30 0 L 30 40 M 0 10 L 40 10 M 0 20 L 40 20 M 0 30 L 40 30' stroke='white' stroke-width='0.3' fill='none' opacity='0.05'/%3E%3C/svg%3E");
}

.gm-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(420px, 2fr);
  gap: 32px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.gm-home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
}

.gm-home-hero__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

.gm-home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-home-hero h1 span {
  color: #F0A500;
}

.gm-home-hero p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.gm-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gm-home-hero__actions .gm-button {
  min-height: 40px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.gm-home-hero__actions .gm-button--amber:hover {
  background: #d4920a;
  border-color: #d4920a;
  color: #FFFFFF;
}

.gm-home-hero__actions .gm-button--secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.gm-home-hero__actions .gm-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.gm-home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.gm-home-hero__stats strong,
.gm-home-hero__stats span {
  display: block;
}

.gm-home-hero__stats strong {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
}

.gm-home-hero__stats span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.gm-home-hero__popular {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.gm-home-hero__popular h2 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-home-hero__popular-list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.gm-home-hero__popular-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition-property: background-color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-home-hero__popular-item:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.gm-home-hero__popular-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border-radius: 6px;
  background: #F7F6F3;
  overflow: hidden;
}

.gm-home-hero__popular-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-home-hero__popular-fallback {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.gm-home-hero__popular-fallback--mesh-zinc {
  background: repeating-linear-gradient(58deg, transparent 0 6px, rgba(24, 31, 28, 0.78) 6px 7px, transparent 7px 12px), repeating-linear-gradient(122deg, transparent 0 6px, rgba(24, 31, 28, 0.74) 6px 7px, transparent 7px 12px), linear-gradient(135deg, #e6ebe4, #8f988e 48%, #d7ddd6);
}

.gm-home-hero__popular-fallback--mesh-green {
  background: repeating-linear-gradient(58deg, transparent 0 7px, rgba(32, 202, 152, 0.9) 7px 8px, transparent 8px 14px), repeating-linear-gradient(122deg, transparent 0 7px, rgba(32, 202, 152, 0.88) 7px 8px, transparent 8px 14px), radial-gradient(circle at 65% 28%, rgba(255, 255, 255, 0.28), transparent 28%), linear-gradient(135deg, #0b4233, #16835e);
}

.gm-home-hero__popular-fallback--panel,
.gm-home-hero__popular-fallback--gate {
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(26, 107, 60, 0.62) 8px 10px, transparent 10px 15px), linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(204, 224, 214, 0.92));
}

.gm-home-hero__popular-text strong,
.gm-home-hero__popular-text em {
  display: block;
  font-style: normal;
}

.gm-home-hero__popular-text strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.gm-home-hero__popular-text em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.gm-home-hero__popular-price {
  justify-self: end;
  color: #F0A500;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.gm-home-hero__popular-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 12px 12px;
  min-height: 20px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #2D8A52;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition-property: background-color, color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-home-hero__popular-link:hover {
  background: #1A6B3C;
  color: #FFFFFF;
  text-decoration: none;
}

.gm-usp-strip {
  background: #1A6B3C;
}

.gm-usp-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.gm-usp-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}

.gm-usp-strip i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-style: normal;
}

.gm-home-section {
  padding-top: 54px;
  padding-bottom: 8px;
}

.gm-home-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.gm-home-section__top h2 {
  margin: 0;
  color: #1A1A1A;
  font-size: 22px;
  font-weight: 600;
}

.gm-home-section__top a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1A6B3C;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.gm-category-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 12px;
  background: #144F2D;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.gm-category-card__media,
.gm-category-card__media::after,
.gm-category-card__media img {
  position: absolute;
  inset: 0;
}

.gm-category-card__media {
  background: linear-gradient(135deg, rgba(20, 79, 45, 0.9), rgba(26, 107, 60, 0.62)), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.gm-category-card__media::after {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.08));
}

.gm-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-category-card__fallback {
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-left: 0;
  border-right: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 15px);
}

.gm-category-card__body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #FFFFFF;
}

.gm-category-card__body strong,
.gm-category-card__body em {
  display: block;
}

.gm-category-card__body strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.gm-category-card__body em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
}

.gm-category-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  transition-property: background-color, transform;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-category-card:hover .gm-category-card__arrow {
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(2px);
}

.gm-b2b-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  padding-bottom: 28px;
  border: 1px solid rgba(26, 107, 60, 0.18);
  border-radius: 10px;
  background: #E8F3EC;
}

.gm-b2b-banner h2 {
  margin: 10px 0 6px;
  color: #144F2D;
  font-size: 19px;
  font-weight: 600;
}

.gm-b2b-banner p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.gm-b2b-banner__list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1.35;
  list-style: none;
}

.gm-b2b-banner__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gm-b2b-banner__list svg {
  flex: 0 0 auto;
  color: #1A6B3C;
}

.gm-b2b-banner__button {
  min-width: 124px;
  justify-content: center;
}

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

.gm-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition-property: border-color, box-shadow;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-product-card:hover {
  border-color: #1A6B3C;
  box-shadow: 0 4px 14px rgba(26, 107, 60, 0.12);
}

.gm-product-card__media {
  position: relative;
  display: block;
  height: 180px;
  overflow: hidden;
  background: repeating-linear-gradient(0deg, #d8d8d8 0 1px, transparent 1px 20px), repeating-linear-gradient(90deg, #d8d8d8 0 1px, #e8e8e8 1px 20px);
}

.gm-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-product-card:hover .gm-product-card__media img {
  transform: scale(1.04);
}

.gm-product-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(20, 79, 45, 0.62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gm-product-card__fallback span {
  padding: 8px 10px;
  border: 2px solid rgba(26, 107, 60, 0.22);
  border-left: 0;
  border-right: 0;
  background: rgba(255, 255, 255, 0.34);
}

.gm-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #F0A500;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
}

.gm-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px;
}

.gm-product-card__title {
  min-height: 40px;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.gm-product-card__title:hover {
  color: #1A6B3C;
  text-decoration: none;
}

.gm-product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 24px;
  margin-top: 10px;
}

.gm-product-card__specs span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 7px;
  border-radius: 4px;
  background: #F7F6F3;
  color: #666666;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.gm-product-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}

.gm-product-card__price strong,
.gm-product-card__price span {
  display: inline-block;
}

.gm-product-card__price strong {
  color: #144F2D;
  font-size: 16px;
  font-weight: 700;
}

.gm-product-card__price span {
  margin-left: 3px;
  color: #666666;
  font-size: 12px;
}

.gm-product-card__price--request strong {
  color: #1A6B3C;
  font-size: 14px;
}

.gm-product-card__button {
  min-height: 38px;
}

.gm-product-card__button[disabled] {
  border-color: #F1F1F1;
  background: #E7E7E7;
  color: #9A9A9A;
  opacity: 1;
}

.gm-product-card--related .gm-product-card__media {
  height: 210px;
}

.gm-product-card--related .gm-product-card__body {
  padding: 12px;
}

.gm-product-card--related .gm-product-card__title {
  display: -webkit-box;
  min-height: 36px;
  overflow: hidden;
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gm-product-card--related .gm-product-card__specs {
  gap: 5px;
  min-height: 24px;
  margin-top: 7px;
}

.gm-product-card--related .gm-product-card__bottom {
  gap: 10px;
  padding-top: 12px;
}

.gm-product-card--related .gm-product-card__price strong {
  font-size: 16px;
  font-weight: 500;
}

.gm-product-card--related .gm-product-card__button {
  min-height: 36px;
  font-size: 13px;
  font-weight: 500;
}

.gm-catalog-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-catalog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  box-sizing: content-box;
}

.gm-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: #666666;
  font-size: 13px;
  line-height: 1.4;
}

.gm-breadcrumbs a,
.gm-breadcrumbs span {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.gm-breadcrumbs a:hover {
  color: #1A6B3C;
  text-decoration: none;
}

.gm-breadcrumbs span {
  color: #1A1A1A;
}

.gm-about-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  box-sizing: content-box;
}

.gm-about-header {
  margin-bottom: 40px;
}

.gm-about-header h1 {
  margin: 0 0 6px;
  color: #1A1A1A;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-about-header p {
  max-width: 640px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.55;
}

.gm-about-main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
  padding: 0;
}

.gm-about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.gm-about-copy p {
  margin: 0;
  color: #1A1A1A;
  font-size: 15px;
  line-height: 1.8;
}

.gm-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.gm-about-stat {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(26, 107, 60, 0.15);
  border-radius: 12px;
  background: #E8F3EC;
  text-align: center;
  box-sizing: border-box;
}

.gm-about-stat strong,
.gm-about-stat span {
  display: block;
}

.gm-about-stat strong {
  color: #144F2D;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.gm-about-stat span {
  margin-top: 4px;
  color: #666666;
  font-size: 12px;
  line-height: 1.35;
}

.gm-about-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 0;
}

.gm-about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #FFFFFF;
}

.gm-about-photo--primary {
  height: 220px;
}

.gm-about-photo--secondary {
  height: 160px;
}

.gm-about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-about-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #144F2D;
  color: #FFFFFF;
}

.gm-about-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

.gm-about-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.gm-about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gm-about-video.is-playing::before {
  display: none;
}

.gm-about-video__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  text-align: center;
  cursor: pointer;
}

.gm-about-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #144F2D;
  transition-property: background-color, transform;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-about-video__button:hover .gm-about-video__play {
  background: #FFFFFF;
  transform: translateY(-1px);
}

.gm-about-video__text {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.gm-about-video__text strong {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.gm-about-video__text em {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.gm-about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-sizing: border-box;
}

.gm-about-cta__text h2 {
  margin: 0;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.gm-about-cta__text p {
  margin: 4px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.45;
}

.gm-about-cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.gm-about-cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
  transition-property: background-color, color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-about-cta__phone:hover {
  background: rgba(26, 107, 60, 0.12);
  color: #144F2D;
  text-decoration: none;
}

.gm-about-cta__contact {
  min-height: 40px;
  padding: 10px 20px;
}

.gm-b2b-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-b2b-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: content-box;
}

.gm-b2b-header {
  margin-bottom: 32px;
}

.gm-b2b-header h1 {
  margin: 0 0 8px;
  color: #1A1A1A;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-b2b-header p {
  max-width: 560px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.55;
}

.gm-b2b-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.gm-b2b-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 60px;
  padding: 12px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-sizing: border-box;
}

.gm-b2b-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-b2b-benefit span:last-child {
  min-width: 0;
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1.4;
}

.gm-b2b-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.gm-b2b-form__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.gm-b2b-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: none;
  box-sizing: border-box;
}

.gm-b2b-card h2 {
  margin: 0 0 2px;
  color: #666666;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-b2b-card__hint {
  margin: 0 0 -4px;
  color: #666666;
  font-size: 13px;
  line-height: 1.45;
}

.gm-b2b-grid {
  display: grid;
  gap: 16px;
}

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

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

.gm-b2b-form .gm-field {
  gap: 6px;
}

.gm-b2b-form .gm-field__label {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-b2b-form .gm-field__control {
  min-height: 42px;
  padding: 0 12px;
  border-color: #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
  outline: none;
}

.gm-b2b-form .gm-field__control::placeholder {
  color: #8E8E8E;
}

.gm-b2b-form .gm-field__control:focus {
  border-color: #1A6B3C;
  box-shadow: none;
  outline: none;
}

.gm-b2b-form .gm-field--error .gm-field__control,
.gm-b2b-form .gm-field--error .gm-field__control:focus {
  border-color: #DC2626;
  box-shadow: none;
}

.gm-b2b-form textarea.gm-field__control {
  height: auto;
  min-height: 100px;
  padding: 10px 12px;
  line-height: 1.6;
}

.gm-b2b-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}

.gm-b2b-category,
.gm-b2b-radio,
.gm-b2b-gdpr label {
  position: relative;
  cursor: pointer;
}

.gm-b2b-category {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  box-sizing: border-box;
  transition-property: background-color, border-color, color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-b2b-category input,
.gm-b2b-radio input,
.gm-b2b-gdpr input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gm-b2b-category__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1.5px solid #DDDDDD;
  border-radius: 4px;
  background: #FFFFFF;
  color: #FFFFFF;
  box-sizing: border-box;
}

.gm-b2b-category input:checked + .gm-b2b-category__box {
  border-color: #1A6B3C;
  background: #1A6B3C;
}

.gm-b2b-category:has(input:checked) {
  border-color: #1A6B3C;
  background: #E8F3EC;
  color: #1A6B3C;
  font-weight: 500;
}

.gm-b2b-category:has(input:focus-visible),
.gm-b2b-radio:has(input:focus-visible),
.gm-b2b-gdpr label:has(input:focus-visible) {
  outline: 2px solid rgba(26, 107, 60, 0.22);
  outline-offset: 2px;
}

.gm-b2b-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.gm-b2b-options legend {
  margin: 0 0 2px;
  padding: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.35;
}

.gm-b2b-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 22px;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.35;
}

.gm-b2b-radio__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #DDDDDD;
  border-radius: 50%;
  background: #FFFFFF;
  box-sizing: border-box;
}

.gm-b2b-radio input:checked + .gm-b2b-radio__mark {
  border-color: #1A6B3C;
  background: radial-gradient(circle at center, #FFFFFF 0 3.5px, transparent 4px), #1A6B3C;
}

.gm-b2b-options--error .gm-b2b-radio__mark {
  border-color: #DC2626;
}

.gm-b2b-gdpr {
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1.6;
}

.gm-b2b-gdpr label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gm-b2b-gdpr__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  border: 1.5px solid #DDDDDD;
  border-radius: 4px;
  background: #FFFFFF;
  color: #FFFFFF;
  box-sizing: border-box;
}

.gm-b2b-gdpr input:checked + .gm-b2b-gdpr__box {
  border-color: #1A6B3C;
  background: #1A6B3C;
}

.gm-b2b-gdpr--error .gm-b2b-gdpr__box {
  border-color: #DC2626;
}

.gm-b2b-gdpr a {
  color: #1A6B3C;
  text-decoration: none;
}

.gm-b2b-gdpr a:hover {
  color: #144F2D;
  text-decoration: none;
}

.gm-b2b-submit {
  min-height: 52px;
  border-radius: 12px;
  font-size: 15px;
}

.gm-b2b-sidebar {
  position: sticky;
  top: 80px;
  margin: 0;
  padding: 20px;
  border-radius: 12px;
  background: #144F2D;
  color: #FFFFFF;
  box-sizing: border-box;
}

.gm-b2b-sidebar h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-b2b-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gm-b2b-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gm-b2b-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}

.gm-b2b-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
}

.gm-b2b-sidebar__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gm-b2b-sidebar__contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-b2b-sidebar__contact a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.gm-b2b-sidebar__contact a:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
}

.gm-b2b-sidebar__contact a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.gm-b2b-success {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 420px;
  padding: 64px 16px;
  text-align: center;
  box-sizing: border-box;
}

.gm-b2b-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-b2b-success h1 {
  margin: 0 0 10px;
  color: #1A1A1A;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-b2b-success p {
  max-width: 440px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.gm-b2b-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.gm-contact-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  box-sizing: content-box;
}

.gm-contact-header {
  margin-bottom: 32px;
}

.gm-contact-header h1 {
  margin: 0 0 6px;
  color: #1A1A1A;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-contact-header p {
  max-width: 720px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.55;
}

.gm-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 24px;
  align-items: start;
}

.gm-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.gm-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  color: #1A1A1A;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  transition-property: border-color, box-shadow, transform;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

a.gm-contact-card:hover {
  border-color: rgba(26, 107, 60, 0.32);
  color: #1A1A1A;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(20, 79, 45, 0.08);
  transform: translateY(-1px);
}

.gm-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-contact-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gm-contact-card__title {
  margin-bottom: 4px;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-contact-card__line {
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.6;
}

.gm-contact-form-card {
  padding: 24px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: none;
}

.gm-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gm-contact-form h2 {
  margin: 0 0 4px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.gm-contact-form .gm-field {
  gap: 6px;
}

.gm-contact-form .gm-field__label {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.gm-contact-form .gm-field__required {
  color: inherit;
}

.gm-contact-form .gm-field__control {
  height: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-color: #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
  outline: none;
}

.gm-contact-form .gm-field__control::placeholder {
  color: #8E8E8E;
}

.gm-contact-form .gm-field__control:focus {
  border-color: #1A6B3C;
  box-shadow: none;
  outline: none;
}

.gm-contact-form .gm-field--error .gm-field__control,
.gm-contact-form .gm-field--error .gm-field__control:focus {
  border-color: #DC2626;
  box-shadow: none;
}

.gm-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gm-contact-form textarea.gm-field__control {
  height: auto;
  min-height: 132px;
  padding: 10px 12px;
  line-height: 1.6;
}

.gm-contact-form__status {
  padding: 12px 14px;
  border: 1px solid rgba(26, 107, 60, 0.22);
  border-radius: 8px;
  background: #E8F3EC;
  color: #144F2D;
  font-size: 13px;
  line-height: 1.45;
}

.gm-contact-form__submit {
  min-height: 44px;
  margin-top: 2px;
}

.gm-contact-map {
  height: 360px;
  margin-top: 24px;
  padding: 0;
  border: 1px solid #DDDDDD;
  overflow: hidden;
  border-radius: 12px;
  clip-path: inset(0 round 12px);
  box-sizing: border-box;
}

.gm-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.gm-contact-map-link {
  margin-top: 8px;
  text-align: right;
}

.gm-contact-map-link a {
  color: #666666;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}

.gm-contact-map-link a:hover {
  color: #1A6B3C;
  text-decoration: none;
}

.gm-catalog-header {
  margin-bottom: 24px;
}

.gm-catalog-header h1 {
  margin: 0;
  color: #1A1A1A;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-catalog-header p {
  margin: 6px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}

.gm-category-intro {
  max-width: 840px;
  margin: -6px 0 24px;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.gm-category-intro p {
  margin: 0;
}

.gm-catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.gm-catalog-sidebar {
  display: grid;
  gap: 16px;
}

.gm-catalog-filter {
  padding: 16px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-catalog-filter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.gm-catalog-filter__header strong {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.gm-catalog-filter__header a,
.gm-active-filters__reset {
  color: #1A6B3C;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.gm-catalog-filter__group {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #DDDDDD;
}

.gm-catalog-filter__group:last-of-type {
  margin-bottom: 0;
}

.gm-catalog-filter__group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #666666;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.gm-catalog-filter__group summary::-webkit-details-marker {
  display: none;
}

.gm-catalog-filter__group[open] summary svg {
  transform: rotate(180deg);
}

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

.gm-catalog-filter__price label {
  display: grid;
  gap: 5px;
  color: #666666;
  font-size: 11px;
}

.gm-catalog-filter__price input,
.gm-catalog-sort select {
  width: 100%;
  min-height: 36px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 13px;
  box-sizing: border-box;
}

.gm-catalog-filter__price input {
  padding: 8px 9px;
}

.gm-catalog-filter__checks {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.gm-catalog-filter__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
}

.gm-catalog-filter__check.is-disabled {
  color: #666666;
  cursor: not-allowed;
  opacity: 0.55;
}

.gm-catalog-filter__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gm-catalog-filter__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  background: #FFFFFF;
  color: #FFFFFF;
  box-sizing: border-box;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-catalog-filter__check input:checked + .gm-catalog-filter__box {
  border-color: #1A6B3C;
  background: #1A6B3C;
}

.gm-catalog-filter__check input:focus-visible + .gm-catalog-filter__box {
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.14);
}

.gm-catalog-filter__label {
  min-width: 0;
}

.gm-catalog-filter__count {
  margin-left: auto;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
}

.gm-catalog-filter__actions {
  display: grid;
  gap: 8px;
  padding-top: 16px;
}

.gm-catalog-banners {
  display: grid;
  gap: 12px;
}

.gm-catalog-banner {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #DDDDDD;
  background: #FFFFFF;
}

.gm-catalog-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.gm-catalog-main {
  min-width: 0;
}

.gm-catalog-main .gm-product-grid:not(.gm-product-grid--list) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gm-catalog-main .gm-product-card {
  border-radius: 12px;
}

.gm-catalog-main .gm-product-card__media {
  height: 210px;
}

.gm-catalog-main .gm-product-card__body {
  padding: 12px;
}

.gm-catalog-main .gm-product-card__title {
  min-height: 36px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.gm-catalog-main .gm-product-card__specs {
  gap: 5px;
  margin-top: 8px;
}

.gm-catalog-main .gm-product-card__specs span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 500;
}

.gm-catalog-main .gm-product-card__bottom {
  gap: 9px;
  padding-top: 12px;
}

.gm-catalog-main .gm-product-card__price strong {
  font-size: 16px;
  font-weight: 500;
}

.gm-catalog-main .gm-product-card__button {
  min-height: 36px;
  border-radius: 8px;
  font-weight: 500;
}

.gm-catalog-mobile-filter {
  display: none;
  margin-bottom: 14px;
}

.gm-catalog-mobile-filter summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.gm-catalog-mobile-filter summary::-webkit-details-marker {
  display: none;
}

.gm-catalog-mobile-filter summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1A6B3C;
  color: #FFFFFF;
  font-size: 11px;
}

.gm-catalog-mobile-filter__panel {
  margin-top: 10px;
}

.gm-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gm-active-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(26, 107, 60, 0.2);
  border-radius: 999px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.gm-active-filters__chip:hover {
  border-color: #1A6B3C;
  color: #144F2D;
  text-decoration: none;
}

.gm-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.gm-catalog-toolbar > span {
  color: #666666;
  font-size: 13px;
}

.gm-catalog-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gm-view-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
}

.gm-view-toggle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #666666;
  text-decoration: none;
}

.gm-view-toggle a + a {
  border-left: 1px solid #DDDDDD;
}

.gm-view-toggle a:hover,
.gm-view-toggle a.is-active {
  background: #E8F3EC;
  color: #1A6B3C;
  text-decoration: none;
}

.gm-catalog-sort select {
  min-width: 170px;
  padding: 0 10px;
}

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

.gm-product-card--list {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

.gm-product-card--list .gm-product-card__media {
  height: 100%;
  min-height: 160px;
}

.gm-product-card--list .gm-product-card__body {
  min-height: 160px;
}

.gm-product-card--list .gm-product-card__bottom {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.gm-product-card--list .gm-product-card__button {
  width: auto;
  min-width: 130px;
}

.gm-catalog-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 360px;
  padding: 48px 20px;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  background: #FFFFFF;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-catalog-empty > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-catalog-empty h2 {
  margin: 0 0 8px;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 600;
}

.gm-catalog-empty p {
  max-width: 420px;
  margin: 0 0 18px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.gm-catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.gm-catalog-pagination a,
.gm-catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 13px;
  text-decoration: none;
  box-sizing: border-box;
}

.gm-catalog-pagination a:hover,
.gm-catalog-pagination a.is-active {
  border-color: #1A6B3C;
  background: #1A6B3C;
  color: #FFFFFF;
  text-decoration: none;
}

.gm-catalog-pagination .is-disabled {
  color: #9A9A9A;
  cursor: not-allowed;
}

.gm-catalog-pagination .gm-catalog-pagination__ellipsis {
  min-width: 22px;
  padding-left: 2px;
  padding-right: 2px;
  border-color: transparent;
  background: transparent;
  color: #666666;
}

.gm-subcategory-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

.gm-subcategory-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(26, 107, 60, 0.18);
  border-radius: 999px;
  background: #FFFFFF;
  color: #1A6B3C;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.gm-subcategory-nav a:hover {
  background: #E8F3EC;
  color: #144F2D;
  text-decoration: none;
}

.gm-category-overview-section {
  padding-top: 10px;
}

.gm-category-grid--overview .gm-category-card {
  min-height: 190px;
}

.gm-cart-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-cart-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  box-sizing: content-box;
}

.gm-cart-header {
  margin-bottom: 24px;
}

.gm-cart-header h1 {
  margin: 0 0 6px;
  color: #1A1A1A;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.gm-cart-header p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.45;
}

.gm-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.gm-cart-items {
  min-width: 0;
}

.gm-cart-items__list {
  overflow: hidden;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.gm-cart-item + .gm-cart-item {
  border-top: 1px solid #DDDDDD;
}

.gm-cart-item__media {
  display: block;
  width: 64px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #F1F1F1;
}

.gm-cart-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-cart-item__fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)), repeating-linear-gradient(0deg, #d7d7d7 0 1px, transparent 1px 12px), repeating-linear-gradient(90deg, #d7d7d7 0 1px, #e8e8e8 1px 12px);
}

.gm-cart-item__body {
  min-width: 0;
  padding-top: 2px;
}

.gm-cart-item__title {
  display: inline-block;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-cart-item__title:hover {
  color: #1A6B3C;
}

.gm-cart-item__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.gm-cart-item__specs span {
  padding: 3px 8px;
  border-radius: 4px;
  background: #F0F0F0;
  color: #555555;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
}

.gm-cart-item__controls {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  min-width: 118px;
}

.gm-cart-item__unit-price {
  color: #666666;
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.gm-cart-item__quantity {
  width: auto;
}

.gm-cart-item__quantity button,
.gm-cart-item__quantity input {
  width: 32px;
  height: 32px;
}

.gm-cart-item__quantity input {
  width: 36px;
}

.gm-cart-item__total {
  color: #144F2D;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.gm-cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #C4C4C4;
  cursor: pointer;
  transition-property: color, opacity;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-cart-item__remove:hover {
  color: #DC2626;
}

.gm-cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #1A6B3C;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-cart-continue:hover {
  color: #144F2D;
}

.gm-cart-summary {
  position: sticky;
  top: 80px;
  min-width: 0;
  padding: 20px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-cart-summary h2 {
  margin: 0 0 16px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-cart-summary__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.gm-cart-summary__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.gm-cart-summary__item span {
  min-width: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.4;
}

.gm-cart-summary__item strong {
  flex: 0 0 auto;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.gm-cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid #DDDDDD;
}

.gm-cart-summary__total span {
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.gm-cart-summary__total strong {
  color: #144F2D;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.gm-cart-summary__notice {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 12px;
  line-height: 1.6;
}

.gm-cart-summary__checkout {
  min-height: 46px;
  margin-bottom: 16px;
}

.gm-cart-summary__trust {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid #DDDDDD;
}

.gm-cart-summary__trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 12px;
  line-height: 1.3;
}

.gm-cart-summary__trust svg {
  flex: 0 0 auto;
}

.gm-cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 260px);
  padding: 48px 0;
  text-align: center;
}

.gm-cart-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #F0F0F0;
  color: #CCCCCC;
}

.gm-cart-empty h1 {
  margin: 0 0 8px;
  color: #1A1A1A;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-cart-empty p {
  max-width: 360px;
  margin: 0 0 24px;
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}

.gm-cart-drawer[hidden] {
  display: none;
}

body.gm-cart-drawer-open {
  overflow: hidden;
}

.gm-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
}

.gm-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.gm-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  height: 100%;
  background: #FFFFFF;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  font-family: "Inter", "Manrope", Arial, sans-serif;
}

.gm-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 61px;
  padding: 14px 16px;
  border-bottom: 1px solid #DDDDDD;
  box-sizing: border-box;
}

.gm-cart-drawer__header strong {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-cart-drawer__header button,
.gm-cart-drawer__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #666666;
  cursor: pointer;
}

.gm-cart-drawer__remove {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  color: #C4C4C4;
}

.gm-cart-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
}

.gm-cart-drawer__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) max-content;
  gap: 10px 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DDDDDD;
}

.gm-cart-drawer__item + .gm-cart-drawer__item {
  margin-top: 16px;
}

.gm-cart-drawer__media {
  width: 56px;
  height: 52px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)), repeating-linear-gradient(0deg, #d7d7d7 0 1px, transparent 1px 12px), repeating-linear-gradient(90deg, #d7d7d7 0 1px, #e8e8e8 1px 12px);
}

.gm-cart-drawer__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-cart-drawer__item-body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.gm-cart-drawer__item-body a {
  display: block;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.gm-cart-drawer__item-body span {
  display: block;
  margin-top: 4px;
  color: #666666;
  font-size: 13px;
  line-height: 1.3;
}

.gm-cart-drawer__quantity {
  grid-column: 1/3;
  grid-row: 2;
  grid-template-columns: repeat(3, 32px);
  height: 32px;
  width: fit-content;
  margin-top: 2px;
  border-radius: 7px;
}

.gm-cart-drawer__quantity button,
.gm-cart-drawer__quantity input {
  width: 32px;
  height: 30px;
  font-size: 13px;
}

.gm-cart-drawer__quantity input {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.gm-cart-drawer__line-total {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  min-width: max-content;
  color: #144F2D;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.gm-cart-drawer__footer {
  padding: 16px;
  border-top: 1px solid #DDDDDD;
}

.gm-cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.gm-cart-drawer__total span {
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.35;
}

.gm-cart-drawer__total strong {
  flex: 0 0 auto;
  color: #144F2D;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.gm-cart-drawer__footer p {
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 12px;
  line-height: 1.5;
}

.gm-cart-drawer__full {
  display: block;
  margin-top: 12px;
  color: #1A6B3C;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}

.gm-cart-drawer__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 320px;
  text-align: center;
}

.gm-cart-drawer__empty strong {
  margin-bottom: 8px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
}

.gm-cart-drawer__empty p {
  max-width: 240px;
  margin: 0 0 16px;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
}

.gm-checkout-page,
.gm-confirmation-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-stepper {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
}

.gm-stepper__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  gap: 0;
  box-sizing: content-box;
}

.gm-stepper__item {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: auto;
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.gm-stepper__item::after {
  content: none !important;
  display: none !important;
}

.gm-stepper__item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  max-width: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: #E0E0E0;
  color: #666666;
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
}

.gm-stepper__item.is-active {
  color: #1A1A1A;
  font-weight: 500;
}

.gm-stepper__item.is-active i,
.gm-stepper__item.is-complete i {
  background: #1A6B3C;
  color: #FFFFFF;
}

.gm-stepper__item.is-complete {
  color: #1A6B3C;
}

.gm-stepper__line {
  flex: 0 0 40px;
  width: 40px;
  min-width: 40px;
  height: 1px;
  margin: 0 8px;
  background: #DDDDDD;
}

.gm-stepper__line.is-complete {
  background: #1A6B3C;
}

.gm-checkout-container,
.gm-confirmation-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  box-sizing: content-box;
}

.gm-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.gm-checkout-form {
  min-width: 0;
}

.gm-checkout-card,
.gm-checkout-summary {
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-checkout-card {
  padding: 24px;
  margin-bottom: 16px;
}

.gm-checkout-card h1 {
  margin: 0 0 20px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-checkout-section {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid #DDDDDD;
}

.gm-checkout-section + .gm-checkout-section {
  padding-top: 24px;
}

.gm-checkout-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gm-checkout-section__title {
  margin: 0;
  padding: 0;
  color: #666666;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gm-checkout-grid {
  display: grid;
  gap: 16px;
}

.gm-checkout-grid--two,
.gm-checkout-company-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gm-checkout-company-fields {
  display: none;
  gap: 16px;
}

.gm-checkout-form.is-company .gm-checkout-company-fields {
  display: grid;
}

.gm-checkout-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
}

.gm-checkout-toggle label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #666666;
  cursor: pointer;
}

.gm-checkout-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gm-checkout-toggle span {
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}

.gm-checkout-toggle label.is-active {
  background: #E8F3EC;
  color: #1A6B3C;
  font-weight: 500;
}

.gm-checkout-consents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.gm-checkout-checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.gm-checkout-checkbox input {
  position: absolute;
  opacity: 0;
}

.gm-checkout-checkbox span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  border: 1.5px solid #DDDDDD;
  border-radius: 4px;
  background: #FFFFFF;
  color: #FFFFFF;
}

.gm-checkout-checkbox input:checked + span {
  border-color: #1A6B3C;
  background: #1A6B3C;
}

.gm-checkout-checkbox em {
  color: #666666;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}

.gm-checkout-checkbox a {
  color: #1A6B3C;
  text-decoration: none;
}

.gm-checkout-checkbox a:hover {
  color: #144F2D;
  text-decoration: none;
}

.gm-checkout-checkbox strong {
  color: #DC2626;
  font-weight: inherit;
}

.gm-field__error {
  color: #DC2626;
  font-size: 12px;
  line-height: 1.35;
}

.gm-checkout-submit {
  min-height: 54px;
  font-size: 16px;
}

.gm-checkout-summary {
  position: sticky;
  top: 80px;
  padding: 20px;
}

.gm-checkout-summary h2 {
  margin: 0 0 16px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
}

.gm-checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.gm-checkout-summary__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.gm-checkout-summary__thumb {
  width: 44px;
  height: 40px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)), repeating-linear-gradient(0deg, #d7d7d7 0 1px, transparent 1px 12px), repeating-linear-gradient(90deg, #d7d7d7 0 1px, #e8e8e8 1px 12px);
}

.gm-checkout-summary__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-checkout-summary__body {
  min-width: 0;
}

.gm-checkout-summary__body strong {
  display: block;
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.gm-checkout-summary__body em,
.gm-checkout-summary__qty {
  color: #666666;
  font-style: normal;
  font-size: 11px;
  line-height: 1.35;
}

.gm-checkout-summary__side {
  display: inline-flex;
  align-items: baseline;
  justify-self: end;
  min-width: max-content;
  gap: 8px;
  white-space: nowrap;
}

.gm-checkout-summary__price {
  color: #144F2D;
  font-size: 13px;
  font-weight: 500;
}

.gm-checkout-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 0;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.gm-checkout-summary__total span {
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 500;
}

.gm-checkout-summary__total strong {
  color: #144F2D;
  font-size: 18px;
  font-weight: 500;
}

.gm-checkout-summary p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(26, 107, 60, 0.2);
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 12px;
  line-height: 1.7;
}

.gm-checkout-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 13px;
}

.gm-confirmation-container {
  padding-top: 64px;
}

.gm-confirmation-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.gm-confirmation-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  border: 2px solid rgba(26, 107, 60, 0.2);
  border-radius: 999px;
  background: #E8F3EC;
}

.gm-confirmation-success i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #1A6B3C;
  color: #FFFFFF;
}

.gm-confirmation-main h1 {
  margin: 0 0 8px;
  color: #1A1A1A;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.gm-confirmation-code {
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 14px;
  font-weight: 500;
}

.gm-confirmation-main > p {
  max-width: 500px;
  margin: 0 0 32px;
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
}

.gm-confirmation-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
}

.gm-confirmation-cards div {
  padding: 20px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-confirmation-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-confirmation-cards strong,
.gm-confirmation-cards em {
  display: block;
}

.gm-confirmation-cards strong {
  margin-bottom: 4px;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.gm-confirmation-cards em {
  color: #666666;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
}

.gm-confirmation-next {
  width: 100%;
  margin-bottom: 32px;
  padding: 20px;
  border: 1px solid rgba(26, 107, 60, 0.2);
  border-radius: 12px;
  background: #E8F3EC;
  text-align: left;
}

.gm-confirmation-next strong {
  display: block;
  margin-bottom: 12px;
  color: #1A6B3C;
  font-size: 13px;
  font-weight: 500;
}

.gm-confirmation-next ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #144F2D;
  font-size: 13px;
  line-height: 1.6;
}

.gm-confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.gm-product-page {
  min-height: 100vh;
  background: #F7F6F3;
  color: #1A1A1A;
}

.gm-product-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  box-sizing: content-box;
}

.gm-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
  padding-left: 0;
  padding-right: 0;
}

.gm-product-layout,
.gm-product-tabs,
.gm-product-related {
  padding-left: 0;
  padding-right: 0;
}

.gm-product-gallery {
  min-width: 0;
}

.gm-product-gallery__main {
  height: 380px;
  overflow: hidden;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gm-product-gallery__image {
  display: none;
  width: 100%;
  height: 100%;
}

.gm-product-gallery__image.is-active {
  display: block;
}

.gm-product-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-product-gallery__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)), repeating-linear-gradient(0deg, #d9d9d9 0 1px, transparent 1px 22px), repeating-linear-gradient(90deg, #d9d9d9 0 1px, #ececec 1px 22px);
}

.gm-product-gallery__fallback::before {
  content: "IMAGINE PRODUS";
  padding: 10px 14px;
  border: 2px solid rgba(26, 107, 60, 0.22);
  border-left: 0;
  border-right: 0;
  color: rgba(20, 79, 45, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gm-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.gm-product-gallery__thumbs button {
  width: 72px;
  height: 64px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition-property: border-color, box-shadow, opacity;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-product-gallery__thumbs button:hover,
.gm-product-gallery__thumbs button.is-active {
  border-color: #1A6B3C;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.14);
}

.gm-product-gallery__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-product-summary {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gm-product-summary__category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 8px;
  border-radius: 4px;
  background: #E8F3EC;
  color: #1A6B3C;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
}

.gm-product-summary__category:hover {
  color: #144F2D;
  text-decoration: none;
}

.gm-product-summary h1 {
  margin: 16px 0 0;
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.gm-product-summary__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
  color: #666666;
  font-size: 14px;
  line-height: 1.4;
}

.gm-product-summary__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.gm-product-summary__meta .is-stocked {
  color: #1A6B3C;
  font-weight: 500;
}

.gm-product-summary__meta .is-stocked::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #22C55E;
}

.gm-product-summary__meta .is-empty {
  color: #DC2626;
  font-weight: 600;
}

.gm-product-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 22px;
}

.gm-product-price strong {
  color: #144F2D;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.gm-product-price > span {
  color: #666666;
  font-size: 14px;
}

.gm-product-price strong span {
  color: inherit;
  font-size: inherit;
}

.gm-product-options {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #DDDDDD;
}

.gm-product-options__group h2,
.gm-product-quantity h2 {
  margin: 0 0 10px;
  color: #666666;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.gm-product-options__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gm-product-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 6px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-product-option:hover {
  border-color: #1A6B3C;
  background: #E8F3EC;
  color: #1A6B3C;
  text-decoration: none;
}

.gm-product-option.is-active {
  border-color: #1A6B3C;
  background: #1A6B3C;
  color: #FFFFFF;
  text-decoration: none;
}

.gm-product-option i {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.gm-product-quantity {
  margin-top: 24px;
}

.gm-product-quantity__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.gm-product-quantity__total {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #666666;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.gm-product-quantity__total strong {
  color: #144F2D;
  font-weight: 600;
}

.gm-quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 44px 42px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
}

.gm-quantity-control button,
.gm-quantity-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.gm-quantity-control button {
  color: #8A8A8A;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-quantity-control button:hover {
  background: #E8F3EC;
  color: #1A6B3C;
}

.gm-quantity-control input {
  border-left: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  color: #144F2D;
  font-weight: 500;
  text-align: center;
  appearance: textfield;
}

.gm-quantity-control input::-webkit-outer-spin-button,
.gm-quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.gm-cart-drawer__quantity.gm-quantity-control {
  grid-template-columns: repeat(3, 32px);
  height: 32px;
  border-radius: 7px;
}

.gm-cart-drawer__quantity.gm-quantity-control button,
.gm-cart-drawer__quantity.gm-quantity-control input {
  width: 32px;
  height: 30px;
  font-size: 13px;
}

.gm-cart-drawer__quantity.gm-quantity-control input {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.gm-cart-drawer__quantity.gm-quantity-control button:hover {
  background: transparent;
  color: #8A8A8A;
}

.gm-product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 24px;
}

.gm-product-actions .gm-button {
  min-height: 48px;
  font-weight: 600;
}

.gm-product-request {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(26, 107, 60, 0.18);
  border-radius: 12px;
  background: #E8F3EC;
}

.gm-product-request[hidden] {
  display: none;
}

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

.gm-product-request__wide {
  grid-column: 1/-1;
}

.gm-product-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 70px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #DDDDDD;
}

.gm-product-trust > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gm-product-trust svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #1A6B3C;
}

.gm-product-trust span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.gm-product-trust strong {
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.gm-product-trust em {
  color: #666666;
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
}

.gm-product-tabs {
  margin-bottom: 48px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.gm-product-tabs__nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  border-bottom: 1px solid #DDDDDD;
}

.gm-product-tabs__nav button {
  position: relative;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #666666;
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-product-tabs__nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  transition-property: background-color;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.gm-product-tabs__nav button:hover,
.gm-product-tabs__nav button.is-active {
  color: #1A6B3C;
}

.gm-product-tabs__nav button.is-active::after {
  background: #1A6B3C;
}

.gm-product-tabs__panel {
  display: none;
  padding: 26px 24px 28px;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.65;
}

.gm-product-tabs__panel.is-active {
  display: block;
}

.gm-product-tabs__panel p {
  margin: 0;
}

.gm-product-tabs__panel p + p {
  margin-top: 16px;
}

.gm-product-tabs__panel h2 {
  margin: 0 0 12px;
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.gm-product-tabs__panel p + h2 {
  margin-top: 22px;
}

.gm-product-description-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.gm-product-description-list li {
  position: relative;
  padding-left: 22px;
}

.gm-product-description-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1A6B3C;
  font-size: 14px;
  line-height: 1.45;
}

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

.gm-product-specs div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 40px;
  padding: 0;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 0;
  background: transparent;
}

.gm-product-specs span {
  color: #666666;
  font-size: 13px;
  line-height: 1.35;
}

.gm-product-specs strong {
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

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

.gm-product-related .gm-home-section__top {
  margin-bottom: 22px;
}

.gm-product-related .gm-home-section__top h2 {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .gm-site-nav {
    display: none;
  }
  .gm-site-header__actions {
    margin-left: auto;
  }
  .gm-mobile-menu {
    display: block;
  }
  .gm-home-hero__inner {
    grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
    gap: 28px;
  }
  .gm-site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .gm-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gm-catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }
  .gm-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    gap: 24px;
  }
  .gm-cart-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}
@media (max-width: 840px) {
  .gm-site-header__inner {
    gap: 12px;
  }
  .gm-site-header__phone,
  .gm-cart-link span:not(.gm-cart-link__count) {
    display: none;
  }
  .gm-search__field {
    width: 210px;
  }
  .gm-home-hero__inner,
  .gm-site-footer__inner {
    grid-template-columns: 1fr;
  }
  .gm-usp-strip__inner,
  .gm-category-grid,
  .gm-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gm-b2b-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .gm-catalog-layout {
    grid-template-columns: 1fr;
  }
  .gm-about-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gm-b2b-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gm-b2b-layout {
    grid-template-columns: 1fr;
  }
  .gm-b2b-sidebar {
    position: static;
  }
  .gm-contact-layout {
    grid-template-columns: 1fr;
  }
  .gm-contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gm-catalog-sidebar {
    display: none;
  }
  .gm-catalog-mobile-filter {
    display: block;
  }
  .gm-catalog-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .gm-catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .gm-catalog-toolbar__controls {
    width: 100%;
    justify-content: space-between;
  }
  .gm-cart-layout {
    grid-template-columns: 1fr;
  }
  .gm-cart-summary {
    position: static;
  }
  .gm-checkout-layout {
    grid-template-columns: 1fr;
  }
  .gm-checkout-summary {
    position: static;
  }
  .gm-confirmation-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .gm-product-card--list {
    grid-template-columns: 140px minmax(0, 1fr);
  }
  .gm-product-layout {
    grid-template-columns: 1fr;
  }
  .gm-product-gallery__main {
    height: 330px;
  }
  .gm-product-summary {
    padding: 0;
  }
}
@media (max-width: 620px) {
  .gm-site-header__inner {
    height: 60px;
    min-height: 60px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .gm-brand__text {
    font-size: 14px;
  }
  .gm-search {
    display: none;
  }
  .gm-mobile-menu__panel {
    top: 60px;
    max-height: calc(100vh - 60px);
  }
  .gm-home-hero h1 {
    max-width: none;
    font-size: 24px;
    line-height: 1.35;
  }
  .gm-home-hero__inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .gm-home-hero p {
    max-width: none;
  }
  .gm-home-hero__actions .gm-button {
    min-height: 40px;
    padding: 11px 18px;
  }
  .gm-home-hero__popular-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .gm-home-hero__popular-price {
    grid-column: 2;
    justify-self: start;
  }
  .gm-home-hero__stats {
    gap: 20px;
  }
  .gm-usp-strip__inner,
  .gm-category-grid,
  .gm-product-grid {
    grid-template-columns: 1fr;
  }
  .gm-site-footer__bottom {
    flex-direction: column;
  }
  .gm-catalog-container {
    padding: 18px 16px 48px;
  }
  .gm-cart-container {
    padding: 18px 16px 48px;
  }
  .gm-cart-header {
    margin-bottom: 20px;
  }
  .gm-cart-header h1,
  .gm-cart-empty h1 {
    font-size: 22px;
  }
  .gm-cart-layout {
    gap: 18px;
  }
  .gm-cart-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }
  .gm-cart-item__media {
    width: 56px;
    height: 52px;
  }
  .gm-cart-item__controls {
    grid-column: 2;
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    min-width: 0;
    width: 100%;
  }
  .gm-cart-item__unit-price {
    grid-column: 1/-1;
    text-align: left;
  }
  .gm-cart-item__total {
    justify-self: end;
  }
  .gm-cart-item__remove {
    grid-column: 2;
    justify-self: end;
  }
  .gm-cart-summary {
    padding: 18px;
  }
  .gm-cart-empty {
    min-height: 360px;
    padding: 48px 0 56px;
  }
  .gm-cart-drawer__panel {
    width: 100vw;
  }
  .gm-checkout-container,
  .gm-confirmation-container {
    padding: 18px 16px 48px;
  }
  .gm-stepper__inner {
    width: 100%;
    max-width: none;
    justify-content: center;
    overflow-x: visible;
    padding: 12px 16px;
    scrollbar-width: none;
    box-sizing: border-box;
  }
  .gm-stepper__inner::-webkit-scrollbar {
    display: none;
  }
  .gm-stepper__item {
    align-items: center;
    flex: 0 0 auto;
    flex-direction: row;
    gap: 6px;
    font-size: 13px;
    min-width: 0;
  }
  .gm-stepper__item::after {
    content: none !important;
    display: none !important;
  }
  .gm-stepper__line {
    flex: 1 1 18px;
    width: auto;
    min-width: 14px;
    max-width: 34px;
    margin: 0 6px;
  }
  .gm-checkout-card {
    padding: 20px;
  }
  .gm-checkout-grid--two,
  .gm-checkout-company-fields {
    grid-template-columns: 1fr;
  }
  .gm-checkout-toggle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gm-checkout-summary__item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
  }
  .gm-checkout-summary__thumb {
    height: 44px;
  }
  .gm-checkout-summary__body strong {
    line-height: 1.25;
  }
  .gm-checkout-summary__body em {
    display: block;
    margin-top: 2px;
    line-height: 1.3;
  }
  .gm-checkout-summary__qty {
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
  }
  .gm-checkout-summary__side {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    min-width: max-content;
    justify-self: end;
    align-self: start;
    gap: 6px;
    white-space: nowrap;
  }
  .gm-checkout-summary__price {
    font-size: 13px;
    line-height: 1.25;
  }
  .gm-confirmation-container {
    padding-top: 48px;
  }
  .gm-confirmation-main h1 {
    font-size: 24px;
  }
  .gm-confirmation-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .gm-about-container {
    padding: 18px 16px 48px;
  }
  .gm-about-header {
    margin-bottom: 32px;
  }
  .gm-about-main {
    gap: 40px;
    margin-bottom: 40px;
  }
  .gm-about-stats {
    gap: 16px;
    margin-top: 14px;
  }
  .gm-about-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 112px;
    padding: 14px 8px;
  }
  .gm-about-video {
    height: 380px;
  }
  .gm-about-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .gm-about-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .gm-about-cta__phone,
  .gm-about-cta__contact {
    width: 100%;
  }
  .gm-b2b-container {
    padding: 18px 16px 48px;
  }
  .gm-b2b-header {
    margin-bottom: 24px;
  }
  .gm-b2b-header h1 {
    font-size: 24px;
  }
  .gm-b2b-benefits {
    gap: 12px;
    margin-bottom: 24px;
  }
  .gm-b2b-benefit {
    align-items: center;
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 11px;
  }
  .gm-b2b-layout {
    gap: 20px;
  }
  .gm-b2b-card {
    padding: 20px;
  }
  .gm-b2b-grid--two,
  .gm-b2b-grid--three {
    grid-template-columns: 1fr;
  }
  .gm-b2b-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gm-b2b-category {
    min-height: 42px;
    padding: 9px 10px;
  }
  .gm-b2b-sidebar {
    padding: 20px;
  }
  .gm-b2b-success {
    min-height: 360px;
    padding: 48px 0;
  }
  .gm-b2b-success__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .gm-contact-container {
    padding: 18px 16px 48px;
  }
  .gm-contact-header {
    margin-bottom: 24px;
  }
  .gm-contact-header h1 {
    font-size: 24px;
  }
  .gm-contact-info,
  .gm-contact-form__grid {
    grid-template-columns: 1fr;
  }
  .gm-contact-form-card {
    padding: 20px;
  }
  .gm-contact-map {
    height: 300px;
  }
  .gm-contact-map-link {
    margin-top: 8px;
    text-align: right;
  }
  .gm-catalog-header h1 {
    font-size: 22px;
  }
  .gm-catalog-toolbar__controls {
    align-items: stretch;
    flex-direction: column;
  }
  .gm-view-toggle {
    width: fit-content;
  }
  .gm-catalog-sort select {
    width: 100%;
    min-width: 0;
  }
  .gm-product-card--list {
    grid-template-columns: 1fr;
  }
  .gm-product-card--list .gm-product-card__media {
    height: 180px;
    min-height: 0;
  }
  .gm-product-card--list .gm-product-card__bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .gm-product-card--list .gm-product-card__button {
    width: 100%;
  }
  .gm-product-card--related .gm-product-card__media {
    height: 210px;
  }
  .gm-product-card--related .gm-product-card__title {
    min-height: 36px;
  }
  .gm-product-container {
    padding: 18px 16px 48px;
  }
  .gm-product-gallery__main {
    height: 280px;
  }
  .gm-product-gallery__thumbs {
    gap: 8px;
  }
  .gm-product-gallery__thumbs button {
    width: 64px;
    height: 56px;
  }
  .gm-product-summary {
    padding: 0;
  }
  .gm-product-summary h1 {
    font-size: 22px;
  }
  .gm-product-price strong {
    font-size: 26px;
  }
  .gm-product-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .gm-product-request__grid,
  .gm-product-specs {
    grid-template-columns: 1fr;
  }
  .gm-product-quantity__row {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .gm-quantity-control {
    flex: 0 0 auto;
  }
  .gm-product-quantity__total {
    flex: 0 0 auto;
  }
  .gm-product-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 34px;
  }
  .gm-product-tabs__nav {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gm-product-tabs__nav::-webkit-scrollbar {
    display: none;
  }
  .gm-product-tabs__nav button {
    flex: 0 0 auto;
  }
  .gm-product-tabs__panel {
    padding: 18px 16px 20px;
  }
  .gm-product-related {
    margin-top: 38px;
  }
  .gm-product-related .gm-home-section__top {
    margin-bottom: 16px;
  }
  .gm-product-related .gm-home-section__top h2 {
    font-size: 20px;
  }
  .gm-product-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 420px) {
  .gm-stepper__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .gm-stepper__item {
    gap: 5px;
    font-size: 12px;
  }
  .gm-stepper__item i {
    width: 26px;
    height: 26px;
    min-width: 26px;
    max-width: 26px;
    flex-basis: 26px;
    font-size: 12px;
  }
  .gm-stepper__line {
    min-width: 10px;
    max-width: 24px;
    margin: 0 4px;
  }
}

/*# sourceMappingURL=ui-kit.css.map */
