/* Category Navigation Styles */
.blog_sidebar_bottom ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog_sidebar_bottom ul li a.active {
    color: #ff0000;
}

.blog_sidebar_bottom ul li a img {
    width: 12px;
    transition: transform 0.3s ease;
}

.blog_sidebar_bottom ul li a[aria-expanded="true"] img {
    transform: rotate(90deg);
}

.blog_sidebar_bottom .collapse a {
    padding-left: 20px;
    font-size: 0.95em;
}

.blog_sidebar_bottom .collapse a img {
    width: 10px;
    margin-right: 8px;
}

.blog_sidebar_bottom .collapse a.active {
    color: #ff0000;
    background-color: rgba(255, 0, 0, 0.05);
}

/* Product Image Styles */
.category_product_img {
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category_product_img img {
    max-height: 330px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* anything below 992px width */
@media (max-width: 991px) {
    .category_banner_wrap
    {
        padding-top: 3rem;
    }
}