/* ==========================================================
   Nestlyra Home
   Popular Categories
   ========================================================== */

.popular-categories{
    padding:70px 0;
}

.popular-categories .section-header{
    text-align:center;
    margin-bottom:40px;
}

.popular-categories .section-title{
    margin:0;
    font-size:38px;
    font-weight:700;
    line-height:1.2;
    color:#111827;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.category-card{
    background:#ffffff;
    border-radius:22px;
    padding:34px 25px;
    text-align:center;
    text-decoration:none;
    color:#111827;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:all .35s ease;
    border:1px solid #edf2f7;
    position:relative;
    overflow:hidden;
}

.category-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2d6cdf;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.category-card:hover::before{
    transform:scaleX(1);
}

.category-icon{
    width:72px;
    height:72px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.35s;
}

.category-card:hover .category-icon{
    background:#2d6cdf;
    color:#ffffff;
    transform:rotate(8deg) scale(1.08);
}

.category-card h3{
    margin:0 0 10px;
    font-size:22px;
    font-weight:700;
    color:#111827;
    line-height:1.3;
}

.category-card span{
    display:block;
    font-size:14px;
    color:#6b7280;
}

/* Tablet */

@media (max-width:992px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .popular-categories .section-title{
        font-size:32px;
    }

}

/* Mobile */

@media (max-width:576px){

    .popular-categories{
        padding:50px 0;
    }

    .category-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .popular-categories .section-title{
        font-size:28px;
    }

    .category-card{
        padding:28px 20px;
    }

    .category-icon{
        width:64px;
        height:64px;
        font-size:28px;
    }

    .category-card h3{
        font-size:20px;
    }

}