.lp-fb948072-wrapper {
    width: 100%;
    position: relative;
    padding: 60px 0 20px 0; /* More padding top for cursor and labels */
}

.lp-fb948072-track-container {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    touch-action: none;
}

.lp-fb948072-track-line {
    position: absolute;
    width: 100%;
    height: 8px; /* Slightly thicker */
    background-color: #f0f0f0;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.lp-fb948072-progress-fill {
    position: absolute;
    width: 0%;
    height: 8px;
    background-color: #ff4500; /* Zhou Dumpling style color */
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.1s linear;
}

.lp-fb948072-steps {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.lp-fb948072-step-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #f0f0f0;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

/* Filled state for dots */
.lp-fb948072-step-dot.is-active {
    border-color: #ff4500;
    background-color: #ff4500;
}

.lp-fb948072-step-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 800;
    color: #333;
    pointer-events: none;
    font-family: inherit;
}

.lp-fb948072-cursor {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%); /* Center on the line */
    z-index: 4;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -30px;
    transition: left 0.1s linear;
    user-select: none;
    outline: none;
    margin-top: -30px; /* Offset to sit slightly above the line like Zhou */
}

.lp-fb948072-cursor:active {
    cursor: grabbing;
}

.lp-fb948072-cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.lp-fb948072-cursor-fallback {
    width: 100%;
    height: 100%;
    background-color: #ff4500;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.lp-fb948072-snapping .lp-fb948072-cursor,
.lp-fb948072-snapping .lp-fb948072-progress-fill {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Target Elements Default Styles */
.is-locked {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.is-unlocked {
    opacity: 1;
    filter: grayscale(0%);
    pointer-events: auto;
    transition: all 0.4s ease;
}
