/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۱: کارت محصول (Product Card)                            ║
   ║  کاربرد: ظاهر کلی لیست محصولات شامل تصویر، عنوان، قیمت      ║
   ║  و متادیتا (شماره سفارش، تاریخ سفارش و ...)                  ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۱.۱ کانتینر اصلی لیست کارت‌ها --- */
.ors-container {
    display: grid;
    gap: 12px;
    direction: rtl;
    max-width: 800px;
    margin: 0 auto;
}

/* --- ۱.۲ هر کارت محصول --- */
.ors-product-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    border: 1px solid #e0e0e2;
    border-radius: 10px;
    background: #fff;
}

/* --- ۱.۳ تصویر محصول در کارت --- */
.ors-product-img {
    flex-shrink: 0;
    width: 90px;
}

.ors-product-img img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 6px;
}

/* --- ۱.۴ جزئیات محصول (عنوان، قیمت، متا) --- */
.ors-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ors-product-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.ors-order-number,
.ors-order-date,
.ors-product-price {
    font-size: 12px;
    color: #888;
}

/* --- ۱.۵ بَج‌های متادیتا (مثلاً رنگ، سایز) --- */
.ors-product-meta .ors-meta {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 4px;
    display: inline-block;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۲: ستاره‌های امتیازدهی در کارت (Card Star Rating)       ║
   ║  کاربرد: نمایش و انتخاب ستاره‌ها روی هر کارت محصول           ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۲.۱ ردیف ستاره + لیبل --- */
.ors-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}

.ors-rating-label {
    font-size: 12px;
    color: #888;
}

/* --- ۲.۲ کانتینر ستاره‌ها --- */
.ors-stars-selector {
    display: flex;
    flex-direction: row;
    gap: 4px;
    direction: ltr;
}

/* --- ۲.۳ هر ستاره (آیکن + لیبل زیرش) --- */
.ors-stars-selector .star {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}

.ors-stars-selector .star small {
    font-size: 9px;
    color: #aaa;
    margin-top: 2px;
}

/* --- ۲.۴ ستاره فعال و هاور --- */
.ors-stars-selector .star.active,
.ors-stars-selector .star.active small {
    color: #fac73b;
}

.ors-stars-selector .star:hover {
    color: #fac73b;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۳: دکمه «ثبت دیدگاه» (Submit Review Button)           ║
   ║  کاربرد: دکمه‌ای که مودال یا صفحه موبایل را باز می‌کند       ║
   ╚════════════════════════════════════════════════════════════════╝ */

.ors-open-btn {
    width: 30%;
    border: 1px solid #ef4056 !important;
    background: #fff !important;
    color: #ef4056 !important;
    padding: 10px 24px;
    border-radius: 10px !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ors-open-btn:hover{
    background:#fff5f7 !important;
}

.ors-open-btn:hover {
    background: #e6123d;
    color: #fff;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۴: مودال ثبت دیدگاه – دسکتاپ (Review Modal)           ║
   ║  کاربرد: پنجره پاپ‌آپ مرکزی برای نوشتن و ارسال دیدگاه       ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۴.۱ اُورلی پشت مودال --- */
#ors-modal-root {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    overflow-y: auto;
}

/* --- ۴.۲ باکس سفید مودال --- */
.ors-modal-content {
    background: #fff;
    width: 480px;
    max-width: 95vw;
    margin: 40px auto;
    border-radius: 14px;
    overflow: hidden;
    direction: rtl;
    position: relative;
}

/* --- ۴.۳ هدر مودال (عنوان + دکمه بستن) --- */
.ors-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.ors-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #222;
}

.ors-close-modal {
    cursor: pointer;
    font-size: 18px;
    color: #999;
    line-height: 1;
    padding: 4px;
}

.ors-close-modal:hover {
    color: #333;
}

/* --- ۴.۴ اطلاعات محصول در بالای مودال (تصویر + نام) --- */
.ors-modal-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.ors-modal-product-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
}

.ors-modal-product-name {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
}

/* --- ۴.۵ بخش امتیاز (ستاره‌ها) در مودال --- */
.ors-modal-rating-section {
    display: flex;
    align-items: center;
    gap: 130px;
    margin-bottom: 1px;
    margin-top: 20px;
}

.ors-rating-title {
    margin-bottom: 20px;
    font-size: 13px;
    color: #000;
    margin: 15px 20px 12px;
    white-space: nowrap;
}

