﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY FIX */
body {
    background: #ddd;
    margin: 0;
    overflow: hidden;
}

/* PHONE FRAME */
.phone {
    width: 380px;
    height: 100vh;
    margin: auto;
    background: rgb(236 239 241);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

/* HEADER FIXED */
.top-bar {
    flex-shrink: 0;
    height: 60px;
    background: #6a1b9a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

    .top-bar a {
        color: white;
        text-decoration: none;
    }

        .top-bar a i {
            font-size: 30px;
        }

.coins button {
    border-radius: 4px;
    padding: 5px 8px;
    border: unset;
}

.coins a {
    color: #5a2fc2;
}

.coins {
    background: rgba(0,0,0,0.3);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
}

/* PAGE AREA */
.page {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 90px;
    margin-top: 24px;
}


.earnings-card {
    background: #e8dbff;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    font-weight: bold;
    margin: 15px;
    align-items: center;
}

.today-eran {
    font-size: 19px;
    color: #5a2fc2;
}

.power-section {
    text-align: center;
    margin-block: 75px;
}

    .power-section p {
        margin-top: 36px;
    }

.power-btn {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    margin: auto;
    margin-bottom: 10px;
    position: relative;
    animation: powerPulse 2s infinite ease-in-out;
}

@keyframes powerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0,198,255,0.6), 0 0 20px rgba(0,114,255,0.4), 0 0 40px rgba(0,114,255,0.2);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(0,198,255,.9), 0 0 40px rgba(4, 189, 189, 0.8), 0 0 60px rgba(6, 158, 26, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0,198,255,0.6), 0 0 20px rgba(0,114,255,0.4), 0 0 40px rgba(0,114,255,0.2);
    }
}

.power-btn span {
    margin-top: 15px;
}

.bank {
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
}

.purchase-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    color: white;
    position: relative;
    height: 160px;
    gap: 20px;
}

.card-left img {
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid rgb(0, 132, 255);
}

.arrow-text {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 5px;
    align-items: center;
}

.arrow {
    background: transparent;
    padding: 8px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);
}

