@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');


/* =====================================================
   gold_fields_dashboard.html
   ===================================================== */
:root {
    --gold: #c99225;
    --gold-dark: #8f6517;
    --gold-light: #fff4d9;
    --cream: #fffaf0;
    --text: #171717;
    --muted: #737373;
    --line: #eeeeee;
    --green: #0aa65a;
    --black: #211d17;
    --gold-soft: #fff2d0;
    --text: #151515;
    --muted: #666;
    --green: #08a45a;
    --muted: #777;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: #eeeae1;
    font-family: Quicksand, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
}
/* App preview / phone frame */
.phone-wrap {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
}

.app {
    width: 100%;
    max-width: 525px;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 35px rgba(0,0,0,.16);
}

@media(min-width:600px) {
    .app {
        min-height: 0;
        border: 12px solid #111;
        border-radius: 48px;
    }
}


.user-area {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
    justify-content: flex-end;
}

.avatar {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    border: 2px solid #fff;
    box-shadow: 0 2px 7px rgba(0,0,0,.16);
}

.greeting {
    line-height: 1.15;
}

    .greeting small {
        font-size: 13px;
        color: #333;
        display: block;
        margin-bottom: 3px;
    }

    .greeting strong {
        font-size: 17px;
        display: block;
    }

    .greeting span {
        color: #666;
        font-size: 12px;
        display: block;
        margin-top: 4px;
    }

.bell {
    font-size: 25px;
    color: #151515;
    position: relative;
    margin-left: 2px;
}

    .bell i:after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e21d2b;
        top: -2px;
        right: -2px;
        border: 1px solid #fff;
    }
/* Gold market card */
.market-card {
    min-height: 154px;
    border-radius: 20px;
    padding: 23px 16px 17px;
    background: radial-gradient(circle at 80% 75%, rgba(199,151,50,.14), transparent 31%), linear-gradient(135deg, #302b21, #171612);
    color: #fff;
    box-shadow: 0 7px 16px rgba(0,0,0,.09);
    position: relative;
    overflow: hidden;
}

.market-title {
    text-align: center;
    font-size: 13px;
    color: #f7f7f7;
    margin-bottom: 8px;
}

.market-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.gold-bars {
    width: 65px;
    min-width: 65px;
    height: 65px;
    position: relative;
}

.bar {
    position: absolute;
    width: 31px;
    height: 18px;
    background: linear-gradient(145deg, #fff5c8, #b77c1a);
    border-radius: 3px;
    transform: skewY(-8deg);
    box-shadow: 0 2px 5px rgba(255,213,108,.25);
}

    .bar.b1 {
        left: 25px;
        top: 9px
    }

    .bar.b2 {
        left: 10px;
        top: 28px
    }

    .bar.b3 {
        left: 38px;
        top: 31px
    }

    .bar.b4 {
        left: 20px;
        top: 44px;
        width: 34px
    }

.market-value {
    flex: 1;
    padding-left: 3px;
}

    .market-value h2 {
        font-size: 29px;
        margin: 0;
        line-height: 1;
        font-weight: 700;
        white-space: nowrap;
    }

.up {
    color: #00d46b;
    font-size: 15px;
    margin-top: 8px;
}

.live {
    color: #a8a8a8;
    font-size: 12px;
    margin-top: 3px;
}

.chart-side {
    width: 150px;
    min-width: 150px;
    align-self: stretch;
    position: relative;
    padding-top: 7px;
}

    .chart-side svg {
        width: 100%;
        height: 82px
    }

.chart-link {
    position: absolute;
    right: 1px;
    bottom: 2px;
    color: #ffe9a8;
    font-size: 14px;
}
/* Loan card */
.loan-card {
    margin-top: 13px;
    border-radius: 20px;
    padding: 19px 18px 18px;
    background: linear-gradient(135deg, #fff7e4, #fff);
    box-shadow: 0 5px 17px rgba(155,113,31,.13);
    border: 1px solid #fbf1dc;
}

.loan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loan-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.loan-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffeec8;
    color: #a36f18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.arrow {
    color: #9b6d22;
    font-size: 22px;
}

.loan-stats {
    margin-top: 13px;
    border-radius: 15px;
    background: rgba(255,250,239,.85);
    padding: 18px 15px;
    display: flex;
}

.loan-stat {
    width: 50%;
    padding: 0 13px;
}

    .loan-stat + .loan-stat {
        border-left: 1px solid #d7c6a0;
    }

    .loan-stat label {
        display: block;
        font-size: 14px;
        color: #70572e;
        margin-bottom: 5px;
    }

    .loan-stat strong {
        font-size: 21px;
        white-space: nowrap;
    }
/* Quick actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 20px 2px 22px;
}

.quick {
    text-align: center;
    color: #191919;
    text-decoration: none;
}

.quick-icon {
    width: 61px;
    height: 61px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 32% 25%, #ffeab0, #d59c2e 58%, #9b6a16);
    border: 1px solid #d8a943;
    box-shadow: inset 0 1px 2px rgba(255,255,255,.65), 0 3px 6px rgba(120,80,10,.12);
    color: #141414;
    font-size: 22px;
}

.quick-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
/* Four information cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.info-card {
    /* min-height: 164px; */
    border-radius: 18px;
    padding: 13px 19px 13px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 14px rgba(0,0,0,.055);
    position: relative;
    overflow: hidden;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 5px;
}

.gold-icon {
    background: #fff1d2;
    color: #b77d14
}

.purple-icon {
    background: #f0edff;
    color: #4c42db
}

.red-icon {
    background: #ffe7eb;
    color: #db1f36
}

.green-icon {
    background: #e3f8e8;
    color: #0a9b4c
}

.info-label {
    color: #626262;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    padding-right: 20px;
}

.card-arrow {
    position: absolute;
    right: 17px;
    bottom: 27px;
    font-size: 18px;
    color: #8f8a83;
}
/* Transactions */
.transactions {
    margin-top: 26px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3px 13px;
}

    .section-head h3 {
        font-size: 19px;
        margin: 0;
        font-weight: 700;
    }

.info-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding-right: 20px;
}

