    .account-page {
        width: min(1240px, calc(100% - 32px));
        margin: 0 auto;
        padding: 46px 0 80px;
    }

    /* HERO */

    .account-hero {
        position: relative;
        overflow: hidden;
        min-height: 245px;
        padding: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 90% 15%,
                rgba(255, 255, 255, .16),
                transparent 35%),
            linear-gradient(135deg,
                #1b1b1b,
                #292929);
        color: #fff;
        box-shadow:
            0 25px 70px rgba(0, 0, 0, .15);
    }

    .account-hero::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: -80px;
        bottom: -130px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .hero-copy {
        position: relative;
        z-index: 1;
    }

    .hero-eyebrow {
        margin-bottom: 10px;
        color: #d9b48f;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .18em;
    }

    .hero-title {
        margin: 0;
        font-family:
            "Playfair Display",
            Georgia,
            serif;
        font-size: clamp(30px, 4vw, 48px);
        line-height: 1.1;
    }

    .hero-text {
        max-width: 590px;
        margin: 12px 0 0;
        color: rgba(255, 255, 255, .68);
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-profile {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 220px;
    }

    .profile-avatar {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #fff;
        color: var(--account-dark);
        font-size: 17px;
        font-weight: 800;
        box-shadow:
            0 8px 25px rgba(0, 0, 0, .15);
    }

    .profile-name {
        font-size: 15px;
        font-weight: 700;
    }

    .profile-contact {
        margin-top: 4px;
        color: rgba(255, 255, 255, .58);
        font-size: 12px;
    }

    /* LOGIN */

    .login-card {
        margin-top: 26px;
        padding: 40px;
        border: 1px solid var(--account-border);
        border-radius: var(--account-radius);
        background: var(--account-card);
        box-shadow: var(--account-shadow);
        text-align: center;
    }

    .login-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 18px;
        display: grid;
        place-items: center;
        border-radius: 18px;
        background: var(--account-accent-soft);
        color: var(--account-accent);
        font-size: 27px;
    }

    .login-card h2 {
        margin: 0;
        font-family:
            "Playfair Display",
            Georgia,
            serif;
        font-size: 27px;
    }

    .login-card p {
        max-width: 500px;
        margin: 10px auto 22px;
        color: var(--account-muted);
        font-size: 14px;
        line-height: 1.7;
    }

    .account-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 22px;
        border-radius: 12px;
        background: var(--account-dark);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        transition: .2s ease;
    }

    .account-button:hover {
        transform: translateY(-2px);
        box-shadow:
            0 10px 25px rgba(0, 0, 0, .14);
    }

    /* GRID */

    .account-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        margin-top: 26px;
    }

    .account-card {
        padding: 26px;
        border: 1px solid var(--account-border);
        border-radius: var(--account-radius);
        background: var(--account-card);
        box-shadow: var(--account-shadow);
    }

    .card-heading {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 22px;
    }

    .card-heading h2 {
        margin: 0;
        font-size: 18px;
        font-weight: 800;
    }

    .card-heading p {
        margin: 6px 0 0;
        color: var(--account-muted);
        font-size: 12px;
    }

    /* PROFILE */

    .profile-row {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 14px 0;
        border-bottom: 1px solid var(--account-border);
    }

    .profile-row:last-child {
        border-bottom: 0;
    }

    .profile-row-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        background: #f7f7f7;
        font-size: 15px;
    }

    .profile-row-label {
        color: var(--account-muted);
        font-size: 11px;
        font-weight: 600;
    }

    .profile-row-value {
        margin-top: 3px;
        font-size: 13px;
        font-weight: 700;
        word-break: break-word;
    }

    /* STATS */

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-box {
        min-height: 105px;
        padding: 17px;
        border: 1px solid var(--account-border);
        border-radius: 15px;
        background: #fafafa;
    }

    .stat-label {
        color: var(--account-muted);
        font-size: 11px;
        font-weight: 600;
    }

    .stat-value {
        margin-top: 12px;
        font-size: 23px;
        font-weight: 800;
    }

    /* QUICK LINKS */

    .quick-links {
        display: grid;
        gap: 10px;
    }

    .quick-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 15px 16px;
        border: 1px solid var(--account-border);
        border-radius: 13px;
        background: #fff;
        transition: .2s ease;
    }

    .quick-link:hover {
        border-color: #d6c2ae;
        background: #fcfaf8;
        transform: translateX(2px);
    }

    .quick-link-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .quick-link-icon {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        background: var(--account-accent-soft);
        color: var(--account-accent);
    }

    .quick-link-title {
        font-size: 13px;
        font-weight: 700;
    }

    .quick-link-sub {
        margin-top: 3px;
        color: var(--account-muted);
        font-size: 11px;
    }

    .arrow {
        color: #999;
        font-size: 17px;
    }

    /* ORDERS */

    .orders-card {
        grid-column: 1 / -1;
    }

    .view-all {
        color: var(--account-accent);
        font-size: 12px;
        font-weight: 700;
    }

    .order-list {
        display: grid;
        gap: 10px;
    }

    .order-item {
        display: grid;
        grid-template-columns: 1.2fr .8fr .7fr auto;
        align-items: center;
        gap: 18px;
        padding: 17px;
        border: 1px solid var(--account-border);
        border-radius: 15px;
        background: #fff;
        transition: .2s ease;
    }

    .order-item:hover {
        border-color: #dcd3ca;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    }

    .order-label {
        color: var(--account-muted);
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .order-value {
        margin-top: 5px;
        font-size: 13px;
        font-weight: 750;
    }

    .status {
        display: inline-flex;
        align-items: center;
        min-height: 27px;
        padding: 0 10px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 700;
    }

    .status-success {
        background: #eaf8ef;
        color: #23834a;
    }

    .status-danger {
        background: #fff0f0;
        color: #c53a3a;
    }

    .status-info {
        background: #edf6ff;
        color: #2474b8;
    }

    .status-warning {
        background: #fff7e8;
        color: #a66a14;
    }

    .track-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 13px;
        border: 1px solid var(--account-border);
        border-radius: 9px;
        background: #fff;
        font-size: 11px;
        font-weight: 700;
        transition: .2s ease;
    }

    .track-button:hover {
        background: var(--account-dark);
        border-color: var(--account-dark);
        color: #fff;
    }

    .empty-orders {
        padding: 42px 20px;
        border: 1px dashed #dcdcdc;
        border-radius: 16px;
        text-align: center;
    }

    .empty-orders-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .empty-orders h3 {
        margin: 0;
        font-size: 16px;
    }

    .empty-orders p {
        margin: 7px auto 18px;
        color: var(--account-muted);
        font-size: 12px;
    }

    /* FOOTER ACTION */

    .account-footer-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 22px;
    }

    .logout-link {
        color: #b42318;
        font-size: 12px;
        font-weight: 700;
    }