/* --- ۴.۶ بخش متن دیدگاه (textarea) --- */
.ors-modal-comment-section {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

#ors-modal-comment {
    min-height: 130px;
    width: 100%;
    height: 110px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    resize: none;
    box-sizing: border-box;
    font-family: inherit;
    direction: rtl;
}

#ors-modal-comment:focus {
    outline: none;
    border-color: #e6123d;
}

/* --- ۴.۷ شمارنده کاراکتر زیر textarea --- */
.ors-char-counter {
    text-align: left;
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۵: آپلود تصویر (Image Upload)                           ║
   ║  کاربرد: باکس آپلود عکس + پیش‌نمایش تصاویر انتخاب‌شده        ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۵.۱ باکس آپلود --- */
.ors-upload-box {
    padding: 12px 20px;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    display: flex;
    justify-content: center;
}

/* --- ۵.۲ لیبل کلیک‌پذیر آپلود (خط‌چین) --- */
.ors-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px dashed #000;
    border-radius: 15px;
    padding: 18px 33px;
    font-size: 13px;
    color: #000;
    background-color: #ddd;
    cursor: pointer;
    transition: border-color 0.2s;
}

.ors-upload-label:hover {
    border-color: #e6123d;
    color: #e6123d;
}

.ors-upload-box input[type="file"] {
    display: none;
}

/* --- ۵.۳ کانتینر پیش‌نمایش عکس‌های آپلودی --- */
.ors-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 12px;
}

.ors-preview-img {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #eee;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۶: دکمه نهایی ارسال دیدگاه (Final Submit Button)       ║
   ║  کاربرد: دکمه قرمز «ثبت دیدگاه» پایین مودال                 ║
   ╚════════════════════════════════════════════════════════════════╝ */

#ors-final-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 16px 20px;
    background: #e6123d;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

#ors-final-btn:hover {
    background: #c40f33;
}

#ors-final-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۷: صفحه موبایل ثبت دیدگاه (Mobile Review Page)         ║
   ║  کاربرد: صفحه جداگانه‌ای که کاربران موبایل ریدایرکت می‌شوند   ║
   ╚════════════════════════════════════════════════════════════════╝ */

.ors-mobile-review-page {
    direction: rtl;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 30px;
}

/* --- ۷.۱ هدر صفحه موبایل (عنوان + دکمه بازگشت) --- */
.ors-mobile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

