.section-btns-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-btns-wrapper__sort {
    width: 286px;
}

.section-btns-wrapper__sort-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid #EBEDF1;

    color: #5A616C;
    font-family: "Open Sans", 'sans-serif';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;

    transition: 0.3s;

    &:hover {
        border-color: #F02D39;
    }
}

.section-btns-wrapper__sort-list {
    display: none;
}

.section-btns-wrapper__sort-selected.active-open {
    border-color: #F02D39;
}

.section-btns-wrapper__sort-selected.active-open svg {
    transform: rotate(180deg);
}

.section-btns-wrapper__sort-list.open-sort-list {
    display: flex;
    flex-direction: column;
    padding: 8px 0;

    border-radius: 4px;
    border: 1px solid #EAECF0;
    background: #FFF;
    box-shadow: 0 8px 20px 0 rgba(4, 19, 43, 0.04);
    margin-top: 8px;

    position: absolute;
    z-index: 99;
    width: 286px;
}

.section-btns-wrapper__sort-item {
    padding: 16px 20px;
    transition: 0.3s;
    color: #2C2E33;
    font-family: "Open Sans", 'sans-serif';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;

    &:hover {
        color: #333;
        cursor: pointer;
        background: #F7F8F9;
    }
}

.section-btns-wrapper__views {
    display: flex;
    gap: 20px;

    color: #9299A5;
    font-family: "Open Sans", 'sans-serif';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;

    align-items: center;
}

.section-btns-wrapper__views-list {
    display: flex;
    gap: 12px;
}

.section-btns-wrapper__views-item {
    padding: 11px 16px;

    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 4px;
    border: 2px solid #EAECF0;
    transition: 0.3s;
    &:hover{
        cursor: pointer;
        border-color: #DC2520;
    }
}

.section-btns-wrapper__views-item__selected{
    border-color: #DC2520;
}

.swiper.catSecSwiper .swiper-slide .product-item-container {
    padding: 0;
    width: 100%;
    height: 100%;
    border: unset;
}

.swiper.catSecSwiper .swiper-slide .product-item-container .product-item {
    border: 1px solid #EAECF0;
}

.swiper.catSecSwiper .swiper-slide .product-item {
    padding: 20px;
}

.swiper-container {
    position: relative;
    margin-bottom: 120px;
}

.swiper-sec-btn {
    position: absolute;
    top: 52%;
    transform: translateY(-52%);
    z-index: 9;
}

.swiper-sec-btn.next {
    right: -64px;
}

.swiper-sec-btn.prev {
    left: -64px;
}

.swiper.catSecSwiper {
    height: 100% !important;
}
.swiper.catSecSwiper .swiper-slide{
    height: auto !important;
}

.swiper.catSecSwiper .swiper-wrapper {
    height: 100% !important;
}

.swiper.catSecSwiper .swiper-slide .product-item {
    box-sizing: border-box;
}

.swiper.catSecSwiper img.swiper-slide {
    object-fit: contain;
}

@media (max-width: 1350px) {
    .swiper-sec-btn.next {
        right: 0;
    }

    .swiper-sec-btn.prev {
        left: 0;
    }
}

@media (max-width: 992px) {
    .swiper-sec-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .catSecSwiper.destroyed .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .slider.product-item-container .swiper-wrapper {
        display: flex;
    }

    .slider.product-item-container .swiper-wrapper img {
        object-fit: contain;
    }

    .show-more-section-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px;
        margin-top: 24px;
        width: 100%;
        font-family: Open Sans;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #333333;
        border-radius: 4px;
        background: #F7F8F9;
        cursor: pointer;
        transition: background-color .3s ease-in-out;
    }

    .show-more-section-btn:hover {
        background: #F1F2F4;
    }

    .swiper-container {
        margin-bottom: 48px;
    }

    .detail-sec-links .detail {
        margin-bottom: 24px;
    }

    .swiper.catSecSwiper .swiper-slide .product-item {
        padding: 12px;
    }

    .swiper.swiper-card-product__images {
        max-width: 150px;
    }

    .product-item-container {
        min-width: unset;
    }
}