/* Gradient start*/

.skin-tone-section {
    width: 100%;
    background-color: var(--color-grey-background);
    border-radius: 12px;
}

.skin-tone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.skin-tone-gradient {
    position: relative;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(to left, #3b2311, #f9d0a1);
    margin: 10px 0 5px;
}

.marker {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #000;
    cursor: pointer;
}

.gradient-labels {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #333;
}

.tone-images {
    display: flex;
    justify-content: left;
    gap: 8px;
}

.tone-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.tone-images img:hover {
    transform: scale(1.05);
}

.tone-images img.selected {
    border-color: #000;
}

/*Gradient end*/
