
#smartHideApp{
    width:min(1180px,calc(100% - 30px));
    margin:30px auto;
}

.smart-hide-panel{
    background:#fff;
    border:1px solid #e6e3f2;
    border-radius:22px;
    padding:22px;
    box-shadow:0 16px 50px rgba(27,23,55,.07);
}

.smart-hide-heading{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-bottom:18px;
}

.smart-hide-heading strong{
    font-size:22px;
    color:#17182d;
}

.smart-hide-heading span{
    color:#74788d;
    font-size:13px;
}

.smart-hide-upload{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px dashed #d8d2f5;
    border-radius:14px;
    background:#faf9ff;
    cursor:pointer;
    color:#5c43b5;
}

.smart-hide-workspace{
    margin-top:20px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:18px;
    align-items:start;
}

.smart-hide-canvas-wrap{
    position:relative;
    min-height:430px;
    border-radius:16px;
    overflow:hidden;
    background:
      repeating-conic-gradient(
        #f1f1f4 0 25%,
        #fff 0 50%
      ) 50% / 22px 22px;
    display:flex;
    align-items:center;
    justify-content:center;
}

#smartHideImage{
    display:block;
    max-width:100%;
    max-height:680px;
}

#smartHideMask{
    position:absolute;
    max-width:100%;
    max-height:680px;
    cursor:crosshair;
    touch-action:none;
}

.smart-hide-toolbar{
    border:1px solid #ebe8f5;
    border-radius:15px;
    padding:14px;
    background:#fcfbff;
}

.smart-hide-tools{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
    margin-bottom:14px;
}

.smart-hide-tools button{
    min-height:39px;
    border:1px solid #ded9ef;
    border-radius:9px;
    background:#fff;
    color:#37364d;
    cursor:pointer;
    font-family:inherit;
    font-weight:700;
}

.smart-hide-tools button.active{
    background:#eee9ff;
    border-color:#8c72ff;
    color:#5638c7;
}

.smart-hide-toolbar label{
    display:flex;
    justify-content:space-between;
    margin:13px 0 6px;
    font-size:12px;
    font-weight:800;
    color:#34364d;
}

.smart-hide-toolbar input[type="range"]{
    width:100%;
    accent-color:#704cff;
}

.smart-hide-toolbar select{
    width:100%;
    min-height:43px;
    border:1px solid #ddd9ec;
    border-radius:10px;
    background:#fff;
    padding:8px;
    font-family:inherit;
}

.smart-hide-process,
.smart-hide-download{
    width:100%;
    min-height:49px;
    margin-top:15px;
    border:0;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    font-family:inherit;
    font-weight:900;
    text-decoration:none;
    cursor:pointer;
}

.smart-hide-process{
    background:#704cff;
    color:#fff;
}

.smart-hide-download{
    background:#baff3c;
    color:#14182b;
}

#smartHideStatus{
    margin-top:12px;
    min-height:22px;
    padding:8px;
    text-align:center;
    color:#655d7c;
    font-size:12px;
    line-height:1.7;
}

@media(max-width:850px){

    .smart-hide-workspace{
        grid-template-columns:1fr;
    }

    .smart-hide-canvas-wrap{
        min-height:300px;
    }
}

/* NUJIZ SMART HIDE - force modern editor */
body:has(#smartHideApp) #toolWorkspace,
body:has(#smartHideApp) .tool-workspace:not(#smartHideApp),
body:has(#smartHideApp) [data-image-studio] {
    display:none !important;
}

#smartHideApp{
    display:block !important;
}


/* ===== SMART HIDE REMOVE IMAGE BUTTON ===== */

.smart-hide-remove-image{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    margin:10px 0 0;
    min-height:40px;
    padding:8px 16px;

    border:1px solid #e3a399;
    border-radius:10px;

    background:#fff7f5;
    color:#7b2e24;

    font-family:inherit;
    font-size:13px;
    font-weight:800;

    cursor:pointer;
    transition:.18s ease;
}

.smart-hide-remove-image:hover{
    background:#ffefec;
    transform:translateY(-1px);
}

.smart-hide-remove-image[hidden]{
    display:none !important;
}


/* Hide legacy remove-image button inside upload bar */
#smartHideApp .smart-hide-upload + #nujizRemoveImageBtn,
#smartHideApp .smart-hide-upload .nujiz-remove-image-btn,
#smartHideApp .smart-hide-upload button[id*="RemoveImage"],
#smartHideApp .smart-hide-upload button[class*="remove-image"] {
    display:none !important;
}


