.shopify_collection{
    text-align: left;
}

.open_button_wrap{
    text-align: center;
}

.open_button_wrap .open_button{
    width: fit-content;
    padding: 0 40px;
    background-image: url(../img/ic_open_url_white.svg?v2);
    background-repeat: no-repeat;
    background-position: calc(100% - 16px);
    background-size: 16px;
}

.product_item {
    width: 33.3%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 4px;
    text-align: center;
}

.product_item .product_image{
    width: 100%;
    height: 200px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 6px;
}

.product_item .product_title{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
}

.product_item .product_price{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.shopify_product_list_scroller {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
    
.shopify_product_list_scroller::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.mobile_preview_mode .shopify_product_list_scroller{
    overflow-x: auto;
}

.mobile_preview_mode .shopify_product_list_view{
    width: max-content;
}

.mobile_preview_mode .product_item{
    width: 200px;
}

.mobile_preview_mode .open_button_wrap .open_button{
    width: calc(100% - 30px);
}

@media screen and (max-width: 640px){
    .shopify_product_list_scroller{
        overflow-x: auto;
    }
    
    .shopify_product_list_view{
        width: max-content;
    }
    
    .product_item{
        width: 200px;
    }
    
    .open_button_wrap .open_button{
        width: calc(100% - 30px);
    }
}