

   
    
    .product-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-bottom:1px solid var(--accent);
    }
    .product-card h5 {
      margin: 12px 0;
      font-size: 16px;
      font-weight: 600;
    }
    .product-actions {
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 10px 0 15px;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s;
    }
    .chip i { margin-right: 5px; }
  
  
  
  
  .products-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 40px auto;
  max-width: 1200px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers all cards */
  gap: 20px;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  width: 300px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}






/* Message Card Styling */
.message-card {
  width: 60%;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.message-card img {
  margin-bottom: 15px;
}

@media (max-width: 1000px) {
  .product-card {
    width: 90%;
  }
  .message-card {
    width: 90%;
  }
}