/* =====================================================
   NUJIZ SMART HIDE PRO PAYWALL
===================================================== */

#smartHideApp .smart-hide-toolbar{
    position:relative;
}

.nujiz-smart-hide-paywall{
    position:absolute;
    inset:-1px;

    z-index:999;

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

    padding:18px;

    border-radius:15px;

    background:
        linear-gradient(
            135deg,
            rgba(250,249,255,.88),
            rgba(245,242,255,.94)
        );

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    overflow:hidden;
}

.nujiz-smart-hide-paywall::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(112,76,255,.13),
            transparent 42%
        ),
        radial-gradient(
            circle at 85% 90%,
            rgba(186,255,60,.10),
            transparent 40%
        );

    pointer-events:none;
}

.nujiz-paywall-card{
    position:relative;
    z-index:2;

    width:min(310px,100%);

    padding:23px 20px;

    text-align:center;

    border:1px solid
        rgba(112,76,255,.20);

    border-radius:20px;

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 18px 55px
        rgba(37,27,78,.13);
}

.nujiz-paywall-lock{
    width:52px;
    height:52px;

    margin:0 auto 8px;

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

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #704cff,
            #8b6dff
        );

    box-shadow:
        0 10px 25px
        rgba(112,76,255,.28);

    font-size:23px;
}

.nujiz-paywall-badge{
    display:inline-flex;

    padding:4px 9px;

    margin:3px 0 8px;

    border-radius:999px;

    background:#eeeaff;
    color:#6341d6;

    font-size:10px;
    font-weight:900;

    letter-spacing:.4px;
}

.nujiz-paywall-card h3{
    margin:3px 0 8px;

    color:#17182d;

    font-size:18px;
    font-weight:900;
}

.nujiz-paywall-card p{
    margin:0 auto 14px;

    max-width:255px;

    color:#73778b;

    font-size:12px;
    line-height:1.8;
}

.nujiz-paywall-price{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    margin-bottom:13px;
}

.nujiz-paywall-price strong{
    color:#17182d;
    font-size:25px;
    line-height:1;
}

.nujiz-paywall-price span{
    color:#87899a;
    font-size:11px;
}

