 @media (min-width: 350px) and (max-width: 575px) {
        .category-card {
            width: 320px;
            margin: 0px auto 30px;
        }
    }

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

    .category-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
        transition: .35s;
        margin-bottom: 30px;
    	padding: 0px !important;
        border: 1px solid #ececec;
    }

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
    }

    /*=====================================
ALL CATEGORY TITLE
======================================*/

    .section-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 18px;
    }

    .section-heading h2 {
        margin: 0;
        font-size: 56px;
        font-weight: 800;
        color: #1f2937;
        line-height: 1;
    }

    .heading-line {
        width: 42px;
        height: 3px;
        background: #2f80ff;
        border-radius: 50px;
    }

    .heading-dot {
        width: 8px;
        height: 8px;
        background: #2f80ff;
        border-radius: 50%;
    }

    .section-subtitle {
        font-size: 22px;
        color: #6b7280;
        margin: 0;
        font-weight: 400;
    }

    /* Tablet */

    @media(max-width:991px) {

        .section-heading h2 {
            font-size: 42px;
        }

        .section-subtitle {
            font-size: 18px;
        }

    }

    /* Mobile */

    @media(max-width:576px) {

        .section-heading {
            gap: 10px;
        }

        .heading-line {
            width: 28px;
        }

        .heading-dot {
            width: 6px;
            height: 6px;
        }

        .section-heading h2 {
            font-size: 32px;
        }

        .section-subtitle {
            font-size: 15px;
            line-height: 1.6;
            padding: 0 15px;
        }

    }

    /*--------------------------
HEADER
--------------------------*/

    .category-head {
        position: relative;
        height: 240px;
        overflow: hidden;
    }

    .category-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .category-card:hover .category-cover {
        transform: scale(1.08);
    }

    .category-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(0, 0, 0, .80),
                rgba(0, 0, 0, .20));
    }

    .category-head-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 5;
        padding: 20px;
        text-align: center;
    }

    .category-icon {
        width: 65px;
        height: 65px;
        background: #2f80ff94;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        box-shadow: 0 10px 30px rgba(47, 128, 255, .45);
    }

    .category-head h4 {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    /*--------------------------
SUB CATEGORY LIST
--------------------------*/

    .product-widget-form {
        padding: 0;
    }

    .category-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .category-list li {
        border-bottom: 1px solid #f2f2f2;
    }

    .category-list li:last-child {
        border-bottom: none;
    }

    .category-list li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px;
        text-decoration: none;
        transition: .3s;
    }

    .category-list li a:hover {
        background: #f7fbff;
    }

    .category-list-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #edf5ff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2f80ff;
        flex-shrink: 0;
    }

    .category-list h6 {
        flex: 1;
        margin: 0;
        color: #333;
        font-size: 12px;
        font-weight: 600;
    }


    /*--------------------------
BUTTON
--------------------------*/

    .view-post-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 5px 10px;
        border-radius: 50px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .9);
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        transition: .3s;
        background: rgba(255, 255, 255, .10);
    }

    .view-post-btn:hover {
        background: #fff;
        color: #222;
    }

    .view-post-btn i {
        transition: .3s;
    }

    .view-post-btn:hover i {
        transform: translateX(5px);
    }

    /*--------------------------
RESPONSIVE
--------------------------*/

    @media(max-width:991px) {

        .category-head {
            height: 210px;
        }

        .category-head h4 {
            font-size: 22px;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            font-size: 22px;
        }

    }

    @media(max-width:576px) {

        .category-head {
            height: 190px;
        }

        .category-head h4 {
            font-size: 20px;
        }

        .category-list h6 {
            font-size: 12px;
        }

        .view-post-btn {
            font-size: 14px;
            padding: 8px 18px;
        }

    }

    /*=====================================
BOTTOM CTA
======================================*/

    .category-bottom {
        background: #fff;
        border-radius: 20px;
        padding: 45px 30px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
        border: 1px solid #ececec;
    }

    .category-bottom-title {
        font-size: 30px;
        font-weight: 700;
        color: #222;
        margin-bottom: 12px;
    }

    .category-bottom-text {
        color: #6c757d;
        font-size: 17px;
        margin-bottom: 30px;
    }

    .category-bottom-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 16px 34px;
        background: #2f80ff;
        color: #fff;
        border-radius: 60px;
        text-decoration: none;
        font-size: 17px;
        font-weight: 600;
        transition: .35s;
        box-shadow: 0 10px 25px rgba(47, 128, 255, .35);
    }

    .category-bottom-btn:hover {
        background: #1f6fe8;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

    .category-bottom-btn i:last-child {
        transition: .35s;
    }

    .category-bottom-btn:hover i:last-child {
        transform: translateX(6px);
    }

    @media(max-width:768px) {

        .category-bottom {
            padding: 30px 20px;
        }

        .category-bottom-title {
            font-size: 22px;
        }

        .category-bottom-text {
            font-size: 15px;
        }

        .category-bottom-btn {
            width: 100%;
            justify-content: center;
            font-size: 15px;
            padding: 14px 20px;
        }

    }