/* Custom Laundryheap-style header for Qondri */

body {
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
}

.lh-nav {
  --lh-nav-bg: #0890f1;
  --lh-nav-text: #ffffff;
  --lh-nav-text-scrolled: #1c2026;
  --lh-nav-border: #d8dcdf;
  --lh-nav-radius: 0;
  --lh-nav-gutter: 44px;
  --lh-nav-y: 36px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  color: var(--lh-nav-text);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    padding 0.25s ease,
    border-color 0.25s ease;
}

.lh-nav__bar {
  display: flex;
  align-items: center;
  padding: var(--lh-nav-y) var(--lh-nav-gutter);
  background: var(--lh-nav-bg);
  transition: inherit;
}

.lh-nav.scrolled {
  background: #ffffff;
  border-bottom: 1px solid var(--lh-nav-border);
}

.lh-nav.scrolled .lh-nav__bar {
  background: #ffffff;
  padding-top: 18px;
  padding-bottom: 18px;
}

.lh-nav--logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.lh-nav--logo a {
  display: inline-flex;
  align-items: center;
}

.lh-logo {
  display: block;
  width: auto;
  height: 29px;
  max-width: 194px;
}

svg.lh-logo {
  overflow: visible;
  flex: 0 0 auto;
}

.lh-brand {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 3px;
  max-width: none;
  height: auto;
  min-height: 32px;
  color: #ffffff;
}

.lh-logo--default {
  color: #ffd06d;
}

.lh-logo--default .lh-brand__text {
  color: #ffffff;
}

.lh-brand.lh-logo {
  height: auto;
  max-width: none;
}

.lh-brand__icon {
  width: 36px;
  height: 34px;
  flex: 0 0 auto;
  display: block;
}