.nujiz-paypal-unlock{
    width:100%;
    min-height:48px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    padding:10px 14px;

    border:0;
    border-radius:12px;

    background:#0070ba;

    color:#fff;

    font-family:inherit;
    font-size:13px;
    font-weight:900;

    cursor:pointer;

    box-shadow:
        0 10px 25px
        rgba(0,112,186,.20);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.nujiz-paypal-unlock:hover{
    transform:translateY(-1px);

    box-shadow:
        0 14px 30px
        rgba(0,112,186,.26);
}

.paypal-mark{
    width:24px;
    height:24px;

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

    border-radius:7px;

    background:#fff;
    color:#0070ba;

    font-size:15px;
    font-weight:1000;
}

.pay-arrow{
    margin-inline-start:auto;
    font-size:18px;
}

.nujiz-paywall-secure{
    margin-top:11px;

    color:#8a8c9b;

    font-size:10px;
    font-weight:700;
}


/* الخيارات تظهر أسفل الزجاجية ولكن لا يمكن لمسها */
html:not(.nujiz-smart-hide-unlocked)
#smartHideApp .smart-hide-toolbar
> :not(.nujiz-smart-hide-paywall){

    filter:blur(1.7px);

    pointer-events:none;

    user-select:none;
}


/* Mobile */
@media(max-width:600px){

    .nujiz-smart-hide-paywall{
        padding:12px;
    }

    .nujiz-paywall-card{
        padding:18px 15px;
    }

    .nujiz-paywall-card h3{
        font-size:16px;
    }
}


/* =========================================
   NUJIZ PAYMENT METHODS + 5 CREDITS
========================================= */

.nujiz-paypal-unlock,
.nujiz-paypal-unlock *,
.nujiz-pay-button-text{
    color:#ffffff !important;
    -webkit-text-fill-color:#ffffff !important;
}

.nujiz-paypal-unlock{
    min-height:58px;
    padding:9px 12px;
}

.nujiz-payment-logos{
    display:flex;
    align-items:center;
    gap:5px;
    flex-shrink:0;
}

.paypal-mark{
    width:27px;
    height:27px;
    background:#fff;
    color:#0070ba !important;
    -webkit-text-fill-color:#0070ba !important;
    border-radius:7px;
    font-weight:1000;
    display:flex;
    align-items:center;
    justify-content:center;
}

.nujiz-card-logo{
    height:25px;
    min-width:37px;
    padding:0 5px;
    background:#fff;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 1px 4px rgba(0,0,0,.12);
}

.nujiz-card-logo.visa{
    color:#172b85 !important;
    -webkit-text-fill-color:#172b85 !important;
    font-size:9px;
    font-weight:1000;
    font-style:italic;
    letter-spacing:-.4px;
}

.nujiz-card-logo.mastercard{
    position:relative;
    width:38px;
    min-width:38px;
}

.nujiz-card-logo.mastercard i{
    width:14px;
    height:14px;
    border-radius:50%;
    display:block;
    position:absolute;
}

.nujiz-card-logo.mastercard i:first-child{
    background:#eb001b;
    left:8px;
}

.nujiz-card-logo.mastercard i:last-child{
    background:#f79e1b;
    right:8px;
    opacity:.92;
}

.nujiz-pay-button-text{
    flex:1;
    text-align:center;
    font-size:12px;
    font-weight:900;
    line-height:1.4;
}

.nujiz-smart-hide-credit-badge{
    display:flex;
    width:max-content;
    align-items:center;
    justify-content:center;
    gap:4px;

    margin:8px 0 10px;
    padding:7px 12px;

    border:1px solid rgba(112,76,255,.18);
    border-radius:999px;

    background:#f3efff;
    color:#583bc5;

    font-size:11px;
    font-weight:800;
}

.nujiz-smart-hide-credit-badge b{
    color:#583bc5;
    font-weight:1000;
}

.nujiz-smart-hide-credit-badge[hidden]{
    display:none !important;
}

@media(max-width:600px){

    .nujiz-paypal-unlock{
        flex-wrap:wrap;
    }

    .nujiz-payment-logos{
        width:100%;
        justify-content:center;
    }

    .pay-arrow{
        display:none;
    }
}


/* =====================================================
   REMAINING USES COUNTER
===================================================== */

.nujiz-uses-counter{
    width:max-content;
    max-width:100%;

    display:flex;
    align-items:center;
    gap:7px;

    margin:8px 0 12px;
    padding:9px 14px;

    border:1px solid rgba(112,76,255,.18);
    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #f7f4ff,
            #eee9ff
        );

    color:#5033bd;

    font-family:inherit;
    font-size:12px;
    font-weight:800;

    box-shadow:
        0 5px 16px
        rgba(91,62,190,.07);
}

.nujiz-counter-icon{
    font-size:14px;
}

.nujiz-counter-number{
    min-width:20px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:2px 6px;

    border-radius:7px;

    background:#704cff;
    color:#fff;

    font-size:13px;
    font-weight:1000;
}

.nujiz-counter-total{
    opacity:.65;
}


/* عند بقاء محاولتين أو أقل */

.nujiz-uses-counter.is-low{
    background:#fff8ed;
    border-color:#f1d09d;
    color:#8a5a16;
}

.nujiz-uses-counter.is-low
.nujiz-counter-number{
    background:#d98b20;
}


/* عند انتهاء المحاولات */

