
        /* ─── Dashboard ──────────────────────────────────────── */
        .dashboard-welcome {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 28px;
        }
        .dashboard-welcome strong { color: var(--text); }

        .dashboard-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }
        .dashboard-stat-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px 16px;
            text-align: center;
            text-decoration: none;
            transition: all 0.25s;
            display: block;
        }
        .dashboard-stat-card:hover {
            background: var(--card-hover);
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        .dashboard-stat-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }
        .dashboard-stat-icon i { font-size: 24px; }
        .dashboard-stat-value { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 6px; }
        .dashboard-stat-label { font-size: 13px; color: var(--muted); font-weight: 600; }

        .dashboard-quick-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
        }
        .dashboard-quick-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s;
        }
        .dashboard-quick-link i { font-size: 18px; color: var(--accent); }
        .dashboard-quick-link:hover {
            background: var(--card-hover);
            border-color: var(--accent);
            color: var(--text);
            transform: translateX(3px);
        }

        /* Account Page Container */
        .account-page-wrapper {
            max-width: 1309px;
            margin: 0 auto;
            padding: 24px;
        }

        .account-page-header {
            margin-bottom: 32px;
        }

        .account-page-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        /* Main Grid Layout */
        .account-grid-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 24px;
        }

        /* Sidebar - Left Section */
        .account-sidebar {
            background: var( --dark);
            border-radius: 16px;
            padding: 24px;
            height: fit-content;
            position: sticky;
            top: 24px;
        }

        .account-user-profile {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border);
        }

        .account-user-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--border-bright) 0%, var(--border) 100%);
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--border-bright);
            overflow: hidden;
        }

        .account-user-avatar i {
            font-size: 60px;
            color: var(--muted);
        }

        .account-user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .account-user-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }

        /* Navigation Menu */
        .account-nav-menu {
            list-style: none;
        }

        .account-nav-item {
            margin-bottom: 8px;
        }

        .account-nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 7px 16px;
            color: var(--muted);
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            position: relative;
        }

        .account-nav-link i {
            font-size: 16px;
            width: 24px;
            text-align: center;
        }

        .account-nav-link:hover {
            background: var(--card-hover);
            color: var(--text-secondary);
            transform: translateX(4px);
        }

        .account-nav-link.active {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
            color: var(--accent-light);
            border-left: 3px solid var(--accent);
        }

        .account-nav-link.active i {
            color: var(--accent);
        }

        .account-nav-link.logout-link {
            color: rgb(204, 9, 9);
        }

        .account-nav-link.logout-link:hover {
            background: rgba(239, 68, 68, 0.1);
        }

        /* Content Area - Right Section */
        .account-content-area {
            background: var(--dark);
            /* border: 1px solid var(--border-bright); */
            border-radius: 16px;
            padding: 32px;
            min-height: 600px;
        }

        .account-content-section {
            display: none;
        }

        .account-content-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .account-section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .account-section-title i {
            color: var(--accent);
        }

        /* Empty State */
        .account-empty-state {
            text-align: center;
            padding: 80px 20px;
        }

        .account-empty-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 2px solid rgba(34, 197, 94, 0.2);
        }

        .account-empty-icon i {
            font-size: 36px;
            color: var(--accent);
        }

        .account-empty-message {
            font-size: 18px;
            color: var(--muted);
            margin-bottom: 24px;
        }

        .account-empty-action {
            background: var(--accent);
            color: #ffffff;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .account-empty-action:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
        }

        /* Orders Grid */
        .account-orders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 24px;
        }

        .account-order-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .account-order-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Info Cards */
        .account-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 24px;
        }

        .account-info-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .account-info-card:hover {
            border-color: var(--accent);
        }

        .account-info-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .account-info-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Form Elements */
        .account-form-group {
            margin-bottom: 20px;
        }

        .account-form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .account-form-input {
            width: 100%;
            background: var(--bg);
            border: 1px solid var(--border-bright);
            color: var(--text);
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .account-form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
        }

        .account-form-button {
            background: var(--accent);
            color: #ffffff;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .account-form-button:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        /* Responsive Design - Tablet */
        @media (max-width: 1024px) {
            .account-grid-layout {
                grid-template-columns: 260px 1fr;
                gap: 20px;
            }

            .account-sidebar {
                padding: 20px;
            }

            .account-content-area {
                padding: 24px;
            }
        }

        /* Responsive Design - Mobile */
        @media (max-width: 768px) {
            .account-page-wrapper {
                padding: 16px;
                padding-bottom: 80px;
            }

            .account-page-header h1 {
                font-size: 26px;
            }

            .account-grid-layout {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .account-sidebar {
                position: relative;
                top: 0;
                padding: 20px;
            }

            .account-user-profile {
                margin-bottom: 24px;
                padding-bottom: 20px;
            }

            .account-user-avatar {
                width: 100px;
                height: 100px;
            }

            .account-user-avatar i {
                font-size: 50px;
            }

            .account-nav-link {
                padding: 12px 14px;
                font-size: 14px;
            }

            .account-content-area {
                padding: 20px;
            }

            .account-section-title {
                font-size: 22px;
            }

            .account-orders-grid,
            .account-info-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .account-empty-state {
                padding: 60px 20px;
            }

            .account-empty-icon {
                width: 70px;
                height: 70px;
            }

            .account-empty-icon i {
                font-size: 32px;
            }

            .account-empty-message {
                font-size: 16px;
            }
        }

        /* Extra Small Devices */
        @media (max-width: 480px) {
            .account-page-wrapper {
                padding: 12px;
                padding-bottom:50px
            }

            .account-sidebar {
                padding: 16px;
            }

            .account-content-area {
                padding: 16px;
            }

            .account-user-avatar {
                width: 80px;
                height: 80px;
            }

            .account-user-avatar i {
                font-size: 40px;
            }

            .account-user-name {
                font-size: 18px;
            }

            .account-nav-link {
                padding: 12px;
                font-size: 13px;
            }

            .account-nav-link i {
                font-size: 18px;
            }

            .account-section-title {
                font-size: 20px;
            }

            .account-empty-action {
                width: 100%;
                justify-content: center;
            }
        }

        /* Mobile App Feel - Touch Optimizations */
        @media (max-width: 768px) {
            .account-nav-link {
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }

            .account-order-card,
            .account-info-card {
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }

         
         

            /* Pull to Refresh Indicator */
            .account-page-wrapper {
                overscroll-behavior-y: contain;
            }
        }

        /* ─── Sub Titles ──────────────────────────────────────── */
        .profile-sub-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-secondary);
            margin: 28px 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .profile-sub-title i { color: var(--accent); }

        /* ─── Feedback Messages ───────────────────────────────── */
        .profile-msg {
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .profile-msg-success {
            background: rgba(34,197,94,0.12);
            border: 1px solid rgba(34,197,94,0.35);
            color: #4ade80;
        }
        .profile-msg-error {
            background: rgba(239,68,68,0.12);
            border: 1px solid rgba(239,68,68,0.35);
            color: #f87171;
        }

        /* ─── Wallet ──────────────────────────────────────────── */
        .wallet-balance-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(34,197,94,0.05) 100%);
            border: 1px solid rgba(34,197,94,0.3);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 8px;
        }
        .wallet-balance-icon {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .wallet-balance-icon i { font-size: 28px; color: #fff; }
        .wallet-balance-label { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .wallet-balance-amount { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1.2; }

        .wallet-txn-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); margin-top: 8px; }
        .wallet-txn-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        .wallet-txn-table thead { background: var(--bg); }
        .wallet-txn-table th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--muted); white-space: nowrap; border-bottom: 1px solid var(--border); }
        .wallet-txn-table td { padding: 12px 16px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
        .wallet-txn-table tbody tr:last-child td { border-bottom: none; }
        .wallet-txn-table tbody tr:hover { background: var(--card-hover); }
        .wallet-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: capitalize; }
        .wallet-badge-credit { background: rgba(34,197,94,0.15); color: #4ade80; }
        .wallet-badge-debit  { background: rgba(239,68,68,0.15); color: #f87171; }
        .txn-credit { color: #4ade80; font-weight: 700; }
        .txn-debit  { color: #f87171; font-weight: 700; }

        /* ─── Address Cards ───────────────────────────────────── */
        .address-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .address-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px;
            position: relative;
            transition: all 0.3s ease;
        }
        .address-card:hover { border-color: var(--border-bright); }
        .address-card-default { border-color: var(--accent) !important; background: linear-gradient(135deg, rgba(34,197,94,0.06), transparent); }
        .address-default-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(34,197,94,0.15);
            color: #4ade80;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
        .address-type-tag {
            display: inline-block;
            background: var(--card-hover);
            color: var(--muted);
            font-size: 11px;
            font-weight: 700;
            padding: 2px 9px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .address-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
        .address-phone { font-size: 13px; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
        .address-body { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
        .address-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
        .addr-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid var(--border-bright);
            background: transparent;
            color: var(--muted);
            transition: all 0.2s;
        }
        .addr-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .addr-btn-default:hover { background: rgba(34,197,94,0.12); color: #4ade80; border-color: rgba(34,197,94,0.4); }
        .addr-btn-edit:hover { background: rgba(59,130,246,0.12); color: #60a5fa; border-color: rgba(59,130,246,0.4); }
        .addr-btn-delete:hover { background: rgba(239,68,68,0.12); color: #f87171; border-color: rgba(239,68,68,0.4); }

        /* ─── Address Modal ───────────────────────────────────── */
        @keyframes addrModalIn {
            from { opacity: 0; transform: translateY(-24px) scale(0.96); }
            to   { opacity: 1; transform: translateY(0)     scale(1); }
        }
        .address-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.82);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 99999;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 40px 16px 40px;
            overflow-y: auto;
        }
        .address-modal {
            background: #1a1f2e;
            border: 1px solid var(--border-bright);
            border-radius: 20px;
            padding: 32px;
            width: 100%;
            max-width: 620px;
            margin: auto 0;
            box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
            animation: addrModalIn 0.25s cubic-bezier(.4,0,.2,1);
        }
        .address-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border);
        }
        .address-modal-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .address-modal-header h3::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 22px;
            background: var(--accent);
            border-radius: 4px;
            flex-shrink: 0;
        }
        .address-modal-close {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg);
            border: 1px solid var(--border-bright);
            color: var(--muted);
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            line-height: 1;
            flex-shrink: 0;
        }
        .address-modal-close:hover {
            background: rgba(239,68,68,0.15);
            color: #f87171;
            border-color: rgba(239,68,68,0.4);
        }
        .address-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .address-modal select.account-form-input {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a8b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding: 0 44px 0 16px;
            height: 50px;
            line-height: 50px;
            cursor: pointer;
        }
        .address-modal select.account-form-input option {
            background: #1a1f2e;
            color: var(--text);
            padding: 8px;
        }
        .addr-modal-footer {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            margin-top: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .addr-cancel-btn {
            padding: 13px 26px;
            border-radius: 12px;
            border: 1px solid var(--border-bright);
            background: transparent;
            color: var(--muted);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .addr-cancel-btn:hover { background: var(--card-hover); color: var(--text); }

        @media (max-width: 600px) {
            .address-modal-overlay { padding: 16px; align-items: flex-start; }
            .address-form-grid { grid-template-columns: 1fr; }
            .address-modal { padding: 20px; border-radius: 16px; margin: auto 0; }
            .address-cards-grid { grid-template-columns: 1fr; }
            .wallet-balance-amount { font-size: 28px; }
            .addr-modal-footer { flex-direction: column-reverse; }
            .addr-cancel-btn, .addr-modal-footer .account-form-button { width: 100%; justify-content: center; }
        }