.transaction-box {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,.055);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.transaction {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
}

    .transaction + .transaction {
        border-top: 1px solid #ededed;
    }

.trans-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trans-green {
    background: #e6f8eb;
    color: #08a154
}

.trans-red {
    background: #ffe8ec;
    color: #dd2136
}

.trans-purple {
    background: #f0edff;
    color: #5545dc
}

.trans-info {
    min-width: 0;
    flex: 1;
}

.trans-title {
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trans-date {
    color: #777;
    font-size: 12px;
}

.trans-right {
    text-align: right;
    min-width: 98px;
}

.trans-amount {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.trans-status {
    color: #079957;
    font-size: 13px;
    margin-top: 3px;
}

.trans-chevron {
    color: #7b7b7b;
    font-size: 18px;
    margin-left: 1px;
}
/* Bottom navigation */
.bottom-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: rgb(255, 246, 226);
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 5px 10px 7px;
    z-index: 5;
}

.nav-item {
    text-decoration: none;
    text-align: center;
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

.nav-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}

.nav-item.active {
    color: #a16f19
}

    .nav-item.active .nav-icon {
        color: #7b5210;
        background: linear-gradient(145deg, #ffe7a2, #d29b2c);
        box-shadow: 0 3px 8px rgba(151,103,18,.16);
    }

@media(max-width:390px) {
    .screen {
        padding-left: 12px;
        padding-right: 12px
    }

    .header {
        padding-left: 4px;
        padding-right: 4px
    }

    .brand {
        min-width: 150px
    }

    .brand-name {
        font-size: 17px
    }

    .greeting {
        min-width: 105px
    }

        .greeting strong {
            font-size: 15px
        }

    .avatar {
        width: 47px;
        height: 47px
    }

    .market-value h2 {
        font-size: 24px
    }

    .chart-side {
        width: 125px;
        min-width: 125px
    }

    .loan-stat strong {
        font-size: 18px
    }

    .quick-icon {
        width: 55px;
        height: 55px
    }

    .quick-label {
        font-size: 12px
    }

    .info-card {
        padding-left: 15px;
        padding-right: 15px
    }

    .info-value {
        font-size: 18px
    }
}
/* =====================================================
   gold_fields_login.html
   ===================================================== */

.top {
    text-align: center;
}
/* Gold Fields logo */
.logo {
    width: 105px;
    height: 105px;
    margin: 0 auto 7px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    position: absolute;
    width: 73px;
    height: 73px;
    left: 10px;
    top: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f1d58e, #a36f18);
    box-shadow: inset 2px 2px 5px rgba(255,255,255,.55);
}

.logo-shape {
    position: absolute;
    width: 42px;
    height: 42px;
    right: 9px;
    bottom: 10px;
    background: linear-gradient(145deg, #dcb25b, #8e6113);
    border-radius: 5px 5px 23px 5px;
}

.logo-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 43px;
    letter-spacing: -11px;
    margin-left: -9px;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.brand-name {
    color: #986b18;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .2px;
}

.welcome {
    margin-top: 34px;
    text-align: center;
}

    .welcome h1 {
        margin: 0;
        font-size: 27px;
        font-weight: 700;
    }

    .welcome p {
        margin: 8px 0 0;
        color: #777;
        font-size: 14px;
    }

.login-card {
    margin-top: 30px;
}

.field {
    margin-bottom: 19px;
}

    .field label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #3d3d3d;
    }

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a9771c;
    font-size: 17px;
    z-index: 2;
}

.form-control {
    height: 55px;
    border-radius: 15px;
    border: 1px solid #e3d7bd;
    background: #fff;
    padding: 0 48px;
    font-size: 15px;
    color: #222;
    box-shadow: 0 3px 10px rgba(151,105,24,.05);
}

    .form-control:focus {
        border-color: #c99225;
        box-shadow: 0 0 0 3px rgba(201,146,37,.13);
    }

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #8d8d8d;
    font-size: 17px;
    padding: 4px;
    cursor: pointer;
}

