/*============================================================================================
   Start Category Area
=============================================================================================*/
.category.style-9 .category-section-head h3 {
    font-size: 30px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--title-color);
}
.category.style-9 .category-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category.style-9 .category-card,
.category.style-9 .category-card img {
    border-radius: 24px;
    transition: all 0.3s ease;
    height: 232px;
}

.category.style-9 .category-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: all 0.3s ease;
}
.category.style-9 .category-img:hover img {
    transform: scale(1.04);
}

.category.style-9 .category-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.category.style-9 .category-info p {
    background: var(--white-color);
    padding: 10px 32px;
    font-size: 16px;
    color: var(--title-color);
    border-radius: 32px;
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.category.style-9 .category-img:hover .category-info p {
    background: var(--primary-color);
    color: var(--white-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category.style-9 .category-card,
    .category.style-9 .category-card img {
        height: auto;
    }

    .category.style-9 .category-info p {
        padding: 4px 16px;
        font-size: 14px;
    }
    .category.style-9 .category-info {
        bottom: 12px;
        left: 12px;
    }

    .category.style-9 .category-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .category.style-9 .category-section-head h3 {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .category.style-9 .category-card,
    .category.style-9 .category-card img {
        height: auto;
    }
    .category.style-9 .category-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category.style-9 .category-section-head h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .category.style-9 .category-img {
        border-radius: 16px;
    }

    .category.style-9 .category-info p {
        padding: 6px 16px;
        font-size: 12px;
    }

    .category.style-9 .category-info {
        bottom: 12px;
        left: 12px;
    }

    .category.style-9 .category-card,
    .category.style-9 .category-card img {
        border-radius: 16px;
    }
}

/*============================================================================================
   End Category Area
=============================================================================================*/
