@font-face {
  font-family: "Dodger";
  src: url("../fonts/dodger3_2.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --niawell-red: var(--nw-red, #c92f35);
  --niawell-red-dark: var(--nw-red-strong, #9f1f25);
  --niawell-red-soft: rgba(201, 47, 53, .09);
  --niawell-gold: var(--nw-gold, #efc54a);
  --niawell-ink: var(--nw-ink, #17202d);
  --niawell-muted: var(--nw-muted, #687384);
  --niawell-line: var(--nw-line, #e4e8ee);
  --niawell-soft: var(--nw-soft, #f5f7fa);
  --niawell-shadow: var(--nw-shadow-md, 0 20px 54px rgba(23, 32, 45, .11));
  --niawell-container: min(1360px, calc(100% - 40px));
}

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(31, 42, 57, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(23, 32, 45, .04);
  backdrop-filter: blur(16px);
}

.site-header .colored-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--niawell-red-dark), var(--niawell-red) 55%, var(--niawell-gold));
}

.site-header .content {
  width: var(--niawell-container);
  min-height: 124px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) 156px 94px;
  grid-template-areas: "logo buttons language signs";
  align-items: center;
  gap: 20px;
}

.site-header .logo {
  grid-area: logo;
  min-width: 0;
}

.site-header .logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--niawell-red-dark);
  text-decoration: none;
}

.site-header .logo .niawell-symbol {
  width: auto;
  height: 66px;
  object-fit: contain;
}

.niawell-wordmark,
.site-header .logo .niawell-wordmark,
.site-footer .footer-brand-name {
  display: block;
  margin-top: 4px;
  color: var(--niawell-red-dark);
  font: 400 24px/1 "Dodger", "Arial Black", Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: .01em;
  text-transform: lowercase;
  white-space: nowrap;
}

.site-header .buttons {
  grid-area: buttons;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.site-header .top {
  display: flex;
  justify-content: flex-end;
}

/* Product search */
.site-header .search-base {
  position: relative;
  width: 100%;
  margin: 0;
}

.site-header .search-base input {
  width: 100%;
  height: 50px;
  padding-inline: 16px 50px;
  border: 1px solid #ccd3dc;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--niawell-ink);
  font-size: .9rem;
  font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease;
}

[dir="rtl"] .site-header input[type="search"] {
  direction: rtl;
  text-align: right;
}

[dir="ltr"] .site-header input[type="search"] {
  direction: ltr;
  text-align: left;
}

.site-header .search-base input:focus {
  border-color: var(--niawell-red);
  box-shadow: 0 0 0 4px rgba(201, 47, 53, .1);
}

.site-header .search-base button {
  position: absolute;
  inset-inline-end: 4px;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 11px;
  transform: translateY(-50%);
  background: transparent;
  color: var(--niawell-muted);
  cursor: pointer;
}

.site-header .search-base button:hover,
.site-header .search-base button:focus-visible {
  outline: none;
  background: var(--niawell-red-soft);
  color: var(--niawell-red);
}

.site-header .search-base button > i {
  font-size: 1rem;
}

.site-header .search-suggestions {
  position: absolute;
  z-index: 120;
  top: calc(100% + 9px);
  inset-inline: 0;
  max-height: min(440px, 68vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border: 1px solid #d9dee6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(24, 31, 42, .18);
}

.site-header .search-suggestions[hidden] {
  display: none;
}

.site-header .search-suggestion {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  color: var(--niawell-ink);
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.site-header .search-suggestion:hover,
.site-header .search-suggestion:focus-visible,
.site-header .search-suggestion.is-active {
  outline: none;
  background: var(--niawell-red-soft);
  color: var(--niawell-red-dark);
}

.site-header .search-suggestion + .search-suggestion {
  border-top: 1px solid #edf0f4;
}

.site-header .search-suggestion__image {
  width: 66px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e3e7ed;
  border-radius: 10px;
  background: #f6f7f9;
}

.site-header .search-suggestion__image img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.site-header .search-suggestion__copy {
  min-width: 0;
  text-align: start;
}

.site-header .search-suggestion__copy strong,
.site-header .search-suggestion__copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header .search-suggestion__copy strong {
  color: inherit;
  font-size: .86rem;
  font-weight: 850;
  line-height: 1.65;
}

.site-header .search-suggestion__copy small {
  margin-top: 2px;
  color: #707b8b;
  font-size: .7rem;
  font-weight: 700;
}

.site-header .search-suggestion > i {
  color: #8993a1;
  font-size: .8rem;
}

[dir="ltr"] .site-header .search-suggestion > i {
  transform: rotate(180deg);
}

.site-header .search-suggestions__state {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  color: var(--niawell-muted);
  text-align: center;
  font-size: .78rem;
  font-weight: 750;
}

.site-header .search-suggestions__all {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
  border-radius: 11px;
  background: #f5f6f8;
  color: var(--niawell-red-dark);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
}

.site-header .search-suggestions__all:hover,
.site-header .search-suggestions__all:focus-visible {
  outline: none;
  background: var(--niawell-red);
  color: #fff;
}

/* Main navigation */
.site-header .bottom {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--niawell-line);
}

.site-header .bottom > a,
.site-header .products-nav-shell > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 11px;
  color: #465163;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  transition: background-color .2s ease, color .2s ease;
}

.site-header .bottom > a:hover,
.site-header .bottom > a.is-active,
.site-header .products-nav-shell > a:hover,
.site-header .products-nav-shell > a.is-active,
.site-header .products-nav-shell > a[aria-expanded="true"] {
  background: var(--niawell-red-soft);
  color: var(--niawell-red-dark);
}

.site-header .bottom > a > i,
.site-header .products-nav-shell > a > i:first-child {
  width: 22px;
  min-width: 22px;
  display: inline-grid;
  place-items: center;
  font-size: 1.05rem;
}

.site-header .products-nav-shell {
  position: static;
}

.site-header .products-trigger-chevron {
  margin-inline-start: 2px;
  font-size: .66rem;
  transition: transform .2s ease;
}

.site-header .products-nav-shell > a[aria-expanded="true"] .products-trigger-chevron {
  transform: rotate(180deg);
}

/* Language selector */
.site-header .language {
  grid-area: language;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .custom-select {
  position: relative;
}

.site-header .selected-option {
  width: 144px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid #d3d9e1;
  border-radius: 13px;
  background: #fff;
  color: #3f4a5a;
  font-size: .8rem;
  font-weight: 750;
  cursor: pointer;
}

.site-header .selected-option img,
.site-header .options-list img {
  width: 25px;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
}

.site-header .options-list {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  width: 190px;
  display: none;
  margin: 0;
  padding: 7px;
  list-style: none;
  border: 1px solid var(--niawell-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--niawell-shadow);
}

.site-header .custom-select.is-open .options-list,
.site-header .custom-select:focus-within .options-list {
  display: block;
}

.site-header .options-list a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #465163;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
}

.site-header .options-list a:hover,
.site-header .options-list a:focus-visible {
  outline: none;
  background: var(--niawell-soft);
}

.site-header .signs {
  grid-area: signs;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .signs img {
  width: 78px;
  height: 66px;
  object-fit: contain;
}

.knowledge-badge.is-temporarily-hidden,
[hidden].knowledge-badge {
  display: none;
}

/* Mobile menu */
.site-mobile-menu {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid var(--niawell-line);
  border-radius: 13px;
  background: #fff;
  color: var(--niawell-ink);
  cursor: pointer;
}

.site-mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-mobile-menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-mobile-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-mobile-menu[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Legacy nested dropdown support */
.site-header .navbar-dropdown,
.site-header .sub-dropdown {
  position: absolute;
  z-index: 1300;
  top: calc(100% + 4px);
  min-width: 230px;
  display: none;
  flex-direction: column;
  padding: 8px;
  border: 1px solid var(--niawell-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--niawell-shadow);
}

.site-header .navbar-dropdown {
  inset-inline-start: 0;
}

.site-header .sub-dropdown {
  top: 0;
  inset-inline-start: calc(100% + 8px);
}

.site-header .navbar-dropdown.is-open,
.site-header .sub-dropdown.is-open {
  display: flex;
}

.site-header .navbar-dropdown a,
.site-header .sub-dropdown a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 10px;
  color: #394555;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
}

.site-header .navbar-dropdown a:hover,
.site-header .sub-dropdown a:hover {
  background: var(--niawell-red-soft);
  color: var(--niawell-red-dark);
}

/* Product mega menu */
.site-header .product-mega {
  position: absolute;
  z-index: 1400;
  top: calc(100% + 1px);
  inset-inline: 0;
  width: min(1180px, calc(100vw - 32px));
  display: none;
  margin-inline: auto;
  padding-top: 10px;
}

.site-header .product-mega.is-open {
  display: block;
}

.site-header .product-mega__shell {
  width: 100%;
  min-height: 460px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(24, 31, 42, .2);
}

.site-header .product-mega__rail {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-inline-end: 1px solid #e2e6eb;
  background: #f6f7f9;
}

.site-header .product-mega__heading {
  padding: 5px 7px 18px;
}

.site-header .product-mega__heading span {
  display: block;
  color: var(--niawell-red);
  font: 900 .62rem/1.4 Arial, sans-serif;
  letter-spacing: .14em;
}

.site-header .product-mega__heading strong {
  display: block;
  margin-top: 6px;
  color: #202b3a;
  font-size: 1rem;
}

.site-header .product-mega__tab {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #4d5969;
  text-align: start;
  cursor: pointer;
  font-size: .9rem;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.site-header .product-mega__tab:hover,
.site-header .product-mega__tab:focus-visible,
.site-header .product-mega__tab.is-active {
  outline: none;
  background: #fff;
  color: var(--niawell-red-dark);
  box-shadow: 0 8px 22px rgba(28, 36, 49, .07);
}

.site-header .product-mega__tab > i:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eceff3;
  color: #596575;
  font-size: .95rem;
}

.site-header .product-mega__tab.is-active > i:first-child {
  background: var(--niawell-red);
  color: #fff;
}

.site-header .product-mega__tab span {
  min-width: 0;
}

.site-header .product-mega__tab b,
.site-header .product-mega__tab small {
  display: block;
}

.site-header .product-mega__tab b {
  font-size: .9rem;
  line-height: 1.55;
}

.site-header .product-mega__tab small {
  margin-top: 2px;
  color: #7a8492;
  font-size: .72rem;
  font-weight: 700;
}

.site-header .product-mega__tab > i:last-child {
  color: #939ca8;
  font-size: .64rem;
}

[dir="ltr"] .site-header .product-mega__tab > i:last-child {
  transform: rotate(180deg);
}

.site-header .product-mega__all {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: #202b3a;
  color: #fff;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 850;
}

.site-header .product-mega__all:hover {
  background: var(--niawell-red-dark);
}

.site-header .product-mega__content {
  min-width: 0;
  padding: 25px 28px;
}

.site-header .product-mega__panel {
  display: none;
}

.site-header .product-mega__panel.is-active {
  display: block;
}

.site-header .product-mega__panel > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 5px 24px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e4e8ed;
}

.site-header .product-mega__panel > header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.site-header .product-mega__panel > header > div span {
  color: #d7dce3;
  font: 900 1.7rem/1 Arial, sans-serif;
}

.site-header .product-mega__panel h2 {
  margin: 0;
  color: #202b3a;
  font-size: 1.18rem;
}

.site-header .product-mega__panel > header p {
  grid-column: 1;
  margin: 0;
  color: #737e8d;
  font-size: .74rem;
  line-height: 1.8;
}

.site-header .product-mega__panel > header > a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--niawell-red);
  text-decoration: none;
  font-size: .73rem;
  font-weight: 850;
}

