/* Multi-step Visibility */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Color Picker & Swatches */
.color-picker-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-picker-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.color-swatch {
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.color-picker-item input:checked~.color-swatch {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px currentColor;
}

/* Property Dropdown (Shared) */
.custom-search-dropdown {
    position: absolute;
    z-index: 1060;
    width: 100%;
    background: #fff;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none;
}