/* ==========================================================================
   Custom featured categories — compact arch-shaped grid (Meesho/Myntra-style)
   Loaded after style-1.8.min.css so these rules take priority over the
   original .card-columns masonry layout for this section.
   ========================================================================== */

.featured-categories .card-columns {
    display: none;
}

.featured-categories-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px 18px;
    padding: 6px 0 22px;
}

.featured-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 128px;
    text-decoration: none;
}

.featured-category-img-wrap {
    width: 118px;
    height: 146px;
    border-radius: 59px 59px 10px 10px;
    background-color: #f7edf3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-category-img-wrap i {
    font-size: 26px;
    color: #c9a9bd;
}

.featured-category-name {
    display: block;
    margin-top: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #222;
    text-align: center;
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .featured-categories-row {
        gap: 20px 12px;
    }

    .featured-category-item {
        width: 96px;
    }

    .featured-category-img-wrap {
        width: 88px;
        height: 110px;
        border-radius: 44px 44px 8px 8px;
    }

    .featured-category-name {
        font-size: 12.5px;
        max-width: 96px;
    }
}
