/* =========================
   WALLET BANNER
========================= */
.walletBanner{

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

    padding:22px 20px;

    margin-top:24px;

    margin-bottom:24px;

    width:100%;

    min-height:105px;

    border-radius:15px;

    background:
    linear-gradient(
        135deg,
        #ff9800,
        #ff5722,
        #ffcc80
    );

    color:#fff;

    cursor:pointer;

    box-sizing:border-box;

    box-shadow:
    0 10px 30px rgba(0,0,0,.14);

}

.walletLeft{

    display:flex;
    align-items:center;

    gap:18px;

}

.walletEmoji{

    font-size:42px;

}

.walletTitle{

    font-size:18px;
    font-weight:700;

}

.walletSub{

    font-size:13px;
    opacity:.92;

}
/* =========================
   WALLET AMOUNT STYLE
========================= */

/* banner amount */
.walletAmount{

    display:flex;

    align-items:flex-start;

    justify-content:flex-end;

    gap:2px;

    line-height:1;

    font-weight:900;
}

/* small Rs */
.walletAmount .rsText{

    font-size:14px;

    font-weight:700;

    opacity:.95;

    margin-top:4px;
}

/* big number */
.walletAmount .amountValue{

    font-size:34px;

    font-weight:900;

    letter-spacing:.5px;
}

/* =========================
   WALLET SCREEN BIG BALANCE
========================= */

.walletBalanceBig{

    display:flex;

    align-items:flex-start;

    justify-content:center;

    gap:3px;

    line-height:1;

    margin-top:14px;

    font-weight:900;
}

.walletBalanceBig .rsText{

    font-size:18px;

    font-weight:700;

    margin-top:6px;

    opacity:.95;
}

.walletBalanceBig .amountValue{

    font-size:50px;

    font-weight:900;

    letter-spacing:.5px;
}

/*wallet screen css*/
/* =========================
   WALLET SCREEN
========================= */
.walletTopCard{

    padding:28px;

    border-radius:24px;
padding-bottom:50px;
    background:
    linear-gradient(
        135deg,
        #ff9800,
        #ff5722
    );

    text-align:center;

    color:#fff;

    margin-bottom:22px;

}

.walletBigEmoji{

    font-size:55px;

    margin-bottom:10px;

}

.walletHeading{

    font-size:24px;

    font-weight:700;

}

.walletBalanceBig{

    font-size:42px;

    font-weight:900;

    margin-top:14px;

}

.walletPoints{

    margin-top:10px;

    font-size:15px;

}

.walletActionGrid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:14px;

    margin-top:20px;

    margin-bottom:22px;

}
.walletActionCard{

    background:#fff;

    border-radius:18px;

    padding:20px;

    text-align:center;

    font-size:24px;

    box-shadow:
    0 4px 15px rgba(0,0,0,.06);

}

.walletActionCard span{

    display:block;

    font-size:14px;

    margin-top:8px;

}

.walletHistoryBox{

    background:#fff;

    border-radius:20px;

    padding:18px;

    box-shadow:
    0 4px 14px rgba(0,0,0,.06);

}

.walletHistoryTitle{

    font-size:18px;

    font-weight:700;

    margin-bottom:15px;

}

.walletHistoryItem{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:
    1px solid #eee;

}

.walletBackBtn{

    width:100%;

    margin-top:24px;

    border:none;

    border-radius:16px;

    padding:15px;

    background:#111;

    color:#fff;

    font-size:16px;

}
/*claim reward*/
.rewardGrid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:14px;

    margin-top:22px;

}

.rewardTierCard{

    border-radius:18px;

    padding:14px 10px;

    text-align:center;

    color:#fff;

    cursor:pointer;

    transition:.25s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 6px 18px rgba(0,0,0,.10);

    min-height:135px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;
}
.rewardTierCard:hover{

    transform:
    translateY(-4px)
    scale(1.03);

}

/* =========================
   UNLOCKED CARD
========================= */

.rewardUnlocked{

    background:
    linear-gradient(
        135deg,
        #00c853,
        #00e676,
        #69f0ae
    );

}

/* =========================
   LOCKED CARD
========================= */

.rewardLocked{

    background:
    linear-gradient(
        135deg,
        #3f51b5,
        #5c6bc0,
        #7986cb
    );

    opacity:.92;

}

