.zamet-spec-table-wrap {
  width: 100%;
  overflow-x: visible;
}

.zamet-spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.zamet-spec-table th:first-child,
.zamet-spec-table td:first-child {
  width: 72%;
}

.zamet-spec-table th:last-child,
.zamet-spec-table td:last-child {
  width: 28%;
  text-align: center;
  white-space: nowrap;
}

.zamet-spec-table th {
  background: #005b35;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  padding: 9px 10px;
  text-align: left;
  border: 0;
}

.zamet-spec-table th,
.zamet-spec-table td {
  vertical-align: middle;
}

.zamet-spec-table tbody tr {
  border-bottom: 1px solid #F0F0F0;
}


.zamet-spec-table td {
  padding: 8px 10px;
  border: 0;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.25;
}

.zamet-spec-table td:first-child {
  font-weight: 600;
  text-transform: uppercase;
}

.zamet-spec-table td:last-child {
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
}

.zamet-spec-table tbody tr {
  transition: background-color 0.15s ease;
}

.zamet-spec-table tbody tr:hover {
  background-color: #F0F0F0;
}

.zamet-spec-table__unit {
  margin-left: 3px;
}

/* Mobile only: scroll-x */
@media (max-width: 767px) {
	
  .zamet-spec-table {
    table-layout: fixed;
  }
  .zamet-spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .zamet-spec-table th:first-child,
  .zamet-spec-table td:first-child {
    width: 75%;
  }

  .zamet-spec-table th:last-child,
  .zamet-spec-table td:last-child {
    width: 25%;
  }

  .zamet-spec-table th,
  .zamet-spec-table td {
    font-size: 14px;
  }
}

.zamet-equipment {
  width: 100%;
  font-family: inherit;
  color: var(--global-palette4);
}

.zamet-equipment__title {
  margin: 0 0 18px;
  color: #005b35;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.zamet-equipment__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zamet-equipment__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: background-color 0.15s ease;
}

.zamet-equipment__row:hover {
  background-color: #F0F0F0;
}

.zamet-equipment__name {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
}

.zamet-equipment__status {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

.zamet-equipment__row--opcja .zamet-equipment__name,
.zamet-equipment__row--opcja .zamet-equipment__status {
  color: #9e9e9e;
}

@media (max-width: 767px) {
  .zamet-equipment__title {
    font-size: 22px;
  }

  .zamet-equipment__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
  }

  .zamet-equipment__name,
  .zamet-equipment__status {
    font-size: 14px;
  }

  .zamet-equipment__status {
    text-align: right;
    white-space: nowrap;
  }
}

.zamet-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
}

.zamet-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.zamet-feature__icon {
  margin-bottom: 12px;
}

.zamet-feature__icon-img {
  display: block;
  width: 63px;
  max-width: 100%;
  height: auto;
}

.zamet-feature__title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--global-palette4);
}

.zamet-feature__desc {
  font-size: 15px;
  line-height: 1.45;
  color: var(--global-palette4);
}

.zamet-feature__desc p {
  margin: 0;
}

@media (max-width: 1024px) {
  .zamet-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .zamet-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zamet-feature {
    align-items: center;
	text-align: center;
  }

  .zamet-feature__title {
    font-size: 15px;
  }

  .zamet-feature__desc {
    font-size: 14px;
  }
}

.zamet-breadcrumbs {
    font-size: 12px;
    line-height: 1.4;
}

.zamet-breadcrumbs__link {
    color: inherit;
    text-decoration: underline;
}

.zamet-breadcrumbs__separator {
    margin: 0 6px;
    opacity: 0.55;
}

.zamet-breadcrumbs__current {
    color: inherit;
}

.zamet-breadcrumbs__link,
.zamet-breadcrumbs__link:visited {
    color: inherit;
    text-decoration: underline;
}