.lh-brand__text {
  display: block;
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.lh-logo--scrolled {
  display: none;
  color: #0890f3;
}

.lh-logo--scrolled .lh-brand__text {
  color: #000000;
}

.lh-nav.scrolled .lh-brand__text {
  font-weight: 700;
}

.lh-logo--scrolled {
  gap: 8px;
}

.lh-nav.scrolled .lh-logo--default {
  display: none;
}

.lh-nav.scrolled .lh-logo--scrolled {
  display: inline-flex;
}

.lh-nav a {
  text-decoration: none;
}

.lh-nav .d-block {
  display: block !important;
}

.lh-nav-spacer {
  flex: 1 1 auto;
  min-width: 20px;
  margin: 0 !important;
}

.lh-nav__desktop-nav {
  min-width: 0;
}

.lh-nav__desktop-nav ul,
.lh-nav__mobile-panel ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lh-nav__desktop-nav ul {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.lh-nav__desktop-nav li,
.lh-nav__mobile-panel li {
  margin: 0;
  padding: 0;
}

.lh-nav__desktop-nav a {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.lh-nav.scrolled .lh-nav__desktop-nav a {
  color: var(--lh-nav-text-scrolled);
}

.lh-nav--right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lh-nav--right .login-button {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.lh-nav--right .login-button:hover {
  opacity: 0.9;
}

.lh-nav.scrolled .lh-nav--right .login-button {
  color: var(--lh-nav-text-scrolled);
}

.lh-nav--right .lh-nav--cta a,
.lh-nav__mobile-actions .button {
  padding: 11px 25px;
  white-space: nowrap;
}

.lh-nav .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lh-nav .button-primary-white {
  background: #ffffff;
  color: #202b93;
}

.lh-nav .button-primary-white:hover {
  background: #f7fafc;
}

.lh-nav.scrolled .lh-nav--right .lh-nav--cta .button,
.lh-nav.scrolled .lh-nav__mobile-actions .button {
  background: #0890f1;
  color: #ffffff;
}

.lh-nav.scrolled .lh-nav--right .lh-nav--cta .button:hover,
.lh-nav.scrolled .lh-nav__mobile-actions .button:hover {
  background: #32a9fe;
}

.lh-nav--toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.lh-nav.scrolled .lh-nav--toggle {
  background: transparent;
  color: var(--lh-nav-text-scrolled);
}

.lh-nav--toggle-lines {
  position: relative;
  display: inline-flex;
  width: 27px;
  height: 18px;
}

.lh-nav--toggle-lines span {
  position: absolute;
  left: 0;
  width: 27px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    top 0.2s ease,
    background-color 0.2s ease;
}

.lh-nav--toggle-lines span:nth-child(1) {
  top: 0;
}

.lh-nav--toggle-lines span:nth-child(2) {
  top: 8px;
}

.lh-nav--toggle-lines span:nth-child(3) {
  top: 16px;
}

.lh-nav.menu-open .lh-nav--toggle-lines span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.lh-nav.menu-open .lh-nav--toggle-lines span:nth-child(2) {
  opacity: 0;
}

.lh-nav.menu-open .lh-nav--toggle-lines span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.lh-nav__mobile-panel {
  display: none;
}

.lh-nav .d-none {
  display: none !important;
}

.lh-nav .me-32 {
  margin-right: 32px !important;
}

@media (min-width: 768px) {
  .lh-nav .me-md-80 {
    margin-right: 80px !important;
  }

  .lh-nav .d-md-block {
    display: block !important;
  }

  .lh-nav .d-md-none {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .lh-nav__bar {
    padding: 10px;
  }

  .lh-logo {
    max-width: 136px;
  }

  .lh-brand__icon {
    width: 24px;
    height: 23px;
  }

  .lh-brand__text {
    font-size: 17px;
  }

  .lh-nav--right {
    gap: 8px;
  }

  .lh-nav--right .lh-nav--cta a {
    min-width: 58px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 16px;
  }

  .lh-nav--right .lh-nav--toggle {
    width: 38px;
    height: 38px;
  }

  .lh-nav__mobile-panel-inner {
    padding: 10px 12px 14px;
  }
}

@media (max-width: 1199.98px) {
  .lh-nav__desktop-nav ul {
    gap: 24px;
  }

  .lh-nav__bar {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 767.98px) {
  .lh-nav__bar {
    padding: 22px 20px;
  }

  .lh-nav.scrolled .lh-nav__bar {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .lh-nav__desktop-nav {
    display: none;
  }

  .lh-nav--right .lh-nav--toggle {
    display: inline-flex;
  }

  .lh-nav__mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lh-nav-bg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease;
  }

  .lh-nav.scrolled .lh-nav__mobile-panel {
    background: #ffffff;
    border-top: 1px solid rgba(28, 32, 38, 0.08);
  }

  .lh-nav__mobile-panel-inner {
    overflow: hidden;
    padding: 16px 20px 20px;
  }

  .lh-nav.menu-open .lh-nav__mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .lh-nav__mobile-panel ul {
    flex-direction: column;
    gap: 0;
  }

  .lh-nav__mobile-panel li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .lh-nav.scrolled .lh-nav__mobile-panel li + li {
    border-top-color: rgba(28, 32, 38, 0.08);
  }

  .lh-nav__mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }

  .lh-nav.scrolled .lh-nav__mobile-panel a,
  .lh-nav.scrolled .lh-nav__mobile-login {
    color: var(--lh-nav-text-scrolled);
  }

  .lh-nav__mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 16px;
  }

  .lh-nav__mobile-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
  }

  .lh-nav.scrolled .lh-nav__mobile-login {
    border-color: rgba(28, 32, 38, 0.12);
  }
}

@media (max-width: 767.98px) {
  .lh-nav__bar {
    padding: 16px;
  }

  .lh-nav.scrolled .lh-nav__bar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .lh-logo {
    height: 24px;
    max-width: 160px;
  }

  .lh-brand {
    gap: 4px;
  }

  .lh-logo--scrolled {
    gap: 8px;
  }

  .lh-brand__icon {
    width: 29px;
    height: 27px;
  }

  .lh-brand__text {
    font-size: 20px;
  }

  .lh-nav .d-md-block {
    display: none !important;
  }

  .lh-nav .d-md-none {
    display: inline-flex !important;
  }

  .lh-nav--right {
    gap: 12px;
  }

  .lh-nav--right .lh-nav--cta a {
    min-width: 72px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 18px;
  }

  .lh-nav--right .lh-nav--toggle {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .lh-nav__mobile-panel {
    padding: 0;
  }

  .lh-nav__mobile-panel-inner {
    padding: 14px 16px 18px;
  }
}

@media (min-width: 768px) {
  .lh-nav__desktop-nav {
    display: block;
  }

  .lh-nav__mobile-panel {
    display: none !important;
  }

  .lh-nav--right .lh-nav--toggle {
    display: none !important;
  }
}

/* Hide Qondri's built-in header to prevent duplicates */
#site-header-wrap {
  display: none;
}
