.product {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    height: 375px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.product:last-child {
    margin-right: 0;
}


.product:hover {
    transform: translateY(-3px);
}

.product-img {
    display: block;
    width: 100%;
    height: 75%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-name, .product-price,.product-brand{
    position: relative;
    left: 5px;
}


.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #333;
    margin: 10px 20px 5px;
}

.product-brand {
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777;
    margin: 0 20px 10px;
}

.product-price{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #e91e63;
    margin: 0 20px 20px;
}
