#pizza-preview-section {
    width: 100%;
    /* background: #0a0a0a; */
}

#leftScroller {
    margin-left: 50px;
    pointer-events: auto;
}

#rightScroller {
    margin-left: -100px;
    pointer-events: auto;
}

.pickers-wrapper {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 30px;
    pointer-events: none;
}

.picker-column {
    position: relative;
    width: 150px;
    height: 600px;
    /* border-radius: 12px; */
    overflow: hidden;
}

.picker-scroller {
    width: 200px;
    height: 300px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

/* Hide scrollbar */
.picker-scroller::-webkit-scrollbar {
    display: none;
}

.picker-scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.spacer {
    flex-shrink: 0;
    height: 150px;
}

.picker-item {
    flex-shrink: 0;
    height: 100px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 150ms ease;
    opacity: 0.5;
}

.picker-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.pizza-half {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pizza-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pizza-half.left {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.pizza-half.right {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Fade mask overlay for 2.5 view effect */
.picker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 1) 0%,
            rgba(10, 10, 10, 0) 25%,
            rgba(10, 10, 10, 0) 75%,
            rgba(10, 10, 10, 1) 100%);
}

.selection-display {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: -300px;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.select-random {
    cursor: pointer;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition)
}

.selected-pizza {
    text-align: center;
}

.selected-pizza label {
    display: block;
    font-size: 12px;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-pizza-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

@media (max-width: 600px) {
    .spacer {
        height: 125px;
    }

    .picker-item {
        height: 200px;
        width: 200px;
    }
}