.category-banner-section {
    padding: 0 0 10px
}

.product-concern-section .product-concern-img-wrapper image-element {
    text-align: center
}

.category-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    overflow: hidden
}

.js-sort-select {
    background: #f0f5ff;
    color: #e3a6ab;
    border-color: #e3a6ab;
    border-radius: 20px;
    padding: 4px 10px;
    cursor: pointer;
    color: #9bbced;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s
}

.category-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.category-banner__content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 35px 40px;
    max-width: 420px;
    margin-left: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05)
}

.category-banner__title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 12px
}

.category-banner__desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0
}

@media (max-width:991px) {
    .products-sort-select {
        display: none
    }

    .category-banner {
        min-height: 300px
    }

    .category-banner__content {
        margin-left: 30px;
        padding: 25px
    }
}

@media (max-width:768px) {
    .category-banner-section {
        padding: 0
    }

    .category-banner {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        background-color: #e8eef3
    }

    .category-banner__bg {
        position: relative;
        width: 100%;
        height: 280px;
        object-fit: cover
    }

    .category-banner__content {
        position: relative;
        margin: 0;
        margin-top: -20px;
        margin: 0 15px 15px 15px;
        max-width: 100%;
        padding: 14px 20px;
        text-align: center;
        box-shadow: none
    }

    .category-banner__title {
        font-size: 19px;
        margin-bottom: 0
    }

    .category-banner__desc {
        font-size: 14px
    }
}

.product-concern-section {
    padding: 20px 0;
    font-family: inherit;
    box-sizing: border-box
}

.product-concern-section .product-concern-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none
}

.product-concern-section .product-concern-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease
}

.product-concern-section .product-concern-item:hover {
    transform: translateY(-5px)
}

.product-concern-section .product-concern-img-wrapper {
    border-radius: 50%;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden
}

.product-concern-section .product-concern-image {
    width: 100%;
    height: auto;
    object-fit: contain
}

.product-concern-section .product-concern-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #333;
    line-height: 1.3
}

@media (max-width:1024px) {
    .product-concern-section .product-concern-img-wrapper {
        width: 140px;
        height: 140px
    }
}

@media (max-width:768px) {
    .product-concern-section .product-concern-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px
    }

    .product-concern-section .product-concern-item {
        min-width: auto
    }

    .product-concern-section .product-concern-img-wrapper {
        width: 110px;
        height: 110px;
        margin-bottom: 12px
    }

    .product-concern-section .product-concern-title {
        font-size: 13px
    }
}

@media (max-width:480px) {
    .product-concern-section .product-concern-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 5px
    }

    .product-concern-section .product-concern-img-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 8px
    }

    .product-concern-section .product-concern-title {
        font-size: 12px
    }
}