 body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    padding: 30px;
  }

  h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 250px;
    margin: auto;
  }

  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  .product-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
  }

  .product-card p {
    font-size: 14px;
    color: #666;
  }

  .product-card .price {
    color: #333;
    font-weight: bold;
    margin-top: 5px;
  }

  .product-card button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .product-card button:hover {
    background: #218838;
  }

  .swiper {
    width: 100%;
    padding: 30px 0;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
  }
