.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }
  
  .product-card {
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  
  
  .product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }
  
  
  .price-info {
    display: block;
    width: 100%;
    background-color: #e74c3c;
    color: rgb(0, 0, 0);
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: 600;          /* ضخامت فونت */
    font-size: 16px;           /* سایز فونت */
    font-family: 'Tahoma', 'Verdana', 'Arial', sans-serif;  /* فونت مناسب و خوانا */
    text-align: center;
    border: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  .price-info:hover,
  .price-info:focus,
  .price-info:active {
    background-color: rgb(35, 35, 35);
    color: white;
    border: 1px solid yellow;
    outline: none;
  }
  div{
      border: 2px solid black;
  }
  a:hover{
      color: gray;
  }
  h2:hover{
      color: gray;
  }
  @media (max-width: 768px) {
    .product-card {
      width: 80%;
    }
  }
  @media (max-width: 300px) {
    .product-card {
      width: 100%;
    }
  }