.site-header .product-mega__sections {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.site-header .product-mega__section {
  min-width: 0;
}

.site-header .product-mega__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.site-header .product-mega__section-title > b {
  min-width: 46px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--niawell-red);
  color: #fff;
  font: 900 .8rem/1 Arial, sans-serif;
}

.site-header .product-mega__section-title span {
  display: grid;
  gap: 2px;
}

.site-header .product-mega__section-title strong {
  color: #263144;
  font-size: .82rem;
}

.site-header .product-mega__section-title small {
  color: #778292;
  font-size: .67rem;
}

.site-header .product-mega__series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.site-header .product-mega__section .product-mega__series-grid {
  margin-top: 0;
}

.site-header .product-mega__series {
  min-width: 0;
  min-height: 148px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid #e1e5ea;
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-header .product-mega__series.is-priority {
  border-color: rgba(201, 47, 53, .24);
  background: linear-gradient(145deg, #fff, #fffafa);
}

.site-header .product-mega__series:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 47, 53, .28);
  box-shadow: 0 12px 26px rgba(27, 35, 48, .07);
}

.site-header .product-mega__series-media {
  position: relative;
  min-height: 122px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5px;
  border-radius: 12px;
  background: #f4f6f8;
}

.site-header .product-mega__series-media img {
  width: 100%;
  height: 100%;
  max-height: 118px;
  display: block;
  object-fit: contain;
}

