.ackl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ackl-modal {
    background: #fff;
    border-radius: 10px;
    padding: 28px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    font-family: Arial, sans-serif;
}

.ackl-modal-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #222;
}

.ackl-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.ackl-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.ackl-btn:hover {
    opacity: 0.85;
}

body.ackl-rtl {
    direction: rtl;
}

.ackl-price-note {
    color: #777;
    font-size: 12px;
}
