.ha-header {

}

.ha-header .desktop {
  display: none;
  padding: 2rem 0 1rem 0;
}

.ha-header .mobile {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  align-items: center;
}

.header-content-container {
  display: flex;
  height: 44px;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.header-title {
  flex: 1;
  text-align: center;
  color: var(--ha-body-color);
  font-weight: 400;
  line-height: 1.5
}

.header-back {
  min-height: 44px;
  min-width: 44px;
  border-radius: 100px;
  border: 1px solid var(--bs-border-color);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-back svg {
  fill: var(--bs-primary);
}

.placeholder-back {
  min-height: 44px;
  min-width: 44px;
}

.header-cart {
  min-height: 44px;
  min-width: 44px;
  position: relative;
  font-size: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.header-cart-icon {
  position: absolute;
  bottom: 0;
  right: 0;
}

.header-cart-count {
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background: var(--bs-link-color);
  display: flex;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: relative;
  right: -2px;
  bottom: -2px;
}

@media (width >= 768px) {
  .ha-header {
    border-bottom: none;
  }

  .ha-header .desktop {
    display: block;
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--bs-border-color);
  }

  .ha-header .container-md {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ha-header .logo img {
    height: 24px;
    width: auto;
  }

  .ha-header .mobile {
    display: none;
  }
}