.forgot {
    text-align: right;
    margin-top: -6px;
    margin-bottom: 24px;
}

    .forgot a {
        color: #9a6b17;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }

.login-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #e0b353, #a97217);
    box-shadow: 0 8px 18px rgba(158,108,21,.24);
    transition: .2s;
}

    .login-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(158,108,21,.30);
        color: #fff;
    }

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 29px 0 25px;
    color: #aaa;
    font-size: 12px;
}

    .divider:before, .divider:after {
        content: "";
        height: 1px;
        background: #eadfca;
        flex: 1;
    }

.security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #7c7c7c;
    font-size: 12px;
    margin-top: 19px;
}

    .security i {
        color: #a9791e;
    }

.signup {
    text-align: center;
    margin-top: 31px;
    font-size: 14px;
    color: #777;
}

    .signup a {
        color: #996b17;
        text-decoration: none;
        font-weight: 700;
    }

@media(max-width:599px) {
    body {
        padding: 0;
        background: #fff;
        align-items: stretch;
    }

    .phone {
        width: 100%;
        max-width: none;
        height: 100vh;
        min-height: 650px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .page {
        padding: 18px 24px 30px;
    }
}

@media(max-width:390px) {
    .page {
        padding-left: 18px;
        padding-right: 18px
    }

    .top {
        padding-top: 20px
    }

    .welcome {
        margin-top: 25px
    }

        .welcome h1 {
            font-size: 24px
        }

    .login-card {
        margin-top: 25px
    }

    .logo {
        transform: scale(.88);
        margin-bottom: -2px
    }
}
/* =====================================================
   gold_fields_register.html
   ===================================================== */


/* Header */

.logo-shape {
    position: absolute;
    width: 38px;
    height: 38px;
    right: 6px;
    bottom: 6px;
    background: linear-gradient(145deg, #dbb45e, #8e6115);
    border-radius: 5px 5px 21px 5px;
}

.logo-text {
    position: relative;
    z-index: 2;
    color: white;
    font: 700 37px Georgia, serif;
    letter-spacing: -10px;
    margin-left: -8px;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.brand-name {
    color: #986a18;
    font-size: 20px;
    font-weight: 700;
}
/* Title */
.welcome {
    text-align: center;
    margin-top: 22px
}

    .welcome h1 {
        font-size: 27px;
        font-weight: 700;
        margin: 0
    }

    .welcome p {
        font-size: 14px;
        color: #777;
        margin: 7px 0 0
    }
/* Position */
.position-wrap {
    margin-top: 22px
}

.field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 8px;
}

.position-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #f8f4eb;
    border-radius: 14px;
    padding: 5px;
    border: 1px solid #eadfc9;
}

    .position-box input {
        display: none
    }

    .position-box label {
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #777;
        font-size: 14px;
        cursor: pointer;
    }

    .position-box input:checked + label {
        color: #fff;
        background: linear-gradient(135deg, #dcb04e, #9c6b17);
        box-shadow: 0 4px 10px rgba(151,103,18,.18);
        font-weight: 650;
    }
/* Form */
.register-form {
    margin-top: 19px
}

.field {
    margin-bottom: 14px
}

    .field label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 7px;
        color: #3d3d3d;
    }

.input-wrap {
    position: relative
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a9771c;
    font-size: 16px;
    z-index: 2
}

.form-control {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #e2d7c1;
    padding: 0 46px;
    background: #fff;
    font-size: 14px;
    box-shadow: 0 3px 9px rgba(151,105,24,.04)
}

    .form-control:focus {
        border-color: #c99225;
        box-shadow: 0 0 0 3px rgba(201,146,37,.12)
    }

.toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #888;
    font-size: 16px;
    cursor: pointer
}
/* Captcha */
.captcha-row {
    display: grid;
    grid-template-columns: 1fr 132px;
    gap: 9px;
}

