* {
  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: 0.3s ease;
}
li:hover {
  transform: scale(1.05);
  filter: drop-shadow(0px 0px 3px 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);
}

#home {
  width: 80%;
  margin-top: 150px;
  display: grid;
  justify-self: center;
}

#home .content1 {
  position: relative;
  z-index: 1;
}
#home .content1 h1 {
  position: absolute;
  line-height: 40px;
  font-family: sans-serif;
  /* color: #b6186c; */
  color: #312d2d;
  rotate: -2deg;
  width: 25%;
  margin-left: 40px;
  align-self: center;
  /* gap: 50px; */
  display: flex;
}

#home .content2 {
  margin-top: 50px;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .content2 h1 {
  font-size: 28px;
}
#home .content2 a {
  text-decoration: none;
  border-bottom: 2px solid black;
  color: rgb(63, 59, 59);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#home .content3 {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  /* grid-template-rows: 1fr  1fr; */
  align-items: center;
  margin-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  font-family: Arial, Helvetica, sans-serif;
}
#home .content3  a {
  text-decoration: none;
}
#home .content3 .product {
  background-color: white;
  box-shadow: 0px 0px 05px 0.1px rgb(189, 179, 179);
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  border-radius: 10px;
}
#home .content3 .product:hover{
  transform: scale(1.02);
}
#home .content3 .product img{
  border-radius:0px 0px 0px 0px;
}

#home .content3 .product .product-top {
  height: 60%;
  overflow: hidden;
}
#home .content3 .product .product-bottom {
  display: grid;
  width: 90%;
  height: 35%;
  gap: 5px;
padding: 0px 0px 20px 0px;
}

#home .content3 .product .product-bottom .productname {
  font-size:40px ;
  color: Black;
}
#home .content3 .product .product-bottom .product-bottom-bottom{
display: flex;
align-items: end;
justify-content: space-between;
}
#home .content3 .product .product-bottom .product-bottom-bottom .view-more{
  padding: 05px 10px;
  background-color: #f797b4;
  color: black;
  border-radius: 50px;
  font-weight: bold;
}

#home .content3 .product .product-bottom .productprice {
  font-size:20px ;
  font-weight: bolder;
  display: grid;
  gap: 10px;
  color: Black;
}

#home .content3 .product .product-bottom .productprice .productprice-actual {
  font-size: 18px;
  color: #9e9e9e;
}
#home .content3 .product .product-bottom .productprice .productprice-sale {
  font-size: 20px;
  color: #cf5d06;
  
}
#home .content4 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  #home .content4 button {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #f797b4;
    align-items: center;
    display: flex;
    gap: 10px;
    font-size: 15px;
    border-radius: 50px;
    background-color: #f797b4;
    transition: all 0.2s ease-in-out;
  }
  #home .content4 button:hover {
  transform: scale(1.10);
  }
#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) {
  #home {
    width: 90%;
  }

  #home .content3 {
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    gap: 40px;
  }
  #home .content3 .product {
    height: 300px;
  }
   #home .content3 .product .product-top {
    height: 50%;
  }
  #home .content3 .product .product-bottom {
  height: 45%;
  gap: 10px;
}
#home .content3 .product .product-bottom .productname {
  font-size:25px ;
  font-weight: bolder;
}
#home .content3 .product .product-bottom .product-bottom-bottom{
align-items: start;
gap: 10px;
flex-direction: column;
}
#home .content3 .product .product-bottom .product-bottom-bottom .bview-more{
  padding: 05px 10px;
  font-size: 15px;
}
#home .content3 .product .product-bottom .productprice {
  gap: 2px;
}
#home .content3 .product .product-bottom .productprice .productprice-actual {
  font-size: 12px;
}
#home .content3 .product .product-bottom .productprice .productprice-sale {
  font-size: 18px;
}


}