.green {
    background: linear-gradient(135deg,#0bbf8a,#159c66);
}

.blue {
    background: linear-gradient(135deg,#1aa3ff,#136ad3);
}

.card-content h2 {
    margin: 0;
}

.card-content p {
    font-size: 14px;
}

.card-content small {
    font-size: 12px;
    opacity: 0.8;
}

.card-text {
    padding-bottom: 10px;
    border-bottom: 1px solid white;
}

    .card-text p {
        color: #ffd700;
        text-shadow: 0 0px #ff0000;
        font-weight: 700;
    }

/* SCROLL AREA */
.page {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px;
    padding-bottom: 90px;
    padding-top:40px;
}

/* FOOTER FIXED */
.bottom-nav {
    flex-shrink: 0;
    height: 90px;
    background: #5a2fc2;
    display: flex;
    justify-content: space-around;
    align-items: start;
    padding-top: 7px;
    color: white;
}

    /* FOOTER ITEMS */
    .bottom-nav a {
        text-align: center;
        text-decoration: none;
        color: white;
        font-size: 14px;
    }

    .bottom-nav i {
        font-size: 18px;
        display: block;
        margin-bottom: 4px;
    }

/*.bottom-nav {
    position: absolute;*/ /* CHANGE from fixed */
    /*bottom: 0;
    width: 100%;
    height: 100px;
    background: #5a2fc2;
    display: flex;
    justify-content: space-around;
    align-items: start;
    padding-top: 8px;
    color: white;
}

    .bottom-nav a {
        text-align: center;
        text-decoration: none;
        color: white;
        opacity: 1;
        font-size: 16px;
    }

        .bottom-nav a.active {
            opacity: 1;
        }*/



.profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.profile-image img {
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid rgb(0, 132, 255);
}


.upgrade {
    background: #5a2fc2;
    color: white;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.upgrade-top {
    display: flex;
    gap: 15px;
    align-items: center;
}

.right-sign {
    width: 45px;
    height: 45px;
    background: #cfbdfb;
    color: #5a2fc2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.upgrade-middle,
.upgrade-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 14px;
}

/* NEW HEADER */
/*.new-header {
    background: #6a1b9a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 25px;
    position: fixed;
    top: 0vh !important;
    width: 380px;
    z-index: 9;
}*/

.app-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.menu-icon i {
    color: white;
    font-size: 20px;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.icon-box {
    position: relative;
    color: white;
    font-size: 20px;
}

.badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: black;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* SEARCH BAR */
.search-bar {
    position: fixed;
    background: #6a1b9a;
    padding: 10px;
    width: 380px;
    top: 56px;
    z-index: 9;
    padding-inline: 25px;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 25px;
    border: none;
    outline: none;
}

    .search-bar i {
        position: absolute;
        margin-left: 20px;
        margin-top: 12px;
        color: #777;
    }


/* NEW FOOTER */
.new-footer {
    background: #750095;
    border-top: 1px solid #ddd;
    padding-inline: 7px;
}

    .new-footer a {
        color: #fff;
        font-size: 14px;
    }

        .new-footer a.active {
            color: #6a1b9a;
        }

    .new-footer i {
        font-size: 20px;
        margin-bottom: 3px;
    }

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: #00ffb3;
}

.refund {
    margin-top: 20px;
}

.option {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}





.record-tabs {
    display: flex;
    justify-content: space-around;
    background: #f1e9ff;
    padding: 10px;
    border-radius: 10px;
}

    .record-tabs span {
        font-weight: 600;
        opacity: 0.6;
    }

    .record-tabs a {
        text-decoration: none;
    }

    .record-tabs .active {
        opacity: 1;
        border-bottom: 3px solid #5a2fc2;
        padding-bottom: 5px;
    }

.record-filter {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

    .record-filter button {
        padding: 8px 14px;
        border: none;
        border-radius: 8px;
        /* background:#eee;*/
    }

    .record-filter .active {
        background: #5a2fc2;
        color: white;
    }

.icon-btn {
    width: 40px;
}

.record-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}


    .record-table thead th {
        text-align: left;
        font-size: 14px;
        color: #777;
        padding: 8px;
    }

    .record-table tbody tr {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .record-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .record-table tbody tr td:first-child {
        border-radius: 12px 0 0 12px;
    }

    .record-table tbody tr td:last-child {
        border-radius: 0 12px 12px 0;
        text-align: right;
    }

.success {
    color: #2ecc71;
    font-weight: bold;
}

.gray {
    color: #aaa;
}

/* .referral-section,
.chips-history,
.status-record {
    display: none;
} */


/* chips start here */

.page-title {
    text-align: center;
    font-weight: 700;
    margin: 10px 0;
}

.chips-balance {
    background: linear-gradient(135deg,#5a2fc2,#7b4dff);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    margin: 15px;
}

    .chips-balance h1 {
        margin-top: 10px;
        font-size: 32px;
    }

.chips-list {
    padding: 15px;
}

.chip-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.chip-left {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.chip-text {
    flex: 1;
    margin-left: 15px;
}

    .chip-text h4 {
        margin: 0;
    }

    .chip-text p {
        font-size: 12px;
        color: #777;
    }

.chip-amount {
    font-weight: 700;
    color: #5a2fc2;
}

.chip-card.purple .chip-left {
    background: #e6ddff;
    color: #5a2fc2;
}

.chip-card.green .chip-left {
    background: #ddffe9;
    color: #1fa86d;
}

.chips-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
}

    .chips-actions button {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        cursor: pointer;
    }

.btn-buy {
    background: #5a2fc2;
    color: white;
}

.btn-transfer {
    background: #eee;
    color: #333;
}


/* chips style start here */
.chips-history {
    display: none;
    padding: 10px;
}

.chips-date {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.date-header {
    background: #5a2fc2;
    color: white;
    padding: 10px 15px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.chips-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

    .chips-row p {
        margin: 0;
        font-weight: 600;
    }

    .chips-row small {
        color: #6464f9;
        font-size: 12px;
    }

.amount {
    text-align: right;
    font-weight: 600;
}

    .amount span {
        color: #777;
        font-size: 13px;
    }

.negative {
    color: #e74c3c;
}



.chips-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
}

.date-range-btn {
    background: #5a2fc2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .date-range-btn i {
        cursor: pointer;
    }

.calendar-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 16px;
}


/* 
refferal style start here */
.referral-section {
    display: none;
    padding: 15px;
    text-align: center;
}

.ref-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .ref-filter button {
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid #ccc;
        background: white;
        cursor: pointer;
    }

    .ref-filter .active {
        background: #5a2fc2;
        color: white;
    }

.ref-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    font-weight: 600;
    color: #555;
}

.ref-empty {
    margin-top: 40px;
    color: #888;
}

    .ref-empty img {
        width: 80px;
        opacity: 0.5;
    }

/* Bank Header */
.bank-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    font-weight: bold;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Tabs */
.bank-tabs {
    display: flex;
    background: #f1e9ff;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 15px;
}

    .bank-tabs button {
        flex: 1;
        border: none;
        background: transparent;
        padding: 10px;
        border-radius: 10px;
        font-weight: 600;
    }

    .bank-tabs .active {
        background: white;
        color: #5a2fc2;
    }

/* Filter */
.bank-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* Bank Cards */
.bank-card {
    background: #f1e9ff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #d4ceff;
}

    .bank-card.active {
        border: 2px solid #5a2fc2;
    }

.bank-left img {
    width: 126px;
    margin-right: 60px;
}

.bank-text h4 {
    margin: 0;
}

.enable {
    color: #2ecc71;
}

.disable {
    color: #999;
}

/* Note */
.arrow-btn i {
    color: white;
}

.bank-note {
    margin-top: 30px;
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 10px;
}


.bank-page {
    display: none;
}

    .bank-page.active {
        display: block;
    }

.add-method {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #cadeef, transparent);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    justify-content: space-between;
    border: 1px solid #ddceff;
}

    .add-method img {
        width: 160px;
    }

.config-note {
    background: #f3f0ff;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #f31700;
}

.config-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 6px 0px #b3b3b3;
}

.config-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.config-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .config-left img {
        width: 40px;
    }

    .config-left h4 {
        margin: 0;
        font-size: 15px;
    }

    .config-left p {
        font-size: 12px;
        color: #666;
    }

.config-input {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: #5b50e6;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 15px auto 0;
}

/* Toggle switch */
.toggle {
    position: relative;
    width: 45px;
    height: 24px;
}

    .toggle input {
        display: none;
    }

    .toggle .slider {
        position: absolute;
        background: #ccc;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        transition: .3s;
    }

        .toggle .slider:before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            transition: .3s;
        }

    .toggle input:checked + .slider {
        background: #4cd964;
    }

        .toggle input:checked + .slider:before {
            transform: translateX(20px);
        }


.usdt-page {
    padding: 15px;
    margin-bottom: 30px;
}

.usdt-title {
    text-align: center;
}

    .usdt-title h3 {
        margin: 10px 0;
    }

    .usdt-title p {
        color: #ff9800;
        font-weight: 600;
    }

.usdt-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
}

.usdt-range {
    background: #fff3cd;
    padding: 8px;
    border-radius: 10px;
    font-size: 13px;
    margin: 10px 0;
}

.usdt-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f0ff;
    padding: 12px;
    border-radius: 12px;
    gap: 10px;
    overflow: hidden;
}

