/* =========================
   Modal Component
========================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(47, 42, 36, 0.48);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9998;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    width: min(520px, calc(100% - 40px));
    background: #fffdf8;
    border: 1px solid #eadcc8;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.modal-header {
    margin-bottom: 18px;
}

.modal-title {
    margin: 0;
    font-size: 24px;
    color: #2f2a24;
}

.modal-description {
    margin: 10px 0 0;
    color: #7b6b58;
    line-height: 1.6;
}

.modal-content {
    margin: 22px 0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}