body.ci-img-crop-open {
    overflow: hidden;
}

.ci-img-crop {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(29, 20, 8, 0.55);
}

.ci-img-crop[hidden] {
    display: none !important;
}

.ci-img-crop__dialog {
    width: min(760px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    background: #fbf6ea;
    border: 1px solid #e4d7b4;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(29, 20, 8, 0.28);
    color: #1d1408;
}

.ci-img-crop__head {
    padding: 18px 20px 8px;
}

.ci-img-crop__head h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ci-img-crop__head p {
    margin: 0;
    font-size: 13px;
    color: #6b540a;
}

.ci-img-crop__stage {
    position: relative;
    margin: 12px 20px;
    height: min(52vh, 420px);
    background: #efe4c8;
    border-radius: 12px;
    overflow: hidden;
}

.ci-img-crop__stage img {
    display: block;
    max-width: 100%;
}

.ci-img-crop__stage .cropper-container {
    max-width: 100%;
}

.ci-img-crop__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 0 20px 8px;
}

.ci-img-crop__ratios {
    display: flex;
    gap: 6px;
}

.ci-img-crop__ratios button,
.ci-img-crop__icon-btn {
    border: 1px solid #d6c897;
    background: #fff;
    color: #4a3728;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.ci-img-crop__ratios button.is-active {
    background: linear-gradient(135deg, #d6c897 0%, #b69a3a 100%);
    color: #1d1408;
    border-color: #b69a3a;
}

.ci-img-crop__zoom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ci-img-crop__zoom span {
    font-size: 12px;
    font-weight: 600;
    color: #6b540a;
}

.ci-img-crop__zoom .ci-img-crop__icon-btn {
    min-width: 34px;
    padding: 6px 0;
    font-size: 16px;
    line-height: 1;
}

.ci-img-crop__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 12px 20px 18px;
}

.ci-img-crop__btn {
    border: 0;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.ci-img-crop__btn--ghost {
    background: transparent;
    color: #4a3728;
    border: 1px solid #d6c897;
}

.ci-img-crop__btn--gold {
    background: linear-gradient(135deg, #d6c897 0%, #b69a3a 100%);
    color: #1d1408;
    box-shadow: 0 6px 14px rgba(182, 154, 58, 0.22);
}

.ci-img-crop__btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

@media (max-width: 640px) {
    .ci-img-crop__stage {
        height: 42vh;
        margin: 8px 12px;
    }

    .ci-img-crop__head,
    .ci-img-crop__tools,
    .ci-img-crop__actions {
        padding-left: 12px;
        padding-right: 12px;
    }
}
