.krz-color-picker {
    display: flex;
    /* justify-content: center; */
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.krz-color-picker .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: rotateZ(-45deg);
}

/* Два цвета в каждом кружке */
.krz-color-picker .color-circle .color-half {
    position: absolute;
    width: 100%;
    height: 100%;
}

.krz-color-picker .color-circle .color-full{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.krz-color-picker .color-circle .half-1 {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.krz-color-picker .color-circle .half-2 {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

/* Обводка для выбранного кружка */
.krz-color-picker .color-circle.selected {
    border: 3px solid #000000;
    transform: scale(1.1) rotateZ(-45deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.krz-color-picker .color-circle:hover:not(.selected) {
    transform: scale(1.05) rotateZ(-45deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* стили для кружков в фильтрах */
.chb-text .color-circle{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotateZ(-45deg);
}

.chb-text .color-circle .color-half {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chb-text .color-circle .color-full{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.chb-text .color-circle .half-1 {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.chb-text .color-circle .half-2 {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.podbor_dch.colors .chb-standart .chb-text {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.podbor_search input#smart_search{
    border: 1px solid gray;
    border-radius: 6px;
    text-indent: 10px;
    padding: 10px;
    display: none;
    margin: 10px 0 0 0;
}

.podbor_block.cveta-tovarov .podbor_search .podrob_body .podbor_checkb>div:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)){
    display: none;
}

.js-label-more span{
    text-decoration: underline;
    color: #7a7a7a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}