.ors-mobile-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.ors-back-btn {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transform: scaleX(-1);
    display: inline-block;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۸: ریسپانسیو / موبایل (Responsive Overrides)           ║
   ║  کاربرد: تغییر چیدمان کارت و مودال در عرض زیر ۶۰۰px         ║
   ╚════════════════════════════════════════════════════════════════╝ */

@media (max-width: 600px) {
    /* --- ۸.۱ کارت: عمودی و وسط‌چین --- */
    .ors-product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* --- ۸.۲ دکمه ثبت: تمام عرض --- */
    .ors-open-btn {
        max-width: 100%;
    }

    /* --- ۸.۳ مودال: شیت پایینی (Bottom Sheet) --- */
    .ors-modal-content {
        margin: 0;
        border-radius: 14px 14px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }

    #ors-modal-root {
         display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    }
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۹: پاپ‌آپ اجباری انتخاب ستاره (Rating Required Popup)   ║
   ║  کاربرد: وقتی کاربر بدون انتخاب ستاره روی «ثبت دیدگاه»      ║
   ║  کلیک کند، این پاپ‌آپ نمایش داده می‌شود                       ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۹.۱ اُورلی پشت پاپ‌آپ --- */
#ors-rating-required-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ۹.۲ باکس سفید پاپ‌آپ --- */
.ors-rating-popup-content {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    direction: rtl;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    animation: orsPopupIn 0.25s ease;
}

/* --- ۹.۳ انیمیشن ورود پاپ‌آپ --- */
@keyframes orsPopupIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- ۹.۴ دکمه بستن پاپ‌آپ (×) --- */
.ors-rating-popup-close {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.ors-rating-popup-close:hover {
    color: #333;
}

/* --- ۹.۵ آیکن و متن‌های پاپ‌آپ --- */
.ors-rating-popup-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.ors-rating-popup-content h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #1e1e1e;
}

.ors-rating-popup-content p {
    margin: 0 0 16px;
    font-size: 12px;
    color: #777;
}

/* --- ۹.۶ ستاره‌های داخل پاپ‌آپ --- */
.ors-popup-stars {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 16px;
}

.ors-popup-stars .star {
    font-size: 24px;
    cursor: pointer;
    color: #d0d0d0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.15s;
}

.ors-popup-stars .star small {
    font-size: 9px;
    color: #999;
    margin-top: 2px;
}

.ors-popup-stars .star.active {
    color: #ffb400;
}

/* --- ۹.۷ دکمه «ادامه» در پاپ‌آپ --- */
.ors-rating-popup-continue {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #00bfd6;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ors-rating-popup-continue:disabled {
    opacity: 0.5;
    cursor: default;
}

.ors-rating-popup-continue:not(:disabled):hover {
    opacity: 0.9;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۱۰: لیبل متن دیدگاه (Comment Label)                    ║
   ║  کاربرد: عنوان «متن دیدگاه:» بالای textarea                  ║
   ╚════════════════════════════════════════════════════════════════╝ */

.ors-comment-label {
    margin-bottom: 6px;
    font-size: 13px;
    color: #000;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۱۱: نام خریدار و نوع نمایش (Buyer Name & Display Type)  ║
   ║  کاربرد: نمایش نام کاربر + انتخاب نحوه نمایش نام             ║
   ║  (نام کامل / ناشناس / حروف اول)                              ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۱۱.۱ ردیف اصلی (نام + دراپ‌داون) --- */
.ors-modal-name-section {
    padding: 16px 20px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* --- ۱۱.۲ نمایش نام خریدار --- */
.ors-name-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ors-name-label {
    font-size: 13px;
    color: #000;
    white-space: nowrap;
}

.ors-customer-name-text {
    font-size: 13px;
    color: #e6123d;
    font-weight: 600;
}

/* --- ۱۱.۳ دکمه انتخاب نوع نمایش (دراپ‌داون) --- */
.ors-display-type-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.2s;
}

.ors-display-type-wrapper:hover {
    border-color: #e6123d;
    background: #fff;
}

.ors-display-label {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.ors-dropdown-toggle {
    font-size: 10px;
    color: #666;
    transition: transform 0.2s;
}

.ors-display-type-wrapper.active .ors-dropdown-toggle {
    transform: rotate(180deg);
}

/* --- ۱۱.۴ پاپ‌آپ انتخاب نوع نمایش نام --- */
.ors-display-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px;
    min-width: 320px;
    z-index: 10000;
}

/* --- ۱۱.۵ هر گزینه در پاپ‌آپ نوع نمایش --- */
.ors-display-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 8px;
}

.ors-display-option:last-child {
    margin-bottom: 0;
}

.ors-display-option:hover {
    background: #f5f5f5;
}

.ors-display-option input[type="radio"] {
    display: none;
}

/* --- ۱۱.۶ دایره رادیو سفارشی --- */
.ors-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
    transition: all 0.2s;
}

.ors-display-option input[type="radio"]:checked + .ors-radio-circle {
    border-color: #e6123d;
}

.ors-display-option input[type="radio"]:checked + .ors-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #e6123d;
    border-radius: 50%;
}

/* --- ۱۱.۷ متن و توضیح هر گزینه --- */
.ors-option-text {
    flex: 1;
}

.ors-option-text strong {
    display: block;
    font-size: 13px;
    color: #222;
    margin-bottom: 4px;
}

.ors-option-text small {
    display: block;
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}

.ors-customer-display-name {
    color: #e6123d;
    font-weight: 600;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۱۲: راهنمای تصویر (Image Hint)                          ║
   ║  کاربرد: پیام راهنما بالای دکمه ثبت نهایی درباره فرمت عکس   ║
   ╚════════════════════════════════════════════════════════════════╝ */

.ors-image-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    direction: rtl;
}

