/* ==========================================
   ACCOUNT HERO
========================================== */

.account-hero {
    padding: 30px 0;
}

.account-banner {
    height: 160px;
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(248,251,255,.95), rgba(241,246,255,.82) ), url('/images/account/account-hero.png');
    background-size: cover;
    background-position: center;
}

    .account-banner h4 {
        font-size: 14px;
        font-weight: 500;
        color: #42506d;
        margin-bottom: 6px;
    }

    .account-banner h1 {
        font-size: 34px;
        font-weight: 700;
        color: #2453ff;
        margin-bottom: 8px;
    }

    .account-banner p {
        font-size: 14px;
        color: #586684;
    }


/* ==========================================
   MAIN GRID
========================================== */

.account-section {
    padding: 10px 0 0px;
}

.account-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
}


/* ==========================================
   SIDEBAR
========================================== */

.account-sidebar {
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    height: fit-content;
}

    .account-sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .account-sidebar li {
        height: 42px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #071b63;
        cursor: pointer;
        margin-bottom: 4px;
        transition: .3s;
    }

        .account-sidebar li.active {
            background: #f3f7ff;
            color: #2453ff;
        }

        .account-sidebar li:hover {
            background: #f7faff;
        }

        .account-sidebar li i:last-child {
            font-size: 15px;
        }

.logout-btn {
    margin-top: 10px;
    padding: 12px 14px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #071b63;
}


/* ==========================================
   CONTENT
========================================== */

.account-card {
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #fff;
    padding: 25px;
}

    .account-card h2 {
        font-size: 18px;
        font-weight: 700;
        color: #071b63;
        margin-bottom: 5px;
    }

.account-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #61708d;
    margin-bottom: 5px;
}

    .account-desc a {
        color: #2453ff;
        text-decoration: none;
        font-weight: 600;
    }


/* ==========================================
   QUICK CARDS
========================================== */

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

/* Outer quick-grid has 2 direct children: 1 card + 1 nested grid.
   Give them equal weight so all 5 cards fill the full row. */
.account-card > .quick-grid {
    grid-template-columns: 1fr 4fr;
}

/* Inner nested grid keeps 4 equal columns */
.account-card > .quick-grid > .quick-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.quick-card {
    border: 1px solid #e7edf5;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: .3s;
}

    .quick-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,.06);
    }

.quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
    font-size: 18px;
}

.quick-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 4px;
}

.quick-card p {
    font-size: 11px;
    line-height: 1.6;
    color: #61708d;
    margin-bottom: 10px;
    font-weight: 600;
}

.quick-card button {
    height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}


/* COLORS */

.blue .quick-icon {
    background: #edf3ff;
    color: #2453ff;
}

.blue button {
    border: 1px solid #2453ff;
    color: #2453ff;
}

.green .quick-icon {
    background: #eefaf3;
    color: #16a34a;
}

.green button {
    border: 1px solid #16a34a;
    color: #16a34a;
}

.purple .quick-icon {
    background: #f4f0ff;
    color: #7c3aed;
}

.purple button {
    border: 1px solid #7c3aed;
    color: #7c3aed;
}

.orange .quick-icon {
    background: #fff6eb;
    color: #ea580c;
}

.orange button {
    border: 1px solid #ea580c;
    color: #ea580c;
}


/* ==========================================
   SECURITY BANNER
========================================== */

.security-banner {
    margin-top: 16px;
    background: #f7faff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.security-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.security-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #edf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2453ff;
}

.security-banner h4 {
    font-size: 13px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 4px;
}

.security-banner p {
    font-size: 12px;
    line-height: 1.6;
    color: #61708d;
}

.security-banner button {
    height: 52px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1px solid #2453ff;
    background: #fff;
    color: #2453ff;
    font-weight: 600;
}


/* ==========================================
   FEATURE STRIP
========================================== */

.feature-strip {
    margin-top: 28px;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 25px;
    border-right: 1px solid #edf2f7;
}

    .feature-item:last-child {
        border-right: none;
    }

.feature-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #61708d;
}


/* COLORS */

.feature-circle.blue {
    background: #edf3ff;
    color: #2453ff;
}

.feature-circle.green {
    background: #eefaf3;
    color: #16a34a;
}

.feature-circle.purple {
    background: #f4f0ff;
    color: #7c3aed;
}

.feature-circle.orange {
    background: #fff6eb;
    color: #ea580c;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1400px) {

    .quick-grid {
        grid-template-columns: repeat(4,1fr);
    }

    .feature-strip {
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }

    .feature-item {
        border-right: none;
        padding: 0;
    }
}

