.variantproducts-wrap{
    margin:30px 0 35px;
}

.variantproducts-box{
    background:#f6f6f6;
    border:1px solid #e7e7e7;
    border-radius:24px;
    overflow:hidden;
}

.variantproducts-heading{
    padding:18px 20px;
    border-bottom:1px solid #e7e7e7;
    text-align:center;
    font-size:26px;
    font-weight:800;
    color:#4a4a4a;
    text-transform:uppercase;
}

.variantproducts-grid-wrap{
    overflow-x:auto;
    overflow-y:hidden;
    padding:18px;
}

.variantproducts-grid{
    display:flex;
    gap:24px;
    flex-wrap:nowrap;
    min-width:max-content;
}

.variant-item{
    width:212px;
    flex:0 0 212px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;
    box-shadow:none;
}

.variant-item__title{
    padding:16px 12px;
    height:56px;
    text-align:center;
    font-size:16px;
    font-weight:700;
    color:#666;
    line-height:1.25;
    display:flex;
    align-items:center;
    justify-content:center;
}

.variant-item__image{
    display:block;
    height:126px;
    background:#fafafa;
    border-top:1px solid #f0f0f0;
    border-bottom:1px solid #f0f0f0;
}

.variant-item__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.variant-item__price-wrap{
    padding:10px 12px 12px;
    text-align:center;
    min-height:68px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.variant-item__price-old{
    font-size:14px;
    color:#c7bdb7;
    text-decoration:line-through;
    line-height:1.1;
    margin-bottom:4px;
}

.variant-item__price{
    font-size:24px;
    font-weight:500;
    color:#f3a791;
    line-height:1.1;
}

.variant-item__qty{
    display:grid;
    grid-template-columns:76px 1fr 38px;
    height:52px;
    border-top:1px solid #ededed;
    overflow:hidden;
}

.variant-item__qty-label,
.variant-item__qty-input{
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
}

.variant-item__qty-label{
    background:#fafafa;
    color:#999;
    font-size:13px;
    font-weight:500;
}

.variant-item__qty-input{
    width:100%;
    border:0;
    border-left:1px solid #ededed;
    border-right:1px solid #ededed;
    text-align:center;
    font-size:18px;
    color:#444;
    background:#fff;
    padding:0;
    margin:0;
    outline:none;
}

.variant-item__qty-actions{
    display:flex;
    flex-direction:column;
    height:52px;
    overflow:hidden;
}

.variant-item__qty-actions button{
    flex:1 1 50%;
    height:26px;
    min-height:26px;
    max-height:26px;
    border:0;
    background:#fafafa;
    color:#666;
    font-size:22px;
    line-height:1;
    padding:0;
    margin:0;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
}

.variant-item__qty-actions button + button{
    border-top:1px solid #ededed;
}

.variant-item.is-main .variant-item__qty-input{
    font-weight:700;
    color:#111;
}

@media (max-width:767px){
    .variantproducts-heading{
        font-size:20px;
        padding:14px;
    }

    .variantproducts-grid{
        gap:12px;
    }

    .variantproducts-grid-wrap{
        padding:12px;
    }

    .variant-item{
        width:180px;
        flex:0 0 180px;
    }

    .variant-item__title{
        height:52px;
        font-size:14px;
    }

    .variant-item__image{
        height:105px;
    }

    .variant-item__price{
        font-size:20px;
    }

    .variant-item__qty{
        grid-template-columns:64px 1fr 34px;
        height:48px;
    }

    .variant-item__qty-label,
    .variant-item__qty-input{
        height:48px;
    }

    .variant-item__qty-label{
        font-size:12px;
    }

    .variant-item__qty-actions{
        height:48px;
    }

    .variant-item__qty-actions button{
        height:24px;
        min-height:24px;
        max-height:24px;
        font-size:20px;
    }
}