.ors-hint-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.ors-hint-text {
    font-size: 11px;
    color: #888;
    line-height: 1.6;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۱۳: پیش‌نمایش تصاویر آپلودی + دکمه حذف                 ║
   ║  (Upload Preview & Remove Button)                             ║
   ║  کاربرد: نمایش بندانگشتی عکس‌های انتخاب‌شده قبل از ارسال      ║
   ║  به‌همراه دکمه × قرمز برای حذف هر عکس                        ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۱۳.۱ باکس نگهدارنده هر تصویر --- */
.ors-preview-item {
    position: relative;
    display: inline-block;
}

/* --- ۱۳.۲ دکمه حذف (دایره قرمز با ×) --- */
.ors-remove-img {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 14px;
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║  بخش ۱۴: گالری تصاویر در دیدگاه‌های ثبت‌شده                   ║
   ║  (Review Photos Gallery)                                      ║
   ║  کاربرد: نمایش عکس‌های آپلود‌شده توسط مشتریان زیر متن دیدگاه ║
   ║  در صفحه محصول                                                ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* --- ۱۴.۱ کانتینر گالری --- */
.ors-review-photos {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* --- ۱۴.۲ لینک هر عکس (قاب مربعی) --- */
.ors-review-photos a {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.2s;
    line-height: 0;
}

.ors-review-photos a:hover {
    transform: scale(1.05);
    border-color: #2271b1;
}

/* --- ۱۴.۳ تصویر داخل گالری --- */
.ors-review-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.required-star {
    color: red !important;
    margin-right: 3px;
    font-size: 14px;
}
.ors-comment-title {
    margin-bottom: 2px;
    color :#000 !important;
}


@media (max-width: 768px) {
    .ors-modal-rating-section {
        flex-direction: column !important;
        gap: 6px !important;
        align-items: center !important;
        margin-top: 10px !important;
    }
    .ors-rating-title {
        font-size: 13px !important;
        margin: 8px 0 4px !important;
        text-align: center !important;
    }
}
@media (max-width: 768px) {
    .ors-modal-comment-section {
        padding: 10px 4px !important;
    }
}
@media (max-width: 768px) {
    .ors-modal-name-section {
        padding: 10px 4px !important;
    }
}

/* ──── style.css — استایل دکمه ثبت دیدگاه در موبایل ──── */

@media (max-width: 768px) {
    .ors-open-btn {
        width: auto !important;
        max-width: 100% !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 60px !important;
        margin: 0 auto;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        background: #fff !important;
        color: #ef4056 !important;
        border: 1px solid #ef4056 !important;
        box-shadow: none;
        transition: all 0.3s ease;
    }


    .ors-open-btn:hover {
        background: linear-gradient(135deg, #cc0f35, #e6123d) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230, 18, 61, 0.4);
        color: #fff !important;
    }
}


/* ========== سیستم پاپ‌آپ پیام ========== */
.ors-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
    direction: rtl;
}

.ors-popup-overlay.ors-popup-show {
    opacity: 1;
}

.ors-popup-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.ors-popup-show .ors-popup-box {
    transform: scale(1);
}

/* آیکون‌ها */
.ors-popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.ors-popup-icon.success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.ors-popup-icon.error {
    background: linear-gradient(135deg, #f44336, #ef5350);
}

.ors-popup-icon.warning {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.ors-popup-icon.info {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

/* عنوان */
.ors-popup-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: inherit;
}

/* متن پیام */
.ors-popup-message {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: inherit;
}

/* دکمه */
.ors-popup-btn {
    display: inline-block;
    padding: 10px 40px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ors-popup-btn.success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.ors-popup-btn.error {
    background: linear-gradient(135deg, #f44336, #ef5350);
}

.ors-popup-btn.warning {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.ors-popup-btn.info {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.ors-popup-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========== ریسپانسیو پاپ‌آپ ========== */
@media (max-width: 480px) {
    .ors-popup-box {
        max-width: 320px;
        padding: 24px 20px 20px;
    }

    .ors-popup-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .ors-popup-title {
        font-size: 16px;
    }

    .ors-popup-message {
        font-size: 13px;
    }

    .ors-popup-btn {
        padding: 9px 32px;
        font-size: 14px;
    }
}




/* ========== کارت ورود به حساب ========== */
.ors-login-notice {
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    border: 1px solid #d0d5f2;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    max-width: 420px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ors-login-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ors-login-message {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 500;
}

.ors-login-btn {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(135deg, #5C6BC0, #7986CB);
    color: #fff !important;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.3);
}

.ors-login-btn:hover {
    background: linear-gradient(135deg, #4a5ab5, #6875b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 107, 192, 0.4);
    color: #fff !important;
}

/* ریسپانسیو */
@media (max-width: 480px) {
    .ors-login-notice {
        margin: 20px auto;
        padding: 30px 16px;
    }

    .ors-login-icon {
        font-size: 40px;
    }

    .ors-login-message {
        font-size: 14px;
    }

    .ors-login-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
}

.ors-rating-popup-continue {
    border: 1px solid #ef4056 !important;
     border: 2px solid #ef4056 !important;
    border-radius: 10px !important;
}


