* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header {
  width: 100%;
  border: 1px solid black;
  position: fixed;
  left: 0;
  background-color: rgba(255, 255, 255, 0.863);
  right: 0;
  z-index: 1000;
  top: 0;
}
.header-upper {
  background-color: palevioletred;
  padding: 05px;
  display: flex;
  color: rgb(39, 39, 39);
  font-weight: bolder;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}
.header-child {
  width: 90%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: space-between;
}
ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 100px;
  font-size: 22px;

  font-family: sans-serif;
}
ul a {
  text-decoration: none;
  color: black;
}
li {
  border: 1px solid white;
  background-color: white;
  filter: drop-shadow(0px 0px 2px black);
  padding: 5px 10px;
  cursor: pointer;
  transition: filter 0.1s ease;
}
li:hover {
  filter: drop-shadow(0px 0px 4px black);
}
.cart-icon {
  display: flex;
  flex-direction: row-reverse;
}
.cart-dot {
  margin-top: -10px;
  margin-left: -05px;
  right: 80px;
  top: 15px;
}
body {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb);
}
.container {
  width: 80%;
  display: grid;
  justify-self: center;
  margin-top: 150px;
  font-family: sans-serif;
}
.cart-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px;
}
.cart-top {
  display: flex;
  align-items: center;
  gap: 50px;
}
.cart-img {
  border-radius: 10px;
  width: 130px;
  height: 90px;
}
.cart-nameandprice {
  display: grid;
  gap: 20px;
  font-size: 22px;
  font-weight: bold;
}
.cart-products .quantity {
  font-size: 20px;
  margin: 0px 20px;
}
.cart-products button {
  padding: 2px 15px;
  font-size: 20px;
}
.total {
  margin-top: 10px;
  font-size: 25px;
  font-weight: lighter;
}
.confirm {
  border-radius: 5px;
  border: none;
  background-color: #22c95f;
  color: white;
  letter-spacing: 2px;
  width: fit-content;
  margin-top: 20px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 22px;
}
#contact-us {
  padding: 50px;
  margin-top: 50px;
  background: #a67c73;
  /* background: #c2185b; */
  /* background-color: #dfbfa8; */
}
#contact-us .contact-us-child {
  width: 90%;
  display: grid;
  justify-self: center;
}
#contact-us h1 {
  font-size: 28px;
  text-align: center;
  display: flex;
  justify-self: center;
  font-family: sans-serif;
  width: 40%;
  color: #312d2d;
}
#contact-us h2 {
  margin: 50px 0px 15px 0px;
  font-size: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
#contact-us .links {
  display: flex;
  gap: 30px;
}
#contact-us .links img {
  /* filter: drop-shadow(0px 05px 15px black); */
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  transition: all 0.2s;
}
#contact-us .links img:hover {
  /* filter: drop-shadow(0px 05px 10px black); */
  filter: drop-shadow(0 02px 8px rgba(255, 255, 255, 0.5));

  transform: scale(1.3);
}

#contact-us h3 {
  margin: 50px 0px 20px 0px;
  font-size: 18px;
  color: #312d2d;
  font-family: Arial, Helvetica, sans-serif;
}
.reference {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 9999;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
  transition: 0.3s ease;
}
.whatsapp h2 {
  background-color: #22c95f;
  color: white;
  padding: 8px 10px;
  font-family: sans-serif;
}

.whatsapp:hover {
  transform: scale(1.05);
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .container {
    width: 90%;
  }
}

@media (min-width: 769px) and (max-width: 1279px) {
  .header-child {
    width: 90%;
    padding: 5px;
  }
  ul {
    gap: 40px;
  }
  #contact-us .contact-us-child {
    width: 100%;
  }
  #contact-us h1 {
    width: 80%;
    font-size: 25px;
  }
  #contact-us h2 {
    margin: 50px 0px 0px 0px;
    font-size: 28px;
  }
  #contact-us .links {
    gap: 10px;
  }
  #contact-us h3 {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .header {
    width: 100%;
  }
  .header-child {
    width: 100%;
  }
  ul {
    gap: 20px;
  }
  li {
    font-size: 15px;
  }
  #contact-us .contact-us-child {
    width: 100%;
  }
  #contact-us h1 {
    width: 80%;
    font-size: 25px;
  }
  #contact-us h2 {
    margin: 50px 0px 0px 0px;
    font-size: 28px;
  }
  .reference {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
  }
  #contact-us .links {
    gap: 10px;
    margin: 20px 0px -30px 0px;
  }

  #contact-us .links img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  #contact-us .links img:hover {
    filter: drop-shadow(0 02px 8px rgba(255, 255, 255, 0.5));
  }

  #contact-us h3 {
    font-size: 12px;
  }
  .whatsapp h2 {
    font-size: 20px;
  }
}
@media (min-width: 5px) and (max-width: 480px) {
  .header {
    width: 100%;
  }
  .logo {
    width: 40px;
  }
    .header-upper{
    font-size: 13px;
  }
  .header-child {
    width: 100%;
  }
  ul {
    gap: 10px;
  }
  li {
    font-size: 12px;
    padding: 03px 05px;
  }
  .cart-products {
    display: grid;
    gap: 20px;
  }
  .cart-top {
    gap: 20px;
  }

  .cart-nameandprice {
    display: grid;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
  }
  .cart-products .quantity {
    font-size: 20px;
    margin: 0px 20px;
  }
  .cart-products button {
    padding: 2px 15px;
    font-size: 20px;
  }

  #contact-us .contact-us-child {
    width: 100%;
  }
  #contact-us h1 {
    width: 100%;
    font-size: 20px;
  }
  #contact-us h2 {
    margin: 50px 0px 0px 0px;
    font-size: 28px;
  }
  .reference {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
  }
  #contact-us .links {
    gap: 10px;
    margin: 20px 0px -30px 0px;
  }
  #contact-us .links img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  #contact-us .links img:hover {
    filter: drop-shadow(0 02px 8px rgba(255, 255, 255, 0.5));
  }
  #contact-us h3 {
    font-size: 12px;
  }
  .whatsapp h2 {
    font-size: 12px;
  }
}
