header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;

  background-image: url(../header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-color: white;
  color: white;

  box-shadow: 0 5px 5px rgb(223, 223, 223);
  z-index: 100;
}

header .header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.right-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;

  margin-top: 50px;
  margin-right: 10px;
}
.horizontal-container {
  display: flex;
  flex-direction: row;

  gap: 10px;
}

.shop-name {
  flex: 1;
  font-size: 42px;
  font-weight: bold;

  margin-left: 10px;
  cursor: pointer;
}

.cart-button {
  position: relative;
}

.about-us,
.cart-button {
  padding: 8px;
  border: none;
  border-radius: 8px;
}

.about-us:hover,
.cart-button:hover {
  background-color: rgb(255, 186, 179);
  cursor: pointer;
  transition: 0.15s;
}

.about-us:active,
.cart-button:active {
  opacity: 0.7;
}

.cart-amount {
  position: absolute;
  right: -10px;
  top: -10px;

  padding: 3px;
  background-color: rgb(255, 186, 179);
  /* border: 2px solid rgb(255, 186, 179); */
  border-radius: 10px;

  font-weight: bold;
  visibility: hidden;
}

@media (max-width: 730px) {
  .shop-name {
    font-size: 24px;
  }
}