/* =========================
   CLAIMED CARD
========================= */

.rewardClaimed{

    background:
    linear-gradient(
        135deg,
        #ff9800,
        #ff5722,
        #ff7043
    );

}

/* glow effect */

.rewardTierCard::before{

    content:"";

    position:absolute;

    top:-40px;
    right:-40px;

    width:90px;
    height:90px;

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

    border-radius:50%;

}

/* =========================
   TEXTS
========================= */

.rewardSpend{

    font-size:17px;

    font-weight:800;

    line-height:1.2;
}

.rewardText{

    margin-top:6px;

    font-size:11px;

    opacity:.92;
}

.rewardAmount{

    margin-top:6px;

    font-size:20px;

    font-weight:900;

    line-height:1.1;
}

.rewardStatus{

    margin-top:8px;

    font-size:11px;

    font-weight:700;

    border-radius:20px;

    padding:5px 8px;

    display:inline-block;
}

/* =========================
   POPUP
========================= */

#rewardSuccessPopup{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.72);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999999;

    backdrop-filter:blur(4px);

}

.rewardSuccessBox{

    width:320px;

    background:#fff;

    border-radius:26px;

    padding:34px 28px;

    text-align:center;

    position:relative;

    box-shadow:
    0 15px 40px rgba(0,0,0,.18);

    animation:
    rewardPopup .28s ease;

}

@keyframes rewardPopup{

    from{

        transform:
        scale(.85);

        opacity:0;

    }

    to{

        transform:
        scale(1);

        opacity:1;

    }

}

.rewardClose{

    position:absolute;

    right:18px;

    top:14px;

    width:34px;
    height:34px;

    border-radius:50%;

    background:#f4f4f4;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    cursor:pointer;

    transition:.2s;

}

.rewardClose:hover{

    background:#ececec;

    transform:rotate(90deg);

}

.rewardSuccessIcon{

    font-size:70px;

}

.rewardSuccessTitle{

    margin-top:16px;

    font-size:24px;

    font-weight:800;

    color:#111;

}

.rewardSuccessAmount{

    margin-top:16px;

    font-size:22px;

    color:#00b248;

    font-weight:900;

}

.rewardSuccessText{

    margin-top:10px;

    font-size:14px;

    color:#666;

    line-height:1.5;

}
.rewardExpireText{

    margin-top:16px;

    font-size:13px;

    line-height:1.7;

    color:#666;

}
.rewardTimer{

    margin-top:10px;

    background:#fff;

    color:#111;

    padding:6px 10px;

    border-radius:20px;

    font-size:12px;

    font-weight:800;

}
/*discount reciept*/
.discountReceipt{

    position:relative;

    background:#fff;

    border-radius:16px;

    padding:14px;

    box-shadow:
    0 4px 15px rgba(0,0,0,.08);

    overflow:hidden;

}

.discountTitle{

    text-align:center;

    font-size:15px;

    font-weight:700;

    margin-bottom:12px;

    color:#111;

}

.discountRow{

    display:flex;

    justify-content:space-between;

    margin-bottom:8px;

    font-size:13px;

}

.discountDivider{

    height:1px;

    background:#e5e5e5;

    margin:10px 0;

}

.discountFinal{

    display:flex;

    justify-content:space-between;

    font-size:15px;

    font-weight:700;

    color:#0a7f3f;

}

.discountStamp{

    position:absolute;

    top:10px;

    right:-32px;

    background:red;

    color:#fff;

    font-size:10px;

    font-weight:700;

    padding:4px 35px;

    transform:rotate(35deg);

    letter-spacing:1px;

}

#rewardVoucherBtn{

    min-width:110px;

}
.rewardActiveNow{

    position:relative;

    border:2px solid #00c853;

    background:
    linear-gradient(
        135deg,
        #00c853,
        #00e676
    );

    color:#fff !important;

    box-shadow:
    0 0 18px rgba(0,200,83,.35);

}

/* ALL TEXT WHITE */

.rewardActiveNow .rewardSpend,
.rewardActiveNow .rewardText,
.rewardActiveNow .rewardAmount,
.rewardActiveNow .rewardStatus,
.rewardActiveNow .rewardTimer{

    color:#fff !important;

}

/* TIMER STYLE */

.rewardActiveNow .rewardTimer{

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

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(6px);

}