@charset "UTF-8";

/* Header Badges */
.header__link {
  position: relative;
}

.header__link-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: #552F24;
  z-index: 1;
}

.header__badge-count {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  color: #FBF5EC;
  padding: 0 0.375rem;
  white-space: nowrap;
}

.header__link-badge:empty {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .header__link-badge {
    top: -0.125rem;
    right: -0.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
  }

  .header__badge-count {
    font-size: 0.6875rem;
    padding: 0 0.3125rem;
  }
}

