.product{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.3);
    width: 340px;
    height: 564px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
    background-color: #fff;
  }

  .product:hover {
    cursor: pointer;
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15), 0px 4px 6px rgba(0, 0, 0, 0.1); /* More prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
  
  .products{
    display: flex; 
    flex-direction: row; 
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px;
  }

  .products-main-title-area{
    display: flex;
    gap: 32px;
    padding-bottom: 64px;
  }

  .products-main-title{
    font-size: 64px;
    color: var(--primary-color)
  }

  .horizontal-line{
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    align-self: center;
    background-color: var(--primary-color);
    height: 5px;
  }

  @media only screen and (max-width : 768px ) {

    .products-main-title{
      font-size: 48px;
    }

    .products-main-title-area{
      gap: 16px;
    }
    }

    @media only screen and (max-width : 350px ) {

      .products{
        width: auto;
      }
      }


     