/* ==========================================
   CATEGORY SECTION
========================================== */

.categories{
    padding:20px 16px;
}

/* ==========================================
   SECTION TITLE
========================================== */

.categories .section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.categories .section-title h2{
    font-size:26px;
    font-weight:700;
    color:#111827;
}

/* ==========================================
   CATEGORY GRID
========================================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:16px;
}

/* ==========================================
   CATEGORY CARD
========================================== */

.category-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:18px;
    padding:16px 12px;

    text-align:center;
    text-decoration:none;
    color:#222;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.category-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.category-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:10px;
}

.category-card span{
    font-size:14px;
    font-weight:600;
    line-height:20px;
    word-break:break-word;
}