.site-header .product-mega__series-media > span {
  position: absolute;
  top: 7px;
  inset-inline-start: 7px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--niawell-red);
  font-size: .62rem;
  box-shadow: 0 5px 14px rgba(25, 33, 44, .11);
}

.site-header .product-mega__series-copy {
  min-width: 0;
  align-self: center;
}

.site-header .product-mega__series-title {
  display: block;
  color: #253041;
  text-decoration: none;
  font: 900 .82rem/1.55 Arial, var(--niawell-font);
}

.site-header .product-mega__note {
  margin: 6px 0 0;
  color: #727d8b;
  font-size: .66rem;
  line-height: 1.7;
}

.site-header .product-mega__variants,
.site-header .product-mega__models {
  display: flex;
  flex-wrap: wrap;
}

.site-header .product-mega__variants {
  gap: 5px;
  margin-top: 7px;
}

.site-header .product-mega__variants span {
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(201, 47, 53, .1);
  color: var(--niawell-red);
  font: 900 .57rem/1 Arial, sans-serif;
}

.site-header .product-mega__models {
  gap: 6px;
  margin-top: 10px;
}

.site-header .product-mega__models a {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 8px;
  background: #f0f2f5;
  color: #536071;
  text-decoration: none;
  font: 800 .65rem/1 Arial, var(--niawell-font);
}

