/*==================================================
SHOP BY CATEGORY
==================================================*/

.tok-categories{

    padding:100px 0;

    background:#F8FAFC;

}

/*=========================================
HEADER
=========================================*/

.tok-category-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:40px;

    margin-bottom:50px;

}

.tok-category-heading{

    max-width:650px;

}

.tok-section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#E31E24;

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:22px;

}

.tok-category-heading h2{

    font-size:48px;

    line-height:1.15;

    color:#111827;

    margin-bottom:18px;

}

.tok-category-heading p{

    font-size:17px;

    color:#6B7280;

    line-height:1.8;

    margin:0;

}

.tok-view-all{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    font-weight:700;

    color:#0D47A1;

    transition:.3s;

    white-space:nowrap;

}

.tok-view-all i{

    color:#E31E24;

    transition:.3s;

}

.tok-view-all:hover{

    color:#E31E24;

}

.tok-view-all:hover i{

    transform:translateX(6px);

}

/*=========================================
CATEGORY ROW
=========================================*/

.tok-category-row{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:24px;

}

/*=========================================
CARD
=========================================*/

.tok-category-box{

    background:#fff;

    border:1px solid #ECEFF3;

    border-radius:22px;

    padding:28px 18px;

    text-decoration:none;

    text-align:center;

    box-shadow:0 15px 45px rgba(15,23,42,.05);

    transition:.35s;

}

.tok-category-image{

    height:150px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

}

.tok-category-image img{

    max-width:100%;

    max-height:140px;

    object-fit:contain;

    transition:.45s;

}

.tok-category-box h3{

    font-size:17px;

    font-weight:700;

    color:#111827;

    line-height:1.4;

    transition:.3s;

}

/*=========================================
HOVER
=========================================*/

.tok-category-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);

}

.tok-category-box:hover img{

    transform:scale(1.08);

}

.tok-category-box:hover h3{

    color:#E31E24;

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1200px){

    .tok-category-row{

        grid-template-columns:repeat(4,1fr);

    }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

    .tok-category-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .tok-category-heading h2{

        font-size:40px;

    }

    .tok-category-row{

        grid-template-columns:repeat(3,1fr);

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

    .tok-categories{

        padding:80px 0;

    }

    .tok-category-heading h2{

        font-size:32px;

    }

    .tok-category-heading p{

        font-size:16px;

    }

    .tok-category-row{

        grid-template-columns:repeat(2,1fr);

        gap:16px;

    }

    .tok-category-box{

        padding:20px 14px;

    }

    .tok-category-image{

        height:120px;

    }

    .tok-category-image img{

        max-height:110px;

    }

    .tok-category-box h3{

        font-size:15px;

    }

}