/*=========================================
PRODUCT FEATURES
=========================================*/

.masb-feature-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    margin-top:24px;

}

.masb-feature-card{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 18px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:12px;

    transition:.3s;

}

.masb-feature-card:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.masb-feature-card i{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eefaf5;

    color:#16a34a;

    font-size:18px;

    flex-shrink:0;

}

.masb-feature-card h4{

    margin:0;

    font-size:16px;

    font-weight:700;

    line-height:1.2;

}

.masb-feature-card p{

    margin:3px 0 0;

    color:#666;

    font-size:13px;

    line-height:1.3;

}
/*======================================
=    Simple Product Features Layout
======================================*/

.single-product.product-type-simple .masb-feature-grid{
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.single-product.product-type-simple .masb-feature-card{
    width:100%;
    margin:0;
}