/* Shared navigation contract for every Bandal Cleaning page. */
.cleaning-header.site-header.region-header {
  position: sticky;
  top: 0;
  right: auto;
  left: auto;
  z-index: 80;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  width: 100%;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1340px) / 2));
  color: #111735;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #d9deec;
  box-shadow: 0 8px 24px rgba(17, 23, 53, 0.08);
  backdrop-filter: none;
}

.cleaning-header .cleaning-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 184px;
  min-height: 44px;
  padding: 0;
  color: #111735;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cleaning-header .cleaning-brand img {
  display: block;
  width: 176px;
  max-width: 100%;
  height: auto;
  filter: none;
}

.cleaning-header .cleaning-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-width: 0;
  color: #25256f;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.cleaning-header .cleaning-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}

.cleaning-header .cleaning-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: #45459a;
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 220ms ease;
}

.cleaning-header .cleaning-nav a:hover,
.cleaning-header .cleaning-nav a:focus-visible {
  color: #3657a6;
}

.cleaning-header .cleaning-nav a:hover::after,
.cleaning-header .cleaning-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.cleaning-header .cleaning-header-actions {
  display: flex;
  justify-content: flex-end;
  width: auto;
}

.cleaning-header .cleaning-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 46px;
  padding: 0 18px;
  color: #1f1b00;
  background: #fee500;
  border: 1px solid #ead300;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.cleaning-header .cleaning-header-cta:hover,
.cleaning-header .cleaning-header-cta:focus-visible {
  color: #1f1b00;
  background: #f4dc00;
  border-color: #d7c100;
  transform: translateY(-1px);
}

.cleaning-header :is(a, button):focus-visible {
  outline: 3px solid rgba(54, 87, 166, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .cleaning-header.site-header.region-header {
    grid-template-columns: 164px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .cleaning-header .cleaning-brand,
  .cleaning-header .cleaning-brand img {
    width: 156px;
  }

  .cleaning-header .cleaning-nav {
    gap: 18px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .cleaning-header.site-header.region-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: minmax(44px, auto) 44px;
    gap: 8px 12px;
    max-width: 100vw;
    overflow-x: clip;
    padding: 9px 16px 8px;
  }

  .cleaning-header .cleaning-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .cleaning-header .cleaning-header-actions {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .cleaning-header .cleaning-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-width: 0;
    height: 44px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 1px 2px;
    color: #25256f;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .cleaning-header .cleaning-nav::-webkit-scrollbar {
    display: none;
  }

  .cleaning-header .cleaning-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #d9deec;
    border-radius: 4px;
    background: #f6f7fb;
  }

  .cleaning-header .cleaning-nav a::after {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }
}

@media (max-width: 680px) {
  .cleaning-header.site-header.region-header {
    grid-template-columns: minmax(0, 1fr);
    min-height: 106px;
  }

  .cleaning-header .cleaning-header-actions {
    display: none;
  }

  .cleaning-header .cleaning-brand,
  .cleaning-header .cleaning-brand img {
    width: 136px;
  }

  .cleaning-header .cleaning-header-cta {
    display: inline-flex;
    min-width: 96px;
    min-height: 44px;
    padding: 0 13px;
    font-size: 13px;
  }

  .cleaning-header .cleaning-nav a:nth-child(n + 5) {
    display: none;
  }
}
