/* =======================================================
   CABEÇALHO / NAVEGAÇÃO (includes/cabecalho_loja.php)
======================================================= */
.topo-loja {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 12px 32px;

  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  position: sticky;
  top: 0;
  z-index: 100;
}

.topo-loja__logo img {
  height: 80px;
  width: auto;
}

/* Busca */
.topo-loja__busca {
  flex: 1;
  max-width: 560px;

  display: flex;
  align-items: center;

  border: 1px solid #e6dcdb;
  border-radius: 8px;
  overflow: hidden;
}

.topo-loja__busca input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
}

.topo-loja__busca button {
  border: none;
  background: #ffffff;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #b46f65;
}

/* Ações da direita: Entrar / Produtos / Carrinho */
.topo-loja__acoes {
  display: flex;
  align-items: center;
  gap: 24px;

  font-size: 14px;
  color: #4a3b38;
  white-space: nowrap;
}

.topo-loja__acoes a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topo-loja__acoes a:hover {
  color: #b46f65;
}

.topo-loja__carrinho {
  position: relative;
}

.topo-loja__carrinho-badge {
  position: absolute;
  top: -8px;
  right: -10px;

  background: #b46f65;
  color: #ffffff;

  font-size: 11px;
  font-weight: 600;

  width: 18px;
  height: 18px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}