/* ── Header inline overrides ─────────────────────────────────────────────── */
/* Hero gradient overlay (top-to-bottom fade) */
.hero-banner .hero__media.media--overlay::before,
.collection-hero .media--overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Cart count badge */
.cart-count-badge,
.header__utils-link span.cart-count-badge {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  color: rgb(var(--color-primary-button-text));
  background: rgb(var(--color-primary-button));
  position: absolute;
  bottom: 1.2rem;
  left: 0.2rem;
}

/* Logo sizing */
.header__logo {
  width: 5.6rem;
}

@media screen and (min-width: 750px) {
  .header__logo {
    width: 10rem;
  }

  .header__utils-item--cart .small-hide.medium-hide,
  .header__utils-item--cart .icon,
  .header__utils-item--cart .icon__text {
    display: none;
  }

  .header__utils-item--cart .icon-with-text .icon,
  .header__utils-item--cart .header__utils-link--icon {
    display: block;
  }
}