.captcha-box {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #e2d7c1;
    background: linear-gradient(135deg, #fff5d9, #e8c56f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Courier New", monospace;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #5d4318;
    text-decoration: line-through;
    user-select: none;
}

.refresh {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0,0,0,.12);
    color: #a5741b;
    cursor: pointer;
}

.register-btn {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #e0b353, #a97217);
    box-shadow: 0 8px 18px rgba(158,108,21,.23);
    margin-top: 7px;
}

    .register-btn:hover {
        color: #fff;
        transform: translateY(-1px)
    }

.secure {
    text-align: center;
    color: #888;
    font-size: 12px;
    margin-top: 15px
}

    .secure i {
        color: #a9791e;
        margin-right: 5px
    }

.account {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: 18px
}

    .account a {
        color: #996b17;
        text-decoration: none;
        font-weight: 700
    }

@media(max-width:599px) {

    .phone {
        max-width: none;
        min-height: 100vh;
        height: auto;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .page {
        padding: 18px 24px 30px
    }
}

@media(max-width:390px) {
    .page {
        padding-left: 18px;
        padding-right: 18px
    }

    .welcome h1 {
        font-size: 24px
    }

    .welcome {
        margin-top: 18px
    }

    .captcha-row {
        grid-template-columns: 1fr 118px
    }
}
/* =====================================================
   gold_fields_portfolio.html
   ===================================================== */

@media(min-width:600px) {
    .app {
        border: 11px solid #111;
        border-radius: 45px;
    }
}

.screen {
    height: 100%;
    overflow-y: auto;
    padding: 18px 18px 102px;
    background: radial-gradient(circle at 25% 3%, rgba(255,218,132,.25), transparent 20%), linear-gradient(180deg, #fffdf8 0%, #fff 34%, #fff 100%);
    scrollbar-width: none;
}

    .screen::-webkit-scrollbar {
        display: none
    }
/* status */
.statusbar {
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}
/* header */
.header {
    display: grid;
    grid-template-columns: 55px 1fr 0px;
    align-items: center;
}

.back {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #272727;
    text-decoration: none;
    font-size: 25px;
}

.page-title {
    text-align: center;
    color: #8f6317;
    font-size: 22px;
    font-weight: 700;
}

.notify {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    font-size: 26px;
    position: relative;
}

    .notify:after {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #e31f2f;
        border: 1px solid #fff;
        position: absolute;
        top: 5px;
        right: 5px;
    }
/* portfolio banner */
.portfolio-banner {
    height: 166px;
    border-radius: 19px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 14px rgba(140,95,12,.10);
}

    .portfolio-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
/* holdings */
.holdings {
    min-height: 87px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 9px;
}

.holding {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 17px;
}

    .holding + .holding {
        border-left: 1px solid #dedbd5;
    }

.round-gold {
    width: 43px;
    height: 43px;
    min-width: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #edc566, #a86f17);
    box-shadow: inset 1px 2px 4px rgba(255,255,255,.5);
    font-size: 18px;
}

.holding-label {
    color: #707070;
    font-size: 14px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.holding-value {
    font-size: 21px;
    font-weight: 700;
    white-space: nowrap;
}
/* actions */
.actions {
    margin: 0 -18px;
    padding: 16px 12px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(90deg, #fbf9ff, #f6f3ff, #fbf9ff);
}

.action {
    text-decoration: none;
    text-align: center;
    color: #181818;
}

.action-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(90,72,140,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8801c;
    font-size: 20px;
}

.action-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
/* trend card */
.trend {
    margin-top: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #f0eee9;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
    padding: 17px 17px 15px;
}

.trend-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.trend-heading {
    display: flex;
    align-items: center;
    gap: 11px;
}

.trend-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    background: #fff1d3;
    color: #b57c16;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.trend-title {
    font-size: 17px;
    font-weight: 700;
}

.period {
    border: 0;
    background: #f7f3ec;
    border-radius: 11px;
    padding: 8px 11px;
    font-size: 13px;
    color: #333;
}

.trend-price {
    margin: 5px 0 5px 50px;
    font-size: 24px;
    font-weight: 700;
}

.trend-change {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
}

.chart {
    width: 100%;
    height: 185px;
    margin-top: 3px;
    position: relative;
}

    .chart svg {
        width: 100%;
        height: 100%
    }

.chart-axis {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 12px;
    margin: 0 10px;
}

.tooltip {
    position: absolute;
    right: 31px;
    top: 30px;
    color: #fff;
    background: #3b3224;
    border-radius: 5px;
    padding: 6px 9px;
    font-size: 13px;
    font-weight: 600;
}

    .tooltip:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 10px;
        height: 10px;
        background: #3b3224;
        transform: translateX(-50%) rotate(45deg);
    }
/* cashback */
.cashback {
    height: 91px;
    margin-top: 16px;
    border-radius: 17px;
    background: linear-gradient(100deg, #ead5ff, #fff0d7);
    display: flex;
    align-items: center;
    padding: 12px 17px;
    position: relative;
    overflow: hidden;
}

.gift {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 43px;
    color: #d92b1d;
    text-shadow: 1px 1px 0 #a51d12;
}

.cash-text {
    padding-left: 13px;
}

    .cash-text strong {
        display: block;
        font-size: 17px;
        margin-bottom: 3px;
    }

    .cash-text span {
        font-size: 14px
    }

.cash-arrow {
    margin-left: auto;
    color: #51391c;
    font-size: 22px;
}
/* quick links */
.quick-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 26px;
    margin-bottom: 14px;
}

    .quick-head h3 {
        font-size: 20px;
        margin: 0;
        font-weight: 700;
    }

.view-all {
    color: #956618;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.link-card {
    height: 112px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f0eeee;
    box-shadow: 0 3px 12px rgba(0,0,0,.045);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
}

.link-icon {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 8px;
}

.ic-gold {
    background: #fff0cf;
    color: #b6780f
}

.ic-blue {
    background: #eef0ff;
    color: #3847dd
}

.ic-red {
    background: #ffe9ed;
    color: #cf2638
}

.ic-green {
    background: #fff0d2;
    color: #b77b12
}

.ic-support {
    background: #edf0ff;
    color: #3948df
}

.ic-gray {
    background: #f0f0f0;
    color: #202020
}

.link-name {
    font-size: 12px;
    font-weight: 600;
}

@media(max-width:390px) {
    .screen {
        padding-left: 13px;
        padding-right: 13px
    }

    .actions {
        margin-left: -13px;
        margin-right: -13px
    }

    .holding {
        padding: 0 10px;
        gap: 8px
    }

    .round-gold {
        width: 39px;
        height: 39px;
        min-width: 39px
    }

    .holding-value {
        font-size: 18px
    }

    .holding-label {
        font-size: 12px
    }

    .portfolio-banner {
        height: 150px
    }

    .link-card {
        height: 104px
    }

    .link-name {
        font-size: 13px
    }
}


/* ================= USER PROFILE PAGE ================= */

.profile-hero {
    position: relative;
    overflow: hidden;
    padding: 24px 18px 20px;
    border: 1px solid #e5c873;
    border-radius: 22px;
    background: linear-gradient(145deg, #fffdf8, #f4e8c8);
    box-shadow: 0 8px 24px rgba(106,78,18,.12);
    text-align: center;
}

    .profile-hero:before, .profile-hero:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(194,146,39,.18);
    }

    .profile-hero:before {
        width: 150px;
        height: 150px;
        right: -75px;
        top: -75px
    }

    .profile-hero:after {
        width: 110px;
        height: 110px;
        left: -55px;
        bottom: -55px
    }

.profile-avatar {
    width: 82px;
    height: 82px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #c89425, #f0ce73);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #c99a35, 0 7px 18px rgba(104,76,20,.22);
    color: #fff;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.profile-name {
    margin: 0;
    color: #2c2415;
    font-size: 21px;
    font-weight: 700;
}

.profile-id {
    margin: 5px 0 9px;
    color: #8a7449;
    font-size: 12px;
    letter-spacing: .5px;
}

.profile-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 30px;
    background: #fff8e6;
    border: 1px solid #e6c66f;
    color: #9a721d;
    font-size: 11px;
    font-weight: 700;
}

.profile-edit {
    margin-top: 16px;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 11px 15px;
    background: linear-gradient(135deg, #b98419, #e5bd58);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(155,111,21,.20);
}

.profile-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0;
}

.profile-summary-card {
    padding: 14px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ead9ad;
    box-shadow: 0 5px 16px rgba(88,67,25,.07);
}

    .profile-summary-card .icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff5d8;
        color: #b78217;
        margin-bottom: 2px;
    }

    .profile-summary-card .label {
        font-size: 12px;
        color: #9a8b6d;
        margin-bottom: 3px;
        font-weight: 600;
    }

    .profile-summary-card .value {
        font-size: 15px;
        color: #302719;
        font-weight: 700
    }

