@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  
  background: #EAC7CC;
    padding: 20px;
  }
  .empty-img {
    width: 30%;
    height: 20%;
    margin: 0 auto;
}
  #sortDropdown{
    padding: 8px 8px;
    width: 112px; 
    color: #ed3849;
    background-color: #f4e5ec;
    border-radius: 50px; 
    position: relative; 
    left:90% ;
    bottom: 45px;
    border: 2px solid black;
  }

  .searchBtns{ 
    margin: auto;
    width: 60%; 
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background-color: #fff;
  }
 
  #search {
    color: #ed3849;
    width: 96%;
    padding: 8px;
    border: none;
    border-radius: 50px;
  }
   
  #filters {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    margin-left: 40%;
  }
  
  #filters button {
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: #ed3849;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #filters button:hover {
    background-color: #ed384a82;
  }
   
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
  }
   
  .product-grid .main-div {
    border: 1px solid #ddd;
    padding: 30px 10px;
    border-radius: 8px;
    background-color: #f4e5ec;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .product-grid .main-div:hover {
    transform: translateY(-10px);
  }
   
  .product-grid img {
    width: 100%;
    height: 280px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
   
  .product-grid h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
   
  .product-grid p {
    color: #555;
  }

  .group-Btn{
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-direction: row;
  } 

  .cart-btn, .buy-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e74c3c;
    color: white;
    
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    &:hover {
      background-color: #c0392b;
      transform: translateY(-5px);
    }
    
  }
  
 
  @media screen and (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 480px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }
  

.product-para{
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  
  
}
.msg{
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: red;
}
.Btnn button{ 
  margin-top: 30px;
  padding: 10px 20px;
    background-color: black;
    color: white;
    border-radius: 20px;
} 