.essb-fence-picker {
    text-align: center;
}

.essb-main-image {
    max-width: 100%;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.essb-color-item {
    width: 45px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #F0F2F6;
    transition: 0.3s;
}

.essb-color-item.active {
    border-color: #333;
    transform: scale(1.1);
}

/* Groupe */
.essb-color-group {
    margin-bottom: 16px;
}

.essb-color-group-title {
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.essb-color-options {
    display: grid;
    grid-template-columns: repeat(var(--repeater-count, 1), 1fr);
    gap: 10px;
    align-items: start;
}

.essb-color-label {
    margin-top: 8px;
    text-align: center;
    max-width: 100px;
    white-space: normal;
    line-height: 1.2;
    word-break: keep-all;
}

.essb-color-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .essb-color-options {
        grid-template-columns: repeat(2, 1fr);
    }
}