/**
 * assets/css/login-required-modal.css
 * استایل مودال «برای دیدن کارت کامل وارد شو».
 * فایل مستقل و ایزوله — هیچ کلاس یا استایل دیگری را override نمی‌کند.
 */

.lrm-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 20, 0.55);
    padding: 16px;
}

.lrm-overlay[hidden] {
    display: none;
}

.lrm-box {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    direction: rtl;
}

.lrm-close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.lrm-close:hover {
    color: #333;
}

.lrm-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.lrm-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.lrm-text {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 20px;
}

.lrm-actions {
    display: flex;
    gap: 10px;
}

.lrm-btn {
    flex: 1 1 0;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.lrm-btn:hover {
    opacity: 0.9;
}

.lrm-btn--primary {
    background: #6c3ff2;
    color: #fff;
}

.lrm-btn--secondary {
    background: #f1f1f5;
    color: #333;
}
