        .wallet-dropdown-container {
            position: relative;
            display: inline-block !important;
        }

        .wallet-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--e-global-color-secondary);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .wallet-trigger i {
            color: black;
            font-size: 16px;
        }

        .wallet-trigger:hover {
            filter: brightness(1.1);
            transform: translateY(-2px);
        }

        .wallet-content {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            min-width: 200px;
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .wallet-dropdown-container.active .wallet-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .wallet-balance-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .wallet-balance-item:hover {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 6px;
            padding: 8px 10px;
            margin: 0 -10px;
        }

        .balance-label {
            color: black;
            font-size: 14px;
            font-weight: 500;
        }

        .balance-amount {
            color: var(--e-global-color-secondary);
            font-weight: 600;
            font-size: 15px;
        }

        .wallet-separator {
            height: 1px;
            background: rgba(0, 0, 0, 0.1);
            margin: 8px 0;
        }

        /* Add guest wallet styles */
        .guest-wallet-message {
            padding: 20px;
            text-align: center;
            color: black;
        }

        .guest-wallet-message i {
            font-size: 24px;
            color: var(--e-global-color-secondary);
            margin-bottom: 10px;
        }

        .guest-wallet-message p {
            margin: 10px 0;
            font-size: 14px;
            font-weight: 500;
        }

        .wallet-login-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 20px;
            background: var(--e-global-color-secondary);
            color: black !important;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .wallet-login-btn:hover {
            background: var(--e-global-color-primary);
            transform: translateY(-2px);
        }