.amazon-header {
  background-color: rgb(19, 25, 33);
  color: white;
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;

  z-index: 1000; /* garante que fica por cima */
}

/* LEFT */
.amazon-header-left-section {
  width: 180px;
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .amazon-header-left-section {
    width: unset;
  }
}

/* LINKS (efeito melhorado) */
.header-link {
  display: inline-block;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.header-link:hover {
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.05);
}

/* LOGO */
.amazon-logo {
  width: 100px;
  margin-top: 5px;
}

.amazon-mobile-logo {
  display: none;
}

@media (max-width: 575px) {
  .amazon-logo {
    display: none;
  }

  .amazon-mobile-logo {
    display: block;
    height: 35px;
    margin-top: 5px;
  }
}

/* MIDDLE (BUSCA) */
.amazon-header-middle-section {
  flex: 1;
  max-width: 850px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

/* INPUT */
.search-bar {
  flex: 1;
  width: 0;
  font-size: 15px;
  height: 40px;
  padding-left: 15px;
  border: none;
  outline: none;

  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* BOTÃO BUSCA */
.search-button {
  background-color: rgb(254, 189, 105);
  border: none;
  width: 45px;
  height: 40px;

  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;

  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background-color: rgb(243, 168, 71);
}

.search-icon {
  height: 22px;
  margin-left: 2px;
  margin-top: 3px;
}

/* RIGHT */
.amazon-header-right-section {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}

/* ORDERS */
.orders-link {
  color: white;
  display: flex;
  flex-direction: column;
}

.returns-text {
  font-size: 12px;
  color: #ccc;
}

.orders-text {
  font-size: 14px;
  font-weight: 700;
}

/* CART */
.cart-link {
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease;
}

.cart-link:hover {
  transform: scale(1.05);
}

.cart-icon {
  width: 45px;
}

.cart-text {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

/* BADGE DO CARRINHO (MELHORADO) */
.cart-quantity {
  color: black;
  background-color: rgb(240, 136, 4);

  font-size: 12px;
  font-weight: 700;

  position: absolute;
  top: 2px;
  left: 20px;

  width: 20px;
  height: 20px;

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

  border-radius: 50%;
}
