/* Step 4 Refined Design */

#step4 .vertical-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    width: 100% !important;
    /* Force container width */
    align-items: stretch !important;
    /* Force items to stretch */
    box-sizing: border-box;
}

#step4 .vertical-option-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ffb6c1;
    /* Pink border */
    border-radius: 12px;
    padding: 20px !important;
    /* Force comfortable padding */
    min-height: 85px !important;
    /* Force substantial height */
    height: auto;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    width: 100% !important;
    /* Force full width */
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 12px;
}

#step4 .vertical-option-item:hover,
#step4 .vertical-option-item.selected {
    background-color: #ffe6f2;
    /* Lighter pink on hover */
    border-color: #ff1493;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#step4 .option-thumb {
    width: 65px;
    /* Slightly larger */
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 18px;
    flex-shrink: 0;
}

#step4 .option-label {
    flex-grow: 1;
    font-size: 1.25rem;
    /* Readable large text */
    font-weight: 600;
    color: #333;
    text-align: left;
}

#step4 .custom-checkbox {
    width: 26px;
    /* Larger checkbox */
    height: 26px;
    border: 2px solid #ff1493;
    border-radius: 6px;
    margin-right: 0;
    position: relative;
    background: #fff;
}

#step4 .vertical-option-item.selected .custom-checkbox {
    background: #ff1493;
}

#step4 .vertical-option-item.selected .custom-checkbox::after {
    content: '✔';
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#step4 h2 {
    margin-bottom: 30px;
}

#step4 .btn-green {
    width: 100%;
    background: linear-gradient(to right, #FF1493, #FF69B4);
    /* Pink gradient */
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    /* Larger font like other steps */
    padding: 20px;
    /* Larger padding like other steps */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    /* Pink shadow */
    transition: transform 0.2s;
}

#step4 .btn-green:hover {
    transform: scale(1.02);
    background: linear-gradient(to right, #e60073, #ff1493);
}