/* ===================================
        CATEGORY SECTION
=================================== */

.category-section{
    padding:90px 0;
    background:#fffdf8;
}

.category-title{
    text-align:center;
    margin-bottom:60px;
}

.category-title h2{
    font-size:42px;
    font-weight:700;
    color:var(--text);
}

.category-title p{
    color:#777;
    font-size:18px;
}

.category-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.category-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.category-body{
    padding:25px;
    text-align:center;
}

.category-body h4{
    font-weight:700;
    margin-bottom:10px;
}

.category-body p{
    color:#777;
    min-height:60px;
}

.btn-category{
    background:var(--primary);
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
}

.btn-category:hover{
    background:var(--primary-dark);
    color:#fff;
}