
/* Corrigir a cor do ícone do carrinho */
.header__cart svg path {
  fill: #f6d6b4 !important;
}


/* 2. Posicionar a lupa ao lado da barra de busca */
.header__search {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.header__search input[type="text"] {
  padding-right: 40px;
}

.header__search button {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: #7b0000; /* cor escura */
  cursor: pointer;
}

/* Centralizar a logo no topo */
.header__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

