.mmc-products-section{
    padding:70px 20px;
    background:#F8F6F2;
}

.mmc-section-heading{
    max-width:900px;
    margin:0 auto 34px;
    text-align:center;
}

.mmc-section-heading h2{
    margin:0 0 10px;
    font-size:38px;
    color:#1E3A5F;
}

.mmc-section-heading p{
    margin:0;
    color:#5F6470;
    font-size:17px;
}

.mmc-products-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.mmc-product-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
}

.mmc-product-image{
    display:block;
    aspect-ratio:1 / 1;
    background:#eee;
    overflow:hidden;
}

.mmc-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .25s ease;
}

.mmc-product-card:hover .mmc-product-image img{
    transform:scale(1.04);
}

.mmc-product-content{
    padding:20px;
}

.mmc-product-content h3{
    margin:0 0 10px;
    font-size:18px;
    line-height:1.25;
}

.mmc-product-content h3 a{
    color:#1E3A5F;
    text-decoration:none;
}

.mmc-product-price{
    font-size:20px;
    font-weight:800;
    color:#9A6A2F;
    margin-bottom:14px;
}

.mmc-product-targets{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:18px;
}

.mmc-product-target{
    display:inline-flex;
    align-items:center;
    padding:7px 12px;
    border-radius:999px;
    background:#F8F6F2;
    border:1px solid rgba(154,106,47,.28);
    color:#9A6A2F;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.mmc-product-target:hover{
    background:#9A6A2F;
    color:#ffffff;
}

.mmc-product-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:13px 18px;
    border-radius:999px;
    background:#1E3A5F;
    color:#ffffff;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    transition:all .25s ease;
}

.mmc-product-link:hover{
    background:#9A6A2F;
    color:#ffffff;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .mmc-products-section{
        padding:48px 0 48px 18px;
    }

    .mmc-section-heading{
        text-align:left;
        padding-right:18px;
        margin-bottom:24px;
    }

    .mmc-section-heading h2{
        font-size:28px;
    }

    .mmc-section-heading p{
        font-size:15px;
    }

    .mmc-products-grid{
        display:flex;
        gap:16px;
        overflow-x:auto;
        padding-right:18px;
        scroll-snap-type:x mandatory;
    }

    .mmc-product-card{
        min-width:250px;
        scroll-snap-align:start;
    }
    
    .mmc-products-footer{

    margin-top:30px;

    text-align:center;

}

.mmc-products-more{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:14px 26px;

    border:2px solid #1E3A5F;

    border-radius:999px;

    color:#1E3A5F;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.mmc-products-more:hover{

    background:#1E3A5F;

    color:#ffffff;

}
}