.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-bg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
}

.header__logo {
  font-family: var(--font-primary);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-regular);
  line-height: 43px;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: clamp(28px, 4vw, 43px);
  width: auto;
  display: block;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__phone {
  font-size: var(--fs-lg);
  line-height: 24px;
  color: var(--color-text);
  white-space: nowrap;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-text);
  transition: opacity var(--transition-fast);
}

.header__icon:hover {
  opacity: 0.6;
}

.header__icon svg {
  width: 19px;
  height: 19px;
}

.header__icon--cart svg {
  width: 22px;
  height: 19px;
}

.header__icon--burger svg {
  width: 25px;
  height: 12px;
}

.header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

/* Mobile */
@media (max-width: 767px) {
  .header__inner {
    height: 60px;
  }

  .header__phone {
    display: none;
  }

  .header__icons {
    gap: 15px;
  }
}

/* Active heart (wishlist) */
.header__icon--heart.is-active svg {
  fill: var(--color-primary);
  stroke: var(--color-primary);
}

/* Burger always visible per Figma */
