
    body {
      font-family: Arial, sans-serif;
      background: #f8f9fa;
    }
    .container {
      width: 90%;
      height: 50%;
      margin-left: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px,  1fr));
      gap: 20px;
    }
    .product {
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 10px;
      text-align: center;
      transition: 1s;
    }
    .product:hover {
      transform: translateY(-5px);  
    }
    .product img {
      width: 90%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
    }
    .product h3 {
      margin: 10px 0 5px;
      font-size: 18px;
      color: #333;
    }
    .product p {
      margin: 5px 0;
      color: #666;
    }
    .price {
      color: #28a745;
      font-weight: bold;
    }