.amazon-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 140, 66, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}

.amazon-header-left-section {
  width: 180px;
}

@media (max-width: 800px) {
  .amazon-header-left-section {
    width: unset;
  }
}

.header-link {
  display: inline-block;
  padding: 6px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0);
}

.header-link:hover {
  border: 1px solid white;
}

.amazon-logo {
  width: 100px;
  margin-top: 5px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.amazon-mobile-logo {
  display: none;
}

@media (max-width: 575px) {
  .amazon-logo {
    display: none;
  }

  .amazon-mobile-logo {
    display: block;
    height: 35px;
    margin-top: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
}

.amazon-header-middle-section {
  flex: 1;
  max-width: 850px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.search-bar {
  flex: 1;
  width: 0;
  font-size: 16px;
  background: white;
  border: 1px solid #ffe0c0;
  border-radius: 40px 0 0 40px;
  padding: 10px 20px;
  height: auto;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}
.search-bar:focus {
  outline: none;
  border-color: #ff8c42;
  box-shadow: 0 0 0 2px rgba(255, 140, 66, 0.2);
}

.search-button {
  background: linear-gradient(135deg, #ffb347, #ff8c42);
  border: none;
  border-radius: 0 40px 40px 0;
  width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-button:hover {
  background: linear-gradient(135deg, #ffa042, #ff7810);
}

.search-icon {
  height: 22px;
  margin-left: 2px;
  margin-top: 3px;
}

.amazon-header-right-section {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  justify-content: end;
}

.orders-link {
  color: #2c2c2c;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}
.orders-link:hover {
  color: #ff8c42;
}

.returns-text {
  display: block;
  font-size: 13px;
}

.orders-text {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.cart-link {
  color: #2c2c2c;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}
.cart-link:hover {
  color: #ff8c42;
}

.cart-icon {
  width: 50px;
}

.cart-text {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
}

.cart-quantity {
  background: #ff8c42;
  color: white;
  border-radius: 40px;
  width: 22px;
  height: 22px;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  position: absolute;
  top: 4px;
  left: 22px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