.profile-section-title {
    margin: 18px 3px 9px;
    color: #5b4a29;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .2px;
}

.profile-card {
    background: #fff;
    border: 1px solid #eadfbe;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(88,67,25,.07);
}

.profile-row {
    min-height: 58px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid #f0eadc;
}

    .profile-row:last-child {
        border-bottom: 0
    }

.profile-row-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff6df;
    color: #b98419;
    font-size: 14px;
}

.profile-row-main {
    min-width: 0;
    flex: 1
}

.profile-row-label {
    font-size: 10px;
    color: #a19377;
    margin-bottom: 3px
}

.profile-row-value {
    color: #332b1d;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-row-action {
    color: #c0922b;
    font-size: 12px;
}

.profile-menu-row {
    cursor: pointer
}

    .profile-menu-row .profile-row-value {
        font-size: 13px
    }

.profile-danger .profile-row-icon {
    background: #fff0eb;
    color: #c85b42
}

.profile-danger .profile-row-value {
    color: #b54b35
}

.profile-footer {
    text-align: center;
    padding: 18px 0 4px;
    color: #b2a68d;
    font-size: 10px;
}

@media (max-width:576px) {
}



/* ================= CHANGE PASSWORD PAGE ================= */
.password-page {
    min-height: 100%;
    padding: 18px 16px 90px;
    background: radial-gradient(circle at 50% 0%, rgba(212,165,60,.16), transparent 34%), linear-gradient(180deg,#fffdf7 0%,#f6f1e5 100%);
}

.password-intro {
    text-align: center;
    padding: 10px 10px 20px;
}

.password-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 13px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,#c89425,#efd078);
    color: #fff;
    font-size: 26px;
    box-shadow: 0 7px 18px rgba(112,80,17,.18);
}

