.products-container h2{
    backdrop-filter: blur(50px);
    padding: 0.8rem;
}

.product {
    flex: 1;
    text-align: center;
    margin: 20px;
    padding: 20px;
    max-width: 300px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 500px;
    color: inherit;
}

.product:hover {
    transform: scale(1.1);
}

.product-info {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    position: absolute;
    bottom: -40%;
    left: 0;
    right: 0;
    transition: bottom 0.3s ease;
    height: 250px;
}

.product-title {
    font-size: 2.4rem;
    margin-bottom: 1.0rem;
}

.product-price {
    font-size: 3.0rem;
    font-weight: bold;
    margin-bottom: 2.0rem;
}

.product-desc {
    font-size: 2.0rem;
}

.product-info p {
    visibility: hidden;
}

.product:hover .product-info {
    bottom: 0;
}

.product:hover .product-info p {
    visibility: visible;
}
