/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 999;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
}

/* Popup Box */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 220px;
  height: 90px;
  background-color: #ffffff;
  color: #333;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 15px;
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 999;
  font-family: Arial, sans-serif;
}

.whatsapp-popup .popup-icon {
  font-size: 30px;
  color: #25D366;
}

.whatsapp-popup p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}
 .products {
   padding: 50px 0;
   background: #f9f9f9;
}

.products h1 {
   text-align: center;
   font-size: 36px;
   margin-bottom: 30px;
   font-weight: 700;
}

.filter-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   margin-bottom: 30px;
}

.filter-bar input[type="text"],
.filter-bar select {
   padding: 10px;
   border: 1px solid #ccc;
   border-radius: 6px;
   width: 250px;
}

.product-card {
   background: #fff;
   border: 1px solid #ddd;
   border-radius: 10px;
   overflow: hidden;
   margin-bottom: 25px;
   transition: all 0.3s ease;
}

.product-card:hover {
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-img {
   position: relative;
}

.product-img img {
   width: 100%;
   height: 250px;
   object-fit: cover;
}

.product-img .action-icons {
   position: absolute;
   top: 10px;
   right: 10px;
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.product-img .action-icons button,
.product-img .action-icons a {
   background: #fff;
   border: none;
   padding: 8px;
   border-radius: 50%;
   color: #333;
   font-size: 14px;
   text-decoration: none;
   transition: all 0.3s;
}

.product-img .action-icons button:hover,
.product-img .action-icons a:hover {
   background: #007bff;
   color: #fff;
}

.product-details {
   padding: 15px;
   text-align: center;
}

.product-details h5 {
   font-size: 18px;
   margin-bottom: 10px;
   font-weight: 600;
}

.product-details .price {
   color: #007bff;
   font-size: 16px;
   margin-bottom: 10px;
}

.product-details .qty-wrap {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-bottom: 10px;
}

.product-details .qty-wrap input {
   width: 60px;
   padding: 5px;
   text-align: center;
}

.product-details .btn {
   padding: 6px 15px;
}

.empty {
   font-size: 20px;
   color: #999;
   text-align: center;
   padding: 20px;
}
