/* -------------------------------------------------------------------------- */
/* Faixa superior (fundo preto, ícones + utilidades)                          */
/* -------------------------------------------------------------------------- */

.top-bar {
  background: var(--color-black);
  color: var(--color-white);
  font-size: var(--text-sm);
  border-bottom: 1px solid #1f1f1f;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-block: 8px;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar__item .u-icon {
  width: 16px;
  height: 16px;
}

.top-bar__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar__cart-count {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar__right {
    width: 100%;
    justify-content: space-between;
  }
}
