/* Wrapper containing all 3 pickers */
.picker-wrapper {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
}

/* Picker container */
.ios-picker {
    width: 33%;
    height: 350px;
    position: relative;
    background: #F3EDE7;
    background: linear-gradient(0deg,rgba(243, 237, 231, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, rgba(243, 237, 231, 1) 100%);
}

/* Scroll area (ONLY this scrolls) */
.ios-picker .picker-scroll {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 95px;
    padding-bottom: 95px;
    touch-action: pan-y;
}

.ios-picker .picker-scroll::-webkit-scrollbar {
    display: none;
}

/* FIXED highlight bar in the center */
.picker-highlight {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: 180px;
    border-top: 1px solid #E2D5C9;
    border-bottom: 1px solid #E2D5C9;
    pointer-events: none;
    z-index: 10;
}

.picker-highlight p{
    text-transform: uppercase;
    font-family: reg;
    color: #fff;
    font-size: 11px;
    position: relative;
    transform: rotate(-90deg);
    transform-origin: center;
    width: 180px;
    text-align: center;
    line-height: 20px;
    background: #ab875c;
    left: -79px;
    top: 68px;
}

/* Individual picker items */
.ios-picker-item {
    height: 110px;
    scroll-snap-align: center;
    text-align: center;
    transition: all 0.28s ease;
    opacity: 0.25;
    transform: scale(0.88);
    padding: 10px 10px;
    padding-left: 45px;
    padding-right: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Unselected shows ONLY name */
.ios-picker-item .title {
    font-size: 25px;
    font-family: med;
}

.ios-picker-item .alias,
.ios-picker-item .desc {
    display: none;
}

/* Selected item (middle) */
.ios-picker-item.selected {
    opacity: 1;
    transform: scale(1.03);
}

.ios-picker-item.selected .title {
    font-size: 30px;
    font-family: med;
    color: #ab875c;
    line-height: 30px;
    margin-bottom: 5px;
    text-align: left;
}

/* Only selected item shows alias + description */
.ios-picker-item.selected .alias,
.ios-picker-item.selected .desc {
    display: block;
}

.ios-picker-item.selected .desc {
    margin-top: 10px;
}

.ios-picker-item .alias {
    font-size: 12px;
    text-transform: uppercase;
    font-family: reg;
    letter-spacing: 5px;
    text-align: left;
}

.ios-picker-item .desc {
    font-size: 11px;
    line-height: 1.3em;
    color: #707070;
    padding: 0;
    font-family: body;
    text-align: left;
}

/* Optional soft blur */
.ios-picker-item:not(.selected) {
    filter: blur(0.2px);
}

form{
    margin: 0;
    margin-bottom: 50px;
}

button, a.button{
    color: #ab875c;
    background: #FFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(243, 237, 231, 1) 100%);
    font-family: med;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #ab875c;
    font-size: 20px;
    padding: 30px 45px 20px;
    text-decoration: none;
}