.password-title {
    margin: 0;
    color: #302719;
    font-size: 21px;
    font-weight: 700;
}

.password-subtitle {
    margin: 7px auto 0;
    max-width: 300px;
    color: #998a6e;
    font-size: 12px;
    line-height: 1.5;
}

.password-card {
    background: #fff;
    border: 1px solid #eadfbe;
    border-radius: 20px;
    padding: 17px 15px;
    box-shadow: 0 7px 20px rgba(88,67,25,.08);
}

.password-label {
    display: block;
    margin: 0 0 7px;
    color: #695735;
    font-size: 11px;
    font-weight: 700;
}

.password-group {
    position: relative;
    margin-bottom: 15px;
}

.password-input {
    width: 100%;
    height: 47px;
    padding: 0 44px 0 13px;
    border: 1px solid #e4d5ad;
    border-radius: 12px;
    outline: none;
    background: #fffdf8;
    color: #332b1d;
    font-size: 13px;
}

    .password-input:focus {
        border-color: #c99a35;
        box-shadow: 0 0 0 3px rgba(201,154,53,.10);
    }

.password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #aa8a4d;
    cursor: pointer;
    padding: 3px;
}

.password-otp {
    display: flex;
    gap: 8px;
}

    .password-otp .password-input {
        padding-right: 13px
    }

