.product-container{
    width: 100%;
    display: grid;
    /* gap: 2rem; */
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    height: 100%;
    overflow: hidden;
}

.product{
    position: relative;

}

.product img{
    max-width:100%;
    height: 100%;
    object-fit:cover;

}


.product--desc{
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    height: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.product--name{
    font-size: 30px;
    color: white;
    text-align: center;
}


.product--slogan{
    display: block;
    color: #fff;
    margin-bottom: 1rem;
}

.trade--cta{
    text-decoration:none ;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    padding: 1rem;
    border-radius: 0.5rem;
}