.zamet-breadcrumbs__link:hover,
.zamet-breadcrumbs__link:focus {
    color: var(--global-palette1, #006b3f);
    text-decoration: underline;
}

.zamet-filter-pojemnosc label::after {
    content: " m³";
}
.zamet-filter-moc label::after {
    content: " kW";
}
.zamet-filter-moc label::before {
    content: "od ";
}


.zamet-variant-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.zamet-variant-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  font-family: inherit;
  color: #1c1c1c;
}

.zamet-variant-table th {
  background: #005b35;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  padding: 9px 10px;
  text-align: center;
  border: 0;
  white-space: nowrap;
}

.zamet-variant-table th:first-child {
  text-align: left;
}

.zamet-variant-table td {
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid #F0F0F0;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

.zamet-variant-table td:first-child {
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
}

.zamet-variant-table tbody tr {
  transition: background-color 0.15s ease;
}

.zamet-variant-table tbody tr:hover {
  background-color: #F0F0F0;
}

.zamet-variant-table__unit {
  margin-left: 3px;
}

@media (max-width: 767px) {
  .zamet-variant-table {
    min-width: 720px;
  }

  .zamet-variant-table th,
  .zamet-variant-table td {
    font-size: 14px;
  }
}
.zamet-variant-table__cell--hover {
  background-color: #F0F0F0;
}
.zamet-lang-dropdown {
  position: relative;
  display: inline-flex;
  z-index: 9999;
}

.zamet-lang-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 122px;
  height: 46px;
  padding: 0 18px;
  border: 1px solid #005b35;
  border-radius: 18px;
  background: #ffffff;
  color: #005b35;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.zamet-lang-dropdown__trigger:hover,
.zamet-lang-dropdown__trigger:focus {
  background: #f7faf7;
  border-color: #005b35;
  color: #005b35;
}

.zamet-lang-dropdown__flag {
  display: block;
  width: 20px;
  height: auto;
  flex: 0 0 auto;
}

.zamet-lang-dropdown__code {
  display: inline-flex;
  align-items: center;
}

.zamet-lang-dropdown__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1;
  color: #005b35;
  transform: translateY(-1px);
}

.zamet-lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 122px;
  padding: 8px;
  border: 1px solid #005b35;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}

.zamet-lang-dropdown:hover .zamet-lang-dropdown__menu,
.zamet-lang-dropdown:focus-within .zamet-lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zamet-lang-dropdown__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  color: #005b35;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.15s ease;
}

.zamet-lang-dropdown__option:hover,
.zamet-lang-dropdown__option:focus {
  background: #f0f0f0;
  color: #005b35;
  text-decoration: none;
}

.zamet-lang-dropdown__option--active {
  background: #f0f0f0;
  cursor: default;
}

@media (max-width: 767px) {
  .zamet-lang-dropdown__trigger {
    min-width: 56px;
    width: 56px;
    height: 46px;
    padding: 0;
    gap: 6px;
  }

  .zamet-lang-dropdown__code {
    display: none;
  }

  .zamet-lang-dropdown__menu {
    min-width: 90px;
  }

  .zamet-lang-dropdown__option span {
    display: none;
  }
}

.zamet-lang-dropdown__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005b35;
}

.zamet-lang-dropdown__arrow .kb-nav-arrow-svg {
  display: block;
  width: 16px;
  height: 16px;
}

.zamet-lang-dropdown__arrow .kb-nav-arrow-svg {
  transition: transform 0.15s ease;
}

.zamet-lang-dropdown:hover .zamet-lang-dropdown__arrow .kb-nav-arrow-svg,
.zamet-lang-dropdown:focus-within .zamet-lang-dropdown__arrow .kb-nav-arrow-svg {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .zamet-lang-dropdown__trigger {
    border: 0;
    background: transparent;
  }

  .zamet-lang-dropdown__trigger:hover,
  .zamet-lang-dropdown__trigger:focus {
    border: 0;
    background: transparent;
  }
}