/* ===== STEP 1 LAYOUT ===== */

.customizer-step {
    margin-top: 5vh;
}

.person-block {
    margin-bottom: 5vh;
}

.person-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.drop-zone {
    width: 25vw;
    height: 25vw;
    max-width: 320px;
    max-height: 320px;
    border: 3px dashed #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fafafa;
    margin-bottom: 15px;
}

.drop-zone.dragover {
    border-color: #000;
    background: #f0f0f0;
}

.drop-zone span {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* previews */
.preview-row {
    display: flex;
    gap: 10px;
}

.preview-row img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* NEXT button */
#customizer-next {
    margin-top: 5vh;
    padding: 18px 28px;
    font-size: 20px;
    font-weight: bold;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0.4;
}

#customizer-next.enabled {
    opacity: 1;
    cursor: pointer;
}
#customizer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#customizer-panel {
    background: #0e0e0e;
    color: #cfcfcf;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

/* Headings */
#customizer-panel h1 {
    color: #e4e4e4;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Body text */
#customizer-panel p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 15px;
}

/* Close button */
#customizer-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 26px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
}
#customizer-close:hover {
    color: #fff;
}