@media (min-width: 769px) and (max-width: 1279px) {
  .header-child {
    width: 90%;
    padding: 5px;
  }
  ul {
    gap: 40px;
  }
  #home {
    width: 90%;
  }
  #home .content1 h1 {
    width: 35%;
    line-height: 30px;
    margin-left: 20px;
    font-size: 25px;
  }
  #home .content3 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    gap: 20px;
  }

  #home .content3 .product {
    height: 300px;
  }
   #home .content3 .product .product-top {
    height: 50%;
  }
  #home .content3 .product .product-bottom {
  height: 45%;
  gap: 10px;
}
#home .content3 .product .product-bottom .productname {
  font-size:25px ;
  font-weight: bolder;
}
#home .content3 .product .product-bottom .product-bottom-bottom{
align-items: start;
gap: 10px;
flex-direction: column;
}
#home .content3 .product .product-bottom .product-bottom-bottom .bview-more{
  padding: 05px 10px;
  font-size: 15px;
}
#home .content3 .product .product-bottom .productprice {
  gap: 2px;
}
#home .content3 .product .product-bottom .productprice .productprice-actual {
  font-size: 12px;
}
#home .content3 .product .product-bottom .productprice .productprice-sale {
  font-size: 18px;
}





  #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;
  }
  #home {
    width: 100%;
  }
  #home .content1 h1 {
    width: 45%;
    line-height: 25px;
    margin-left: 10px;
    font-size: 18px;
  }
  #home .content2 {
    width: 90%;
    justify-self: center;
    font-size: 20px;
  }
  #home .content3 {
    width: 90%;
    justify-self: center;
    grid-template-columns: 1fr 1fr;
  }
  #home .content3 .product {
    height: 280px;
  }


   #home .content3 .product .product-top {
    height: 55%;
  }
  #home .content3 .product .product-bottom {
  height: 40%;
  gap: 5px;
}
#home .content3 .product .product-bottom .productname {
  font-size:22px ;
}
#home .content3 .product .product-bottom .product-bottom-bottom{
align-items: start;
flex-direction: column;
}
#home .content3 .product .product-bottom .product-bottom-bottom .bview-more{
  padding: 05px 8px;
  font-size: 12px;
}
#home .content3 .product .product-bottom .productprice {
  gap: 2px;
}
#home .content3 .product .product-bottom .productprice .productprice-actual {
  font-size: 12px;
}
#home .content3 .product .product-bottom .productprice .productprice-sale {
  font-size: 15px;
}




  #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 2px 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 {
    width: 18px;
  }
  #home {
    width: 100%;
    margin-top: 90px;
  }

  #home .content1 {
    /* gap: 20px; */
    position: sticky;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
  }
  #home .content1 h1 {
    rotate: 0deg;
    position: sticky;
    background-color: #d9b6a0;
    width: 100%;
    line-height: 20px;
    margin-left: 0px;
    padding: 10px 10px;
    font-size: 13px;
  }
  #home .content2 {
    width: 90%;
    justify-self: center;
  }
  #home .content2 h1 {
    font-size: 18px;
  }
  #home .content2 a {
    font-size: 10px;
  }
  #home .content2 a img {
    width: 15px;
  }
  
  #home .content3 {
    width: 90%;
    justify-self: center;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  #home .content3 .product {
    height: 180px; 
  }



  #home .content3 .product .product-top {
    height: 50%;
  }
  #home .content3 .product .product-bottom {
  height: 45%;
  gap: 5px;
}
#home .content3 .product .product-bottom .productname {
  font-size:18px ;
}
#home .content3 .product .product-bottom .product-bottom-bottom{
align-items: start;
flex-direction: column;

}
#home .content3 .product .product-bottom .product-bottom-bottom .view-more{
  padding: 05px 8px;
  font-size: 15px;
}
#home .content3 .product .product-bottom .productprice {
  gap: 2px;
}
#home .content3 .product .product-bottom .productprice .productprice-actual {
  font-size: 10px;
}
#home .content3 .product .product-bottom .productprice .productprice-sale {
  font-size: 13px;
}


  #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 2px 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;
  }
}