.nujiz-uses-counter.is-empty{
    background:#fff3f3;
    border-color:#edc5c5;
    color:#9b3e3e;
}

.nujiz-uses-counter.is-empty
.nujiz-counter-number{
    background:#c94b4b;
}


/* RTL / Arabic */

html[dir="rtl"]
.nujiz-uses-counter{
    direction:rtl;
}


/* Mobile */

@media(max-width:600px){

    .nujiz-uses-counter{
        margin-inline:auto;
        font-size:11px;
        padding:8px 12px;
    }
}


/* ===== MODERN SMART HIDE RECOVERY ===== */

body:has(#smartHideApp) #toolWorkspace,
body:has(#smartHideApp) .tool-workspace,
body:has(#smartHideApp) .legacy-tool-workspace,
body:has(#smartHideApp) [data-image-studio]{
    display:none !important;
}

body:has(#smartHideApp) #smartHideApp,
#smartHideApp{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}


/* ===== SMART HIDE FIXED MOUNT ===== */

#smartHideMount{
    width:100%;
    display:block;
}

body:has(#smartHideMount #smartHideApp)
#toolWorkspace,

body:has(#smartHideMount #smartHideApp)
.tool-workspace:not(#smartHideApp),

body:has(#smartHideMount #smartHideApp)
[data-image-studio]{
    display:none !important;
}

#smartHideMount #smartHideApp{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}


/* =====================================================
   PROFESSIONAL SMART HIDE LOCK
===================================================== */

#smartHideApp .smart-hide-toolbar{
    position:relative !important;
    overflow:hidden;
}

.nujiz-professional-lock{
    position:absolute;
    inset:0;

    z-index:5000;

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

    box-sizing:border-box;
    padding:15px;

    border-radius:15px;

    background:
        linear-gradient(
            145deg,
            rgba(247,245,255,.88),
            rgba(238,234,255,.94)
        );

    backdrop-filter:blur(9px);
    -webkit-backdrop-filter:blur(9px);

    box-shadow:
        inset 0 0 0 1px
        rgba(112,76,255,.08);
}

.nujiz-professional-lock::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(112,76,255,.15),
            transparent 38%
        ),
        radial-gradient(
            circle at 95% 95%,
            rgba(186,255,60,.10),
            transparent 35%
        );

    pointer-events:none;
}

.nujiz-lock-card{
    position:relative;
    z-index:2;

    width:100%;
    max-width:270px;

    box-sizing:border-box;

    padding:20px 17px;

    text-align:center;

    border:1px solid
        rgba(112,76,255,.20);

    border-radius:20px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 18px 50px
        rgba(31,23,72,.15);
}

.nujiz-lock-shield{
    width:52px;
    height:52px;

    margin:0 auto 8px;

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

    border-radius:17px;

    background:
        linear-gradient(
            135deg,
            #6545e8,
            #8c6cff
        );

    box-shadow:
        0 9px 22px
        rgba(112,76,255,.27);
}

.nujiz-lock-shield span{
    font-size:23px;
}

.nujiz-lock-pro{
    display:inline-flex;

    margin-bottom:7px;
    padding:4px 9px;

    border-radius:999px;

    background:#eee9ff;
    color:#6344cd;

    font-size:9px;
    font-weight:1000;
    letter-spacing:.4px;
}

.nujiz-lock-card h3{
    margin:2px 0 7px;

    color:#17182c;

    font-size:16px;
    line-height:1.5;
    font-weight:900;
}

.nujiz-lock-card p{
    margin:0 auto 13px;

    color:#75798c;

    font-size:10.5px;
    line-height:1.75;
}

.nujiz-lock-package{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;

    margin:0 0 14px;
    padding:9px;

    border-radius:12px;

    background:#f8f7fc;
    border:1px solid #eeeaf7;
}

.nujiz-lock-package > div:not(.nujiz-lock-divider){
    display:flex;
    flex-direction:column;
    gap:2px;
}

.nujiz-lock-package strong{
    color:#17182c;
    font-size:19px;
    line-height:1;
}

.nujiz-lock-package span{
    color:#878a99;
    font-size:8px;
}

.nujiz-lock-divider{
    width:1px;
    height:29px;
    background:#e2dfeb;
}

.nujiz-professional-pay{
    width:100%;
    min-height:53px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    box-sizing:border-box;

    padding:7px 10px;

    border:0;
    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            #0070ba,
            #0064a7
        );

    cursor:pointer;

    box-shadow:
        0 10px 24px
        rgba(0,112,186,.22);

    font-family:inherit;
}

.nujiz-professional-pay,
.nujiz-professional-pay *{
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
}

.nujiz-professional-pay:hover{
    transform:translateY(-1px);
}

.nujiz-pay-methods{
    display:flex;
    align-items:center;
    gap:3px;
}

.nujiz-pay-methods b{
    height:23px;

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

    box-sizing:border-box;

    border-radius:5px;

    background:#fff;
}

.nujiz-pp{
    width:23px;
    min-width:23px;

    color:#0070ba !important;
    -webkit-text-fill-color:#0070ba !important;

    font-size:13px;
}

.nujiz-visa{
    min-width:34px;
    padding:0 4px;

    color:#172b85 !important;
    -webkit-text-fill-color:#172b85 !important;

    font-size:7px;
    font-style:italic;
    font-weight:1000;
}

.nujiz-mc{
    position:relative;

    width:32px;
    min-width:32px;
}

.nujiz-mc i{
    position:absolute;

    width:12px;
    height:12px;

    border-radius:50%;
}

.nujiz-mc i:first-child{
    left:6px;
    background:#eb001b;
}

.nujiz-mc i:last-child{
    right:6px;
    background:#f79e1b;
}

.nujiz-pay-label{
    flex:1;

    font-size:10.5px;
    font-weight:900;
    white-space:nowrap;
}

.nujiz-lock-secure{
    margin-top:9px;

    color:#8b8e9d;

    font-size:8.5px;
    font-weight:700;
}


/*
 * الخيارات تظل مرئية خلف الزجاج
 * لكن لا يمكن استخدامها.
 */
#smartHideApp
.smart-hide-toolbar:not(.nujiz-tool-paid)
> :not(.nujiz-professional-lock){

    pointer-events:none;
    user-select:none;
}


/* Mobile */

@media(max-width:850px){

    .nujiz-professional-lock{
        padding:12px;
    }

    .nujiz-lock-card{
        max-width:310px;
    }
}


/* =====================================================
   FIX PROFESSIONAL LOCK BLUR
   Clear payment card + subtle glass overlay
===================================================== */

#smartHideApp .nujiz-professional-lock{
    /*
     * إلغاء التمويه القوي
     */
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;

    /*
     * طبقة زجاجية ناعمة بدون تشويش
     */
    background:
        linear-gradient(
            145deg,
            rgba(247,245,255,.94),
            rgba(242,239,255,.96)
        ) !important;

    opacity:1 !important;
    filter:none !important;
}


/* بطاقة القفل يجب أن تكون حادة تماماً */

#smartHideApp .nujiz-lock-card{
    opacity:1 !important;
    filter:none !important;

    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;

    background:#ffffff !important;

    border:
        1px solid
        rgba(112,76,255,.20) !important;

    box-shadow:
        0 18px 45px
        rgba(37,27,78,.14) !important;
}


/* منع أي blur قديم من التأثير على القفل */

#smartHideApp
.nujiz-professional-lock,
#smartHideApp
.nujiz-professional-lock *,
#smartHideApp
.nujiz-lock-card,
#smartHideApp
.nujiz-lock-card *{
    filter:none !important;
}


/* الخيارات خلف القفل */

#smartHideApp
.smart-hide-toolbar:not(.nujiz-tool-paid)
> :not(.nujiz-professional-lock){

    /*
     * لا نريد تشويش النصوص والأزرار.
     * فقط تخفيف بصري بسيط.
     */
    filter:none !important;
    opacity:.38;

    pointer-events:none !important;
    user-select:none !important;
}


/* القفل نفسه بكامل الوضوح */

#smartHideApp
.smart-hide-toolbar
> .nujiz-professional-lock{

    opacity:1 !important;
    visibility:visible !important;

    pointer-events:auto !important;
}


/* النصوص */

#smartHideApp .nujiz-lock-card h3{
    opacity:1 !important;
    color:#17182c !important;
}

