.header {
  background-color: black;
  padding-bottom: 15px;
  padding-top: 15px;
}

@media (min-width: 1000px) {
  .align-items-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* carrinho */
  .carrinho {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
  }

  .search-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 1%;
    margin-top: 10px;
  }

  .btn-hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0 10px;
    margin-right: 10px;
  }

  .btn-hamburger:hover,
  .btn-hamburger:focus {
    color: #ccc;
  }

  .header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header-icon {
    color: #fff;
    font-size: 20px;
    margin-left: 15px;
    text-decoration: none;
  }

  .header-icon:hover {
    color: #ccc;
  }

  /* Ajustar o carrinho para remover o dropdown e mostrar apenas o ícone com contador */
  #cart {
    position: relative;
  }

  #cart > button {
    background: none;
    border: none;
    padding: 0;
    font-size: 20px;
    color: #fff;
  }

  #cart > button:hover {
    color: #ccc;
  }

  #cart .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #f5a623;
    /* Amarelo como na imagem */
    color: #000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 10px;
  }

  .header {
    background-color: black;
    padding-bottom: 5px;
    padding-top: 10px;
  }

  #logo a img {
    object-fit: cover;
    height: 72px;
  }
}

@media (max-width: 1000px) {
  .logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .search-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
  }

  .header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .carrinho {
    margin-top: 20px;
  }
}

/* Mudar a cor do hambúrguer quando o menu está ativo */
#hamburger-menu.visible ~ .btn-hamburger,
.btn-hamburger.active {
  color: #ffc107;
  /* Amarelo para destaque */
}
