.konfx-photo-crop-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--legacy-color-rgba-15-23-42-72);
}

.konfx-photo-crop-dialog {
    width: min(100%, 920px);
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    background: var(--legacy-color-hex-fff);
    border-radius: 8px;
    box-shadow: 0 24px 64px var(--legacy-color-rgba-15-23-42-28);
    overflow: hidden;
}

.konfx-photo-crop-header,
.konfx-photo-crop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--legacy-color-hex-e5e7eb);
}

.konfx-photo-crop-footer {
    justify-content: flex-end;
    border-top: 1px solid var(--legacy-color-hex-e5e7eb);
    border-bottom: 0;
}

.konfx-photo-crop-title {
    margin: 0;
    color: var(--legacy-color-hex-111827);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.konfx-photo-crop-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--legacy-color-hex-475569);
    font-size: 22px;
    line-height: 1;
}

.konfx-photo-crop-body {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
    padding: 1.5rem;
    overflow: auto;
}

.konfx-photo-crop-stage {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--legacy-color-hex-f8fafc);
    overflow: hidden;
}

.konfx-photo-crop-frame {
    position: relative;
    width: min(100%, var(--crop-frame-width, 620px));
    aspect-ratio: var(--crop-ratio, 1 / 1);
    background: transparent;
    overflow: hidden;
    cursor: grab;
    box-shadow: 0 0 0 1px var(--legacy-color-rgba-15-23-42-16);
    touch-action: none;
}

.konfx-photo-crop-frame:active {
    cursor: grabbing;
}

.konfx-photo-crop-image {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    max-height: none;
    user-select: none;
    pointer-events: none;
    transform-origin: center;
}

.konfx-photo-crop-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--legacy-color-hex-334155);
    font-size: 13px;
}

.konfx-photo-crop-controls label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.konfx-photo-crop-controls input[type=range] {
    width: 100%;
}

.konfx-photo-crop-meta {
    padding: 10px 12px;
    background: var(--legacy-color-hex-f8fafc);
    border: 1px solid var(--legacy-color-hex-e5e7eb);
    border-radius: 6px;
    color: var(--legacy-color-hex-64748b);
    line-height: 1.4;
}

@media (max-width: 760px) {
    .konfx-photo-crop-body {
        grid-template-columns: 1fr;
    }

    .konfx-photo-crop-stage {
        min-height: 240px;
    }
}