.send-otp-btn {
    flex: 0 0 105px;
    border: 1px solid #d0ad5c;
    border-radius: 12px;
    background: #fff7e3;
    color: #9b741e;
    font-size: 11px;
    font-weight: 700;
}

.otp-note {
    margin: -5px 0 15px;
    color: #9c8d70;
    font-size: 10px;
}

.update-password-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg,#b98419,#e5bd58);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(155,111,21,.20);
}

.password-security {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 13px;
    background: #fff9e9;
    border: 1px solid #efe0b9;
    color: #897750;
    font-size: 10px;
    line-height: 1.5;
}

    .password-security i {
        color: #b98419;
        margin-top: 2px
    }


/* =========================================================
   GOLD FIELDS - REPORTING PAGE
   ========================================================= */

.report-page {
    min-height: 100%;
    background: radial-gradient(circle at 22% 2%,rgba(255,218,132,.28),transparent 22%), linear-gradient(180deg,#fffdf8 0%,#fff 34%,#fff 100%);
    padding: 18px 18px 105px;
    overflow-y: auto;
    scrollbar-width: none;
}

    .report-page::-webkit-scrollbar {
        display: none
    }

.report-header {
    height: 70px;
    display: grid;
    grid-template-columns: 55px 1fr 55px;
    align-items: center;
}

.report-back {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262626;
    text-decoration: none;
    font-size: 25px;
}

.report-title {
    text-align: center;
    color: #8f6317;
    font-size: 22px;
    font-weight: 750;
}

.report-bell {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    font-size: 26px;
    position: relative;
}

    .report-bell:after {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #e31f2f;
        border: 1px solid #fff;
        position: absolute;
        top: 5px;
        right: 5px;
    }

.report-intro {
    margin-top: 5px;
    margin-bottom: 17px
}

    .report-intro h1 {
        font-size: 22px;
        font-weight: 750;
        margin: 0
    }

    .report-intro p {
        margin: 5px 0 0;
        color: #777;
        font-size: 13px
    }

.report-summary {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.report-stat {
    min-height: 105px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid #f0eee8;
    box-shadow: 0 4px 14px rgba(0,0,0,.055);
    padding: 15px;
    position: relative;
    overflow: hidden;
}

    .report-stat:after {
        content: "";
        position: absolute;
        width: 85px;
        height: 85px;
        right: -27px;
        top: -27px;
        border-radius: 50%;
        background: rgba(225,181,77,.10);
    }

.report-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}

.report-gold {
    background: #fff0cf;
    color: #b57911
}

.report-green {
    background: #e5f8eb;
    color: #079b50
}

.report-purple {
    background: #efedff;
    color: #4b40dc
}

.report-red {
    background: #ffe8ec;
    color: #d52238
}

.report-stat-label {
    color: #777;
    font-size: 12px;
    margin-bottom: 3px
}

.report-stat-value {
    font-size: 19px;
    line-height: 1.1;
    font-weight: 750
}

.report-filter {
    margin-top: 16px;
    padding: 15px;
    border-radius: 18px;
    background: linear-gradient(135deg,#fff8e8,#fff);
    border: 1px solid #f2e5ca;
    box-shadow: 0 4px 14px rgba(146,99,16,.055);
}

.filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

    .filter-head strong {
        font-size: 16px
    }

.clear-filter {
    color: #9a6b17;
    text-decoration: none;
    font-size: 12px;
    font-weight: 650
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px
}

.filter-group label {
    display: block;
    font-size: 11px;
    color: #777;
    margin-bottom: 5px
}

.filter-control {
    height: 43px;
    width: 100%;
    border: 1px solid #e5dbc7;
    border-radius: 11px;
    background: #fff;
    padding: 0 11px;
    font-size: 12px;
    color: #333;
    outline: none;
}

    .filter-control:focus {
        border-color: #c99225;
        box-shadow: 0 0 0 3px rgba(201,146,37,.11);
    }

.apply-filter {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 11px;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg,#dfb353,#a97117);
    box-shadow: 0 5px 12px rgba(157,107,19,.18);
}

.report-section {
    margin-top: 20px
}

.report-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

    .report-section-head h2 {
        margin: 0;
        font-size: 18px;
        font-weight: 750
    }

.report-view {
    color: #986917;
    text-decoration: none;
    font-size: 12px;
    font-weight: 650
}

.report-table-wrap {
    background: #fff;
    border: 1px solid #efede8;
    border-radius: 17px;
    box-shadow: 0 4px 14px rgba(0,0,0,.055);
    overflow: auto;
}

.report-table {
    width: 100%;
    margin: 0;
    font-size: 12px;
    vertical-align: middle
}

    .report-table thead th {
        background: #fff8e8;
        color: #76561e;
        font-size: 11px;
        font-weight: 700;
        padding: 12px 9px;
        border: 0;
        white-space: nowrap;
    }

    .report-table tbody td {
        padding: 12px 9px;
        border-color: #f0eee9;
        color: #333;
        white-space: nowrap;
    }

    .report-table tbody tr:last-child td {
        border-bottom: 0
    }

.report-id {
    color: #8d641b;
    font-weight: 650
}

.report-amount {
    font-weight: 700
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 650;
}

.status-success {
    color: #078c49;
    background: #e8f8ed
}

.status-pending {
    color: #ad7412;
    background: #fff1d2
}

.status-active {
    color: #4c43ce;
    background: #efedff
}

.report-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 0 3px;
}

.page-btn {
    width: 31px;
    height: 31px;
    border: 1px solid #e6ddca;
    background: #fff;
    color: #666;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
}

    .page-btn.active {
        color: #fff;
        border-color: #b27b1b;
        background: linear-gradient(135deg,#dfb353,#a97117);
    }

.report-empty-note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 13px;
    background: #faf8f3;
    color: #777;
    font-size: 11px;
    text-align: center;
}

@media(max-width:390px) {
    .report-page {
        padding-left: 13px;
        padding-right: 13px
    }

    .report-stat {
        padding: 12px
    }

    .report-stat-value {
        font-size: 17px
    }

    .report-table {
        font-size: 11px
    }

        .report-table thead th, .report-table tbody td {
            padding-left: 7px;
            padding-right: 7px
        }
}


/* =========================================================
   REPORT HEADER - USER PROFILE DROPDOWN
   ========================================================= */
.report-profile {
    justify-self: end;
    width: 42px;
    height: 42px;
}

.report-profile-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

    .report-profile-btn::after {
        display: none;
    }

.report-profile-avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f6317;
    background: linear-gradient(145deg,#fff1c9,#dfb45b);
    border: 1px solid #d4a23b;
    box-shadow: 0 3px 8px rgba(145,98,15,.13);
    font-size: 19px;
}

.report-profile-menu {
    min-width: 175px;
    margin-top: 8px !important;
    padding: 8px;
    border: 1px solid #eadfc9;
    border-radius: 14px;
    background: #fffdf8;
    box-shadow: 0 10px 28px rgba(0,0,0,.13);
}

.profile-menu-title {
    color: #8e6419;
    font-size: 13px;
    font-weight: 750;
    padding: 8px 10px 9px;
}

.report-profile-menu .dropdown-item {
    border-radius: 9px;
    padding: 9px 10px;
    color: #444;
    font-size: 13px;
}

    .report-profile-menu .dropdown-item i {
        width: 17px;
        color: #a87519;
    }

    .report-profile-menu .dropdown-item:hover {
        background: #fff3d6;
        color: #8b6116;
    }

.report-profile-menu .dropdown-divider {
    border-color: #eee3ce;
    margin: 5px 0;
}

.report-profile-menu .logout-item {
    color: #b52a32;
}

    .report-profile-menu .logout-item i {
        color: #b52a32;
    }

@media(max-width:390px) {
    .bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 70px;
        z-index: 99;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 503px;
    }

    .phone-wrap {
        padding: 0;
    }
}


.Income-summary .profile-summary-card {
    padding: 6px 12px;
}