.site-header .product-mega__models a:hover {
  background: var(--niawell-red);
  color: #fff;
}

.site-header .product-mega__empty {
  color: #7d8795;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 5px solid var(--niawell-red);
  background: #182231;
  color: #dbe1e9;
}

.site-footer .region-footer {
  width: var(--niawell-container);
  margin-inline: auto;
  padding: 58px 0 42px;
  display: grid;
  grid-template-columns: minmax(310px, 1.55fr) .8fr .8fr 210px;
  gap: 30px;
}

.site-footer .footer-section {
  min-width: 0;
  padding-inline-end: 28px;
  border-inline-end: 1px solid rgba(255, 255, 255, .1);
}

.site-footer .footer-section:last-child {
  padding-inline-end: 0;
  border-inline-end: 0;
}

.site-footer .location {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.site-footer .logo-footer {
  width: 76px;
  height: auto;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
}

.site-footer .address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #aeb8c5;
  font-size: .78rem;
  line-height: 1.9;
}

.site-footer .address strong,
.site-footer .address > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.site-footer .address i {
  width: 20px;
  min-width: 20px;
  margin-top: .38em;
  color: var(--niawell-gold);
  text-align: center;
}

.phone-ltr,
a.phone-ltr,
bdi.phone-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  white-space: nowrap;
  text-align: left;
}

