.crop-modal {
    display: none; position: fixed; inset: 0; background: rgba(20, 12, 8, 0.72);
    z-index: 999; align-items: center; justify-content: center; padding: 20px;
    backdrop-filter: blur(2px);
}
.crop-modal.open { display: flex; }
.crop-modal-box {
    background: white; border-radius: 20px; padding: 22px; max-width: 560px; width: 100%;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.crop-modal-box h3 { margin: 0 0 4px; font-family: 'Poppins', sans-serif; font-size: 17px; }
.crop-modal-box p { margin: 0 0 14px; font-size: 12.5px; color: #8A7666; }
.crop-modal-imgwrap { max-height: 55vh; overflow: hidden; background: #111; border-radius: 12px; }
.crop-modal-imgwrap img { display: block; max-width: 100%; }
.crop-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
