/* ========================================
   STEP IMAGE UPLOAD ZONES
   ======================================== */

.step-image-upload-zone {
    position: relative;
    width: 100%;
    min-height: 200px;
    border: 2px dashed rgba(15, 23, 42, 0.18);
    border-radius: var(--radius-2);
    background: rgba(15, 23, 42, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s4);
}

.step-image-upload-zone:hover {
    border-color: var(--primary);
    background: rgba(39, 174, 96, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.1);
}

.step-image-upload-zone.drag-over {
    border-color: var(--primary);
    background: rgba(39, 174, 96, 0.10);
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.step-upload-content {
    text-align: center;
    padding: var(--s7);
    pointer-events: none;
}

.step-upload-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--s3);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.step-image-upload-zone:hover .step-upload-content i {
    opacity: 1;
    transform: scale(1.1);
}

.step-upload-content p {
    font-size: var(--fs-1);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--s2);
}

.step-upload-content small {
    font-size: var(--fs-0);
    color: var(--text-3);
    display: block;
}

/* Step Image Preview */
.step-image-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2);
}

.step-image-preview.hidden {
    display: none;
}

/* Remove Step Image Button */
.remove-step-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(231, 76, 60, 0.95);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    z-index: 10;
}

.remove-step-image-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.remove-step-image-btn i {
    font-size: 1.3rem;
}

.remove-step-image-btn.hidden {
    display: none;
}