.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    .thumbnail{
        width: auto;
        aspect-ratio: 1/1.3;
        overflow: hidden;
        height: auto;
        background: #EEEEEE;
        img{
            object-fit: cover;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        img:hover{
            transform: scale(1.2);
        }
    }
    .ft{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        h6{
            flex: none;
            font-weight: 400;
            font-size: 1.1rem;
            margin: 0;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1;
        }
        button{
            flex: 1;
            width: 100%;
            height: fit-content;
            padding: 3px auto;
            text-transform: uppercase;
            font-size: 0.7rem;
            cursor: pointer;
        }
    }
}