/* ==========================================================
   FEATURED CATEGORIES
========================================================== */

.featured-categories{

    padding:90px 0;

    background:#ffffff;

}

.categories-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

    margin-top:50px;

}

.category-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #E6ECE4;

    transition:.35s;

    box-shadow:0 8px 24px rgba(0,0,0,.05);

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 48px rgba(0,0,0,.12);

}

.category-card-link{

    display:block;

    color:inherit;

    text-decoration:none;

}

.category-card-image{

    aspect-ratio:4/3;

    overflow:hidden;

}

.category-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.category-card:hover img{

    transform:scale(1.05);

}

.category-card-content{

    padding:24px;

}

.category-card-title{

    margin:0 0 12px;

    font-size:22px;

    font-weight:700;

}

.category-card-description{

    color:#6E766E;

    font-size:15px;

    line-height:1.7;

    min-height:52px;

}

.category-card-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

    padding-top:20px;

    border-top:1px solid #EEF2EC;

}

.category-product-count{

    font-weight:600;

    color:var(--color-brand-primary);

}

.category-arrow{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#EDF7E8;

    transition:.3s;

}

.category-card:hover .category-arrow{

    background:var(--color-brand-primary);

    color:#fff;

}