.site-footer .default-font-xlarge-semibold {
  display: block;
  margin-bottom: 17px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer .menu--footer,
.site-footer .wrapper-social {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer .menu--footer .menu-item a,
.site-footer .wrapper-social .item a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .065);
  color: #f4f7fa;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer .menu--footer .menu-item a:hover,
.site-footer .wrapper-social .item a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.site-footer .wrapper-social .item:nth-child(2) a {
  border-color: rgba(71, 211, 120, .34);
  background: rgba(30, 155, 78, .17);
}

.site-footer .wrapper-social .item:last-child a {
  border-color: rgba(238, 93, 98, .38);
  background: rgba(201, 47, 53, .2);
}

.site-footer .menu--footer a > i,
.site-footer .wrapper-social a > i {
  width: 21px;
  min-width: 21px;
  color: var(--niawell-gold);
  text-align: center;
  font-size: 1rem;
}

.site-footer .wrapper-social .item:nth-child(2) a > i {
  color: #59dc86;
}

.site-footer .wrapper-social .item:last-child a > i {
  color: #ff8f93;
}

.site-footer .badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-footer .badges img {
  width: 86px;
  max-height: 84px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.site-footer .region-footer-bottom {
  width: var(--niawell-container);
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.site-footer .region-footer-bottom p {
  margin: 0;
  color: #8994a4;
  font-size: .72rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .site-header .content {
    grid-template-columns: 112px minmax(0, 1fr) 148px;
    grid-template-areas: "logo buttons language";
  }

  .site-header .signs {
    display: none;
  }

  .site-header .product-mega__shell {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .site-header .product-mega__content {
    padding: 21px;
  }

  .site-header .product-mega__series {
    grid-template-columns: 106px minmax(0, 1fr);
  }

  .site-header .product-mega__series-media {
    min-height: 100px;
  }

  .site-header .product-mega__series-media img {
    max-height: 96px;
  }

  .site-footer .region-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer .badges {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 20px;
    border-inline-end: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --niawell-container: min(100% - 24px, 1360px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header .content {
    min-height: auto;
    padding: 12px 0 14px;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-areas:
      "menu logo language"
      "search search search"
      "nav nav nav";
    gap: 11px 10px;
  }

  .site-header .logo a {
    flex-direction: row;
    justify-content: center;
    gap: 7px;
  }

  .site-header .logo .niawell-symbol {
    height: 44px;
  }

  .site-header .logo .niawell-wordmark {
    margin-top: 0;
    font-size: 22px;
  }

  .site-header .buttons {
    display: contents;
  }

  .site-header .top {
    grid-area: search;
    width: 100%;
  }

  .site-header .search-base input {
    height: 52px;
    border-radius: 14px;
    font-size: .94rem;
  }

  .site-header .search-suggestions {
    max-height: min(390px, 58vh);
    border-radius: 14px;
  }

  .site-header .search-suggestion {
    min-height: 68px;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .site-header .search-suggestion__image {
    width: 58px;
    height: 50px;
  }

  .site-mobile-menu {
    grid-area: menu;
    display: block;
    align-self: center;
    justify-self: start;
  }

  .site-header .language {
    grid-area: language;
    align-self: center;
    justify-self: end;
  }

  .site-header .selected-option {
    width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .site-header .selected-option span {
    display: none;
  }

  .site-header .bottom {
    grid-area: nav;
    width: 100%;
    max-height: calc(100dvh - 150px);
    display: none;
    overflow: auto;
    padding: 9px;
    border: 1px solid var(--niawell-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--niawell-shadow);
  }

  .site-header .bottom.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-header .bottom > a,
  .site-header .products-nav-shell > a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 11px 14px;
    font-size: .93rem;
  }

  .site-header .products-nav-shell {
    width: 100%;
  }

  .site-header .products-trigger-chevron {
    margin-inline-start: auto;
  }

  .site-header .navbar-dropdown,
  .site-header .sub-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 4px 0;
    box-shadow: none;
  }

  .site-header .product-mega {
    position: static;
    width: 100%;
    padding: 4px 0 7px;
  }

  .site-header .product-mega__shell {
    width: 100%;
    min-height: 0;
    display: block;
    overflow: visible;
    border-radius: 15px;
    box-shadow: none;
  }

  .site-header .product-mega__rail {
    padding: 8px;
    border-inline-end: 0;
    border-bottom: 1px solid #e2e6eb;
  }

  .site-header .product-mega__heading {
    display: none;
  }

  .site-header .product-mega__tab {
    min-height: 58px;
    grid-template-columns: 36px minmax(0, 1fr) 15px;
  }

  .site-header .product-mega__tab > i:first-child {
    width: 36px;
    height: 36px;
  }

  .site-header .product-mega__all {
    margin-top: 7px;
  }

  .site-header .product-mega__content {
    max-height: 50vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
  }

  .site-header .product-mega__panel > header {
    display: block;
    padding-bottom: 13px;
  }

  .site-header .product-mega__panel > header p {
    margin-top: 7px;
  }

  .site-header .product-mega__panel > header > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
  }

  .site-header .product-mega__series-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .site-header .product-mega__series {
    min-height: 112px;
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 10px;
  }

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

  .site-header .product-mega__series-media img {
    max-height: 84px;
  }

  .site-header .product-mega__models a {
    min-height: 38px;
    padding-inline: 10px;
  }

  .site-footer .region-footer {
    padding: 42px 0 30px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer .footer-section {
    padding: 22px 0;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .site-footer .footer-section:first-child {
    padding-top: 0;
  }

  .site-footer .footer-section:last-child {
    border-bottom: 0;
  }

  .site-footer .location {
    flex-direction: column;
  }

  .site-footer .badges {
    grid-column: auto;
    justify-content: flex-start;
  }

  .site-footer .menu--footer .menu-item a,
  .site-footer .wrapper-social .item a {
    min-height: 54px;
    padding-inline: 17px;
    font-size: .95rem;
  }

  .site-footer .region-footer-bottom {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px 0 24px;
    text-align: center;
  }

  .site-footer .region-footer-bottom p,
  .site-footer .region-footer-bottom .design-text {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .site-header .content {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .site-header .logo .niawell-symbol {
    height: 39px;
  }

  .site-header .logo .niawell-wordmark {
    font-size: 19px;
  }
}

/* Contact links must inherit the surrounding design instead of browser blue. */
a.phone-ltr,
a.phone-ltr:visited {
  color: inherit;
  text-decoration: none;
}

.site-footer .address a.phone-ltr,
.site-footer .address a.phone-ltr:visited {
  color: #aeb8c5;
}

.site-footer .address a.phone-ltr:hover,
.site-footer .address a.phone-ltr:focus-visible {
  color: #fff;
  text-decoration: none;
}