#smartHideApp .nujiz-lock-card p{
    opacity:1 !important;
    color:#6f7385 !important;
}


/* زر الدفع */

#smartHideApp .nujiz-professional-pay{
    opacity:1 !important;
    filter:none !important;

    background:
        linear-gradient(
            135deg,
            #0070ba,
            #005ea6
        ) !important;
}

#smartHideApp .nujiz-professional-pay,
#smartHideApp .nujiz-professional-pay *{
    opacity:1 !important;
}


/* =====================================================
   PAID STATE — RESTORE TOOL COMPLETELY
===================================================== */

/*
 * عند وجود حالة paid:
 * ألغِ جميع تأثيرات القفل السابقة نهائياً.
 */

#smartHideApp .smart-hide-toolbar.nujiz-tool-paid{
    opacity:1 !important;
    filter:none !important;

    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}

#smartHideApp
.smart-hide-toolbar.nujiz-tool-paid
> *{
    opacity:1 !important;
    filter:none !important;

    visibility:visible !important;

    pointer-events:auto !important;
    user-select:auto !important;

    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}


/* استثناء طبقة القفل نفسها */

#smartHideApp
.smart-hide-toolbar.nujiz-tool-paid
> .nujiz-professional-lock{
    display:none !important;
}


/*
 * إلغاء أي قواعد قديمة تعتمد على
 * html:not(.nujiz-smart-unlocked)
 */

