  h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }

  .product-gridpl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
  }

  .product-cardpl {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s ease;
  }

  .product-cardpl:hover {
    transform: translateY(-5px);
  }

  .product-cardpl img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  .product-namepl {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
  }

  .pricepl {
    color: #27ae60;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .featurespl {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    margin-bottom: 12px;
    color: #555;
  }

  .featurespl li {
    margin: 5px 0;
  }

  .buy-buttonpl {
    width: 100%;
    padding: 10px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }
  .buy-buttonpl a{
    color: white;
  }

  .buy-buttonpl:hover {
    background: #2980b9;
  }

  .info-iconpl {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, #f5a002, #ddac43);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    color: #333;
    cursor: pointer;
  }

  .tooltippl {
    display: none;
    position: absolute;
    top: 40px;
    right: 10px;
    background: #333;
    color: white;
    padding: 10px;
    border-radius: 10px;
    width: 200px;
    font-size: 13px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .info-iconpl:hover + .tooltippl {
    display: block;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .product-gridpl {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .product-gridpl {
      grid-template-columns: 1fr;
    }
  }