@media(max-width:991px) {

    .account-grid {
        grid-template-columns: 1fr;
    }

    .security-banner {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
}

@media(max-width:768px) {

    .quick-grid,
    .account-card > .quick-grid,
    .account-card > .quick-grid > .quick-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }

    .account-banner {
        padding: 35px;
        height: auto;
    }

        .account-banner h1 {
            font-size: 26px;
        }

    .account-card h2 {
        font-size: 16px;
    }
}



.account-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar li {
    margin-bottom: 8px;
}

    .account-sidebar li a {
        height: 40px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 14px;
        border-radius: 10px;
        text-decoration: none;
        color: #071b63;
        font-size: 13px;
        font-weight: 600;
        transition: 0.3s ease;
    }

        .account-sidebar li a:hover {
            background: #f5f8ff;
        }


/* =========================================
   PAGE
========================================= */

.orders-page {
    padding: 20px;
}


/* =========================================
   HEADER
========================================= */

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .orders-header h1 {
        font-size: 20px;
        font-weight: 700;
        color: #071b63;
        margin-bottom: 4px;
    }

    .orders-header p {
        font-size: 13px;
        color: #61708d;
    }


/* FILTERS */

.orders-filters {
    display: flex;
    gap: 10px;
}

.filter-box {
    height: 54px;
    padding: 0 20px;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #071b63;
    cursor: pointer;
}

    .filter-box i:last-child {
        margin-left: 12px;
        font-size: 12px;
    }


/* =========================================
   STATS
========================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.stat-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 10px;
    padding: 10px 12px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.stat-card h5 {
    font-size: 10px;
    font-weight: 700;
    color: #071b63;
    margin-bottom: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stat-card p {
    font-size: 11px;
    color: #61708d;
    margin-bottom: 0;
}

.progress-bar {
    height: 5px;
    background: #edf2f7;
    border-radius: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 30px;
}


/* COLORS */

.blue .stat-icon {
    background: #edf3ff;
    color: #2453ff;
}

.blue h2 {
    color: #2453ff;
}

.blue-fill {
    background: #2453ff;
}

.green .stat-icon {
    background: #eefaf3;
    color: #16a34a;
}

.green h2 {
    color: #16a34a;
}

.green-fill {
    background: #22c55e;
}

.purple .stat-icon {
    background: #f4f0ff;
    color: #7c3aed;
}

.purple h2 {
    color: #7c3aed;
}

.purple-fill {
    background: #7c3aed;
}

.cyan .stat-icon {
    background: #eefbff;
    color: #06b6d4;
}

.cyan h2 {
    color: #06b6d4;
}


/* =========================================
   TABLE
========================================= */

.orders-table-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    overflow: hidden;
}

.table-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
}

    .table-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: #071b63;
    }

    .table-header a {
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        color: #2453ff;
    }


/* TABLE */

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

    .orders-table thead {
        background: #f8fbff;
    }

    .orders-table th {
        padding: 12px 16px;
        font-size: 13px;
        font-weight: 700;
        color: #61708d;
        text-align: left;
    }

    .orders-table td {
        padding: 14px 16px;
        border-top: 1px solid #edf2f7;
        font-size: 13px;
        color: #071b63;
    }

        .orders-table td a {
            color: #2453ff;
            font-weight: 600;
            text-decoration: none;
        }


/* STATUS */

.status {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.processing {
    background: #e9f9ee;
    color: #16a34a;
}

.shipped {
    background: #edf3ff;
    color: #2453ff;
}

.completed {
    background: #f4f0ff;
    color: #7c3aed;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px) {

    .stats-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media(max-width:991px) {

    .orders-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .orders-filters {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media(max-width:768px) {

    .orders-page {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .orders-header h1 {
        font-size: 18px;
    }

    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .orders-table {
        min-width: 900px;
    }
}
/* =========================================
   DASHBOARD LAYOUT
========================================= */

.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.dashboard-content {
    padding: 20px;
    background: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:991px) {

    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}



<!-- ===================================
ACCOUNT HERO
=================================== -->
<style >
/* =========================
               SIDEBAR MENU
            ========================= */
.account-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar ul li {
    margin-bottom: 10px;
}

    /* NORMAL MENU */

    .account-sidebar ul li a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 14px;
        text-decoration: none;
        color: #0b1f66;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.25s ease;
    }

        /* HOVER */

        .account-sidebar ul li a:hover {
            background: #f4f7ff;
            color: #2453ff;
        }

    /* ACTIVE MENU */

    .account-sidebar ul li.active a {
        color: #2453ff;
        box-shadow: none;
    }

    /* ICON */

    .account-sidebar ul li a i:first-child {
        width: 20px;
        text-align: center;
        font-size: 18px;
    }

    /* RIGHT ARROW */

    .account-sidebar ul li a .fa-chevron-right {
        margin-left: auto;
        font-size: 13px;
        opacity: 0.7;
    }

    /* ACTIVE ICON */

    .account-sidebar ul li.active a i {
        color: #2453ff;
    }

</style >