html .nujiz-tool-paid
> :not(.nujiz-professional-lock){

    opacity:1 !important;
    filter:none !important;

    pointer-events:auto !important;
    user-select:auto !important;
}


/*
 * إلغاء تأثير paywall القديم إن بقي class قديم.
 */

html.nujiz-smart-unlocked
#smartHideApp .smart-hide-toolbar > *,

html.nujiz-smart-hide-unlocked
#smartHideApp .smart-hide-toolbar > *{

    opacity:1 !important;
    filter:none !important;

    pointer-events:auto !important;

    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}


/* =====================================================
   NUJIZ SMART HIDE - FREE VS PAID NOTICE
===================================================== */

.nujiz-trial-pricing-note{
    max-width:1280px;
    margin:24px auto 18px;
    padding:0 18px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    box-sizing:border-box;
}

.nujiz-trial-card{
    min-height:86px;
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    box-sizing:border-box;
    border:1px solid rgba(105,82,255,.14);
    box-shadow:0 10px 28px rgba(30,38,70,.05);
}

.nujiz-trial-card strong{
    font-size:18px;
    font-weight:800;
    line-height:1.4;
}

.nujiz-trial-card span{
    font-size:14px;
    line-height:1.7;
    opacity:.78;
}

.nujiz-trial-card-free{
    background:linear-gradient(
        135deg,
        rgba(233,248,224,.95),
        rgba(248,253,244,.98)
    );
    border-color:rgba(74,150,41,.18);
}

.nujiz-trial-card-paid{
    background:linear-gradient(
        135deg,
        rgba(235,243,255,.98),
        rgba(247,250,255,.98)
    );
    border-color:rgba(79,113,230,.18);
}

.nujiz-trial-card-free strong{
    color:#326b1f;
}

.nujiz-trial-card-paid strong{
    color:#2458b8;
}

@media (max-width:700px){
    .nujiz-trial-pricing-note{
        grid-template-columns:1fr;
        margin-top:16px;
        gap:10px;
        padding:0 14px;
    }

    .nujiz-trial-card{
        min-height:auto;
        padding:15px 17px;
        border-radius:15px;
    }

    .nujiz-trial-card strong{
        font-size:16px;
    }

    .nujiz-trial-card span{
        font-size:13px;
    }
}
