.banner7__container_mini3 {
    display: flex;
    gap: 3px;
    margin-top: 10px;
    padding: 4px 6px;
    background: #2D2625;
    border-radius: 24px;
    width: min-content;
}

.banner7__color {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.banner7__color:hover {
    transform: scale(1.1);
}

.banner7__color1 {
    background: #C5AF97;
}

.banner7__color2 {
    background: #FFC680;
}

.banner7__color3 {
    background: #CCCCCC;
}

.banner7__color4 {
    background: #6B6463;
}

/* Галочка и выделение */
.banner7__color.selected::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    background: url('../../img/banner7/check.svg') no-repeat center;
    background-size: contain;
}

.banner7__color.selected {
    border: 2px solid #ffffff;
}