#usdtAddress {
    flex: 1;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

#copyBtn {
    background: #5b50e6;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.qr-box {
    text-align: center;
    margin: 15px 0;
}

    .qr-box img {
        width: 160px;
    }

.save-btn {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #5b50e6;
    background: none;
    color: #5b50e6;
}

.usdt-suggest {
    background: #fff3cd;
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
    font-size: 14px;
}

.chip-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f2f2ff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.chip-price {
    background: #5b50e6;
    color: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

    .chip-price span {
        display: block;
        font-size: 10px;
    }

.page-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .app-form label {
        font-size: 13px;
        color: #555;
    }

    .app-form input,
    .app-form select {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: 1px solid #ddd;
        outline: none;
        font-size: 14px;
    }

.upload-box input {
    border: none;
    background: #f1f1f1;
    padding: 12px;
    border-radius: 10px;
}

.submit-btn {
    margin-top: 10px;
    background: linear-gradient(135deg,#6a5cff,#4b3cff);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}


.usdt-screen {
    padding: 15px;
    margin-bottom: 40px;
}

.usdt-top-box {
    background: #5b4ad8;
    color: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.usdt-amount {
    font-size: 28px;
    font-weight: 700;
}

.usdt-sub {
    font-size: 12px;
    opacity: .8;
    margin-top: 5px;
}

.usdt-break {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    background: #6a5cff;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
}

.usdt-card-ui {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.usdt-tip {
    background: #fff3cd;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    margin: 10px 0;
}

.usdt-address-box {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

    .usdt-address-box button {
        background: #5b4ad8;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 20px;
    }

.usdt-qr {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

    .usdt-qr img {
        width: 180px;
    }

.qr-save-btn {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #5b4ad8;
    background: white;
    color: #5b4ad8;
    font-weight: 600;
}

.transfer-btn {
    width: 100%;
    margin-top: 15px;
    background: linear-gradient(135deg,#5a7cff,#6f3cff);
    border: none;
    padding: 15px;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

    .transfer-btn span {
        display: block;
        font-size: 12px;
        opacity: .8;
    }

.usdt-note {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    color: #555;
}


.status-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}


    .status-table thead th {
        text-align: left;
        font-size: 14px;
        color: #777;
        padding: 8px;
    }

    .status-table tbody tr {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .status-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .status-table tbody tr td:first-child {
        border-radius: 12px 0 0 12px;
    }

    .status-table tbody tr td:last-child {
        border-radius: 0 12px 12px 0;
        text-align: right;
    }

.status-record {
    display: none;
}

.chips-history {
    display: none;
    padding: 10px;
}

.status-history {
    display: none;
    padding: 10px;
}

.chip-price > a {
    color: white;
    text-decoration: none;
}

.earning-section {
    width: 100%;
}

.k-grid-content table, .k-grid-content-locked table {
    table-layout: unset !important;
}

table {
    width: 100%;
}


/* temrs and condition start here */

/* Menu */
.tc-menu {
    background: #fff;
    margin: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0,0,0,.05);
}

.tc-item {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

    .tc-item:last-child {
        border: none;
    }

    .tc-item.active {
        color: #4b3fd3;
        font-weight: 600;
    }

/* Content */
.tc-content {
    margin: 15px;
    background: #dad8ff;
    border-radius: 12px;
    padding: 15px;
}

    .tc-content h3 {
        color: #4b3fd3;
        margin-bottom: 10px;
    }

    .tc-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
        color: #555;
    }

.popup-overlay {
    inset: 0;
    background: rgba(0,0,0,.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
    position: absolute;
    width: 100%;
    display: none;
}

.popup-box {
    width: 90%;
    width: 380px;
    background: linear-gradient(#a8d4ff,#ffffff);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    margin-inline: auto;
    top: 30%;
    transform: translateY(-50%);
}

.popup-header {
    display: flex;
    justify-content: center;
    position: relative;
}

.popup-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    position: absolute;
    top: -35px;
}

    .popup-icon i {
        color: #4b3fd3;
        font-size: 22px;
    }

.popup-close {
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 20px;
    cursor: pointer;
}

.popup-box h3 {
    margin-top: 30px;
    font-size: 20px;
}

.reward {
    color: #ff8c00;
    font-weight: 600;
    margin: 8px 0;
}

.popup-content {
    text-align: left;
    margin: 15px 0;
    font-size: 14px;
    color: #444;
}

    .popup-content ol {
        padding-left: 18px;
    }

.popup-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
}

    .popup-btn.light {
        background: white;
        border: 1px solid #4b3fd3;
        color: #4b3fd3;
    }

    .popup-btn.dark {
        background: #4b3fd3;
        color: white;
    }

.purchase-history {
    margin-bottom: 50px;
    text-align: center;
}

/* verify account */

.verify-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #cfd8ff;
    color: #4b3fd3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

    .step.active {
        background: #00bcd4;
        color: white;
    }

.line {
    width: 40px;
    height: 2px;
    background: #ddd;
}

.verify-card {
    background: #fff;
    margin: 15px;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

    .verify-card.gray {
        background: #f4f6ff;
    }

.verify-img {
    width: 90px;
    margin-bottom: 10px;
}

.verify-btn {
    width: 100%;
    background: #4b3fd3;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.play-btn {
    width: 150px;
    margin-top: 10px;
}


/* refund started here */
.refund-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    font-size: 14px;
    margin-inline: 14px;
    margin-top: 30px;
}

.refund-status {
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

    .refund-status.approved {
        background: #2e7d32;
        color: #fff;
    }

.refund-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

    .refund-row span {
        color: #666;
    }

    .refund-row strong {
        color: #222;
    }

    .refund-row.copy i {
        color: #4b3fd3;
        margin-left: 6px;
        cursor: pointer;
    }

.amount {
    color: #2e7d32;
}

.upload-proof {
    padding: 15px;
    text-align: center;
}

    .upload-proof p {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .upload-proof input {
        width: 100%;
        margin: 10px 0;
    }

.upload-btn {
    width: 100%;
    background: #4b3fd3;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
}


/* chips seller section */
.page .chips-seller {
    text-align: center;
    padding: 40px 20px 20px;
}

.chips-seller img {
    max-width: 100%;
    margin-bottom: 25px;
}

.chips-seller p {
    font-size: 15px;
    color: #6c6c6c;
    line-height: 1.5;
    max-width: 260px;
    margin: auto;
}

.tab i {
    margin-right: 3px;
}



.section-title {
    font-size: 20px;
    margin: 15px 10px;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding: 10px;
}

.category-item {
    text-align: center;
}

    .category-item img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid #6a1b9a;
        object-fit: cover;
    }

    .category-item p {
        margin-top: 8px;
        font-size: 13px;
        font-weight: 500;
    }


.product-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
}

.product-card {
    min-width: 140px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .product-card img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }

    .product-card p {
        font-size: 13px;
        margin: 5px 0;
    }

    .product-card h4 {
        font-size: 14px;
        color: #2ecc71;
    }

    .product-card span {
        text-decoration: line-through;
        color: #aaa;
        font-size: 12px;
    }

/*    sidebar menu start here*/
/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #750095;
    color: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    padding-top: 24px;
}

    .sidebar.active {
        left: 0;
    }

/* Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    border-bottom: 1px solid #333;
}

.close-btn {
    cursor: pointer;
}

/* Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
}

    .sidebar-menu li {
        border-bottom: 1px solid #222;
    }

        .sidebar-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px;
            color: #fff;
            text-decoration: none;
        }

            .sidebar-menu li a:hover {
                background: #222;
            }

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

    .overlay.active {
        display: block;
    }


/*    categries page start here*/
.accordion {
    background: #fff;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
}

    .accordion-header img {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        border-radius: 5px;
    }

    .accordion-header span {
        flex: 1;
        font-size: 15px;
        font-weight: 500;
    }

    .accordion-header i {
        color: #7b1fa2;
    }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.sub-item {
    display: flex;
    align-items: center;
    padding: 10px 12px 10px 60px;
    border-top: 1px solid #eee;
}

    .sub-item img {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .sub-item span {
        font-size: 14px;
        color: #555;
    }



/*    subcategories style start here*/

/* Header */
.sub-header {
    background: #7b1fa2;
    color: #fff;
    padding: 14px;
    display: flex;
    align-items: center;
}

    .sub-header .back-btn {
        color: #fff;
        margin-right: 10px;
        font-size: 18px;
    }

    .sub-header span {
        font-size: 18px;
        font-weight: 500;
    }

/* Title */
.sub-title {
    background: #eee;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    border: 1px solid #eee;
}

    .product-card img {
        width: 100%;
        height: 120px;
        object-fit: contain;
    }

    .product-card p {
        margin-top: 8px;
        font-size: 14px;
        color: #333;
    }

/*    product list style start here*/

.header-icons-right {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

    .header-icons-right .icon-box {
        position: relative;
        color: #fff;
    }

    .header-icons-right .badge {
        position: absolute;
        top: -5px;
        right: -8px;
        background: #000;
        color: #fff;
        font-size: 10px;
        padding: 2px 5px;
        border-radius: 50%;
    }


.product-topbar {
    display: flex;
    align-items: center;
    background: #eee;
}

    .product-topbar .title {
        flex: 1;
        padding: 12px;
        font-weight: 500;
        text-align: center;
    }

    .product-topbar .filter {
        padding: 12px;
        border-left: 1px solid #ccc;
    }

.product-list {
    padding: 10px;
}


.product-row {
    display: flex;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

    .product-row img {
        width: 110px;
        height: 120px;
        object-fit: contain;
        background: #f8f8f8;
    }


.product-info {
    padding: 10px;
    flex: 1;
}

.product-name {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
}

.price-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price {
    color: green;
    font-weight: 600;
}

.mrp {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

/*product details start here*/

.back-btn {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    margin: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 90px;
}

.product-detail-img {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
}

    .product-detail-img img {
        width: 70%;
        max-height: 220px;
        object-fit: contain;
    }


.product-detail-info {
    padding: 15px;
}

.product-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.dp {
    font-size: 22px;
    font-weight: bold;
    color: #4caf50;
}

.mrp {
    text-decoration: line-through;
    color: #999;
}

.save {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.qty-box {
    margin-bottom: 15px;
}

    .qty-box span {
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
    }

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .qty-control button {
        width: 35px;
        height: 35px;
        border: none;
        background: #eee;
        font-size: 18px;
        border-radius: 8px;
    }

    .qty-control input {
        width: 50px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 8px;
        height: 35px;
    }

.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    flex: 1;
    padding: 14px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

.cart-btn {
    background: #ff9800;
    color: #fff;
}

.buy-btn {
    background: #4caf50;
    color: #fff;
}


/*cart design start here*/

/* Page */
.cart-page {
    background: #f5f6fa;
    padding: 12px;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

/* Header */
.cart-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Cart Item Card */
.cart-item {
    display: flex;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    align-items: center;
}

/* Image */
.cart-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Details */
.cart-details {
    flex: 1;
    margin-left: 10px;
}

    .cart-details h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

/* Price */
.price-box {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dp {
    color: #4caf50;
    font-weight: bold;
}

.mrp {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

/* Extra */
.extra {
    font-size: 12px;
    color: #777;
    margin: 4px 0;
    display: flex;
    gap: 10px;
}

/* Quantity */
.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

    .qty-control button {
        width: 28px;
        height: 28px;
        border: none;
        background: #eee;
        border-radius: 6px;
    }

    .qty-control input {
        width: 40px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

/* Remove */
.remove-btn {
    color: red;
    font-size: 18px;
    margin-left: 8px;
}

/* Summary */
.cart-summary {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Rows */
.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.total {
    font-weight: bold;
    font-size: 16px;
}

.green {
    color: green;
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: #4caf50;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 10px;
}


/*account setting style start here*/

/* Page */
.account-page {
    background: #f5f6fa;
    min-height: 100vh;
    padding: 15px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 120px;
}

/* Profile Card */
.profile-card {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.profile-info h3 {
    margin: 0;
    font-size: 18px;
}

.profile-info p {
    margin: 2px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

/* Menu */
.account-menu {
    margin-top: 20px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 14px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

    .menu-item:last-child {
        border-bottom: none;
    }

    .menu-item i:first-child {
        width: 25px;
        color: #4caf50;
    }

    .menu-item span {
        flex: 1;
    }

    .menu-item i:last-child {
        color: #aaa;
    }

/* Logout */
.logout-section {
    margin-top: 20px;
}

.logout-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: #f44336;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
}


.home-slider img {
    width: 100%;
}

.product-scroll .product-card {
    margin: 5px;
}

section.paymentSlot {
    margin-top: 140px !important;
    background: #ffffff !important;
}

.cart-page{
    background:unset;
}
@media(max-width:410px) {
    /* PHONE FRAME */
    .phone {
        width: 410px;
    }
}
@media(max-width:405px) {
    /* PHONE FRAME */
    .phone {
        width: 405px;
    }
}
@media(max-width:400px) {
    /* PHONE FRAME */
    .phone {
        width: 400px;
    }
}
@media(max-width:395px) {
    /* PHONE FRAME */
    .phone {
        width: 395px;
    }
}
@media(max-width:390px) {
    /* PHONE FRAME */
    .phone {
        width: 390px;
    }
}
@media(max-width:385px) {
    /* PHONE FRAME */
    .phone {
        width: 385px;
    }
}
@media(max-width:380px) {
    /* PHONE FRAME */
    .phone {
        width: 380px;
    }
}
@media(max-width:375px) {
    /* PHONE FRAME */
    .phone {
        width: 375px;
    }
}
@media(max-width:370px) {
    /* PHONE FRAME */
    .phone {
        width: 370px;
    }
}
@media(max-width:365px) {
    /* PHONE FRAME */
    .phone {
        width: 365px;
    }
}
@media(max-width:360px) {
    /* PHONE FRAME */
    .phone {
        width: 360px;
    }
}
@media(max-width:350px){
    /* PHONE FRAME */
    .phone {
        width: 